-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Template file for 'linux6.5' | ||
pkgname=linux6.5 | ||
version=6.5.3 | ||
version=6.5.4 | ||
revision=1 | ||
short_desc="Linux kernel and modules (${version%.*} series)" | ||
maintainer="Duncaen <[email protected]>" | ||
|
@@ -14,7 +14,7 @@ if [ "${version##*.}" != 0 ]; then | |
fi | ||
|
||
checksum="7a574bbc20802ea76b52ca7faf07267f72045e861b18915c5272a98c27abf884 | ||
a9f4c3c9a6026e33cf7e6dd4727016ab7dcb4c0fb7f2f289f227d3b32eed2c33" | ||
14e8569a800595a7bf22d005fbaf72b70f81b86346be27fc9bfaa14c78480f8e" | ||
python_version=3 | ||
|
||
# XXX Restrict archs until a proper <arch>-dotconfig is available in FILESDIR. | ||
|
@@ -290,22 +290,6 @@ do_install() { | |
;; | ||
esac | ||
|
||
# Remove unneeded architectures | ||
case "$arch" in | ||
i386|x86_64) _args="arm* m* p*";; | ||
arm|arm64) _args="x86* m* p*";; | ||
powerpc) _args="arm* m* x86* parisc";; | ||
mips) _args="arm* x86* p*";; | ||
riscv) _args="arm* m* x86* p*";; | ||
esac | ||
for arch in alpha avr32 blackfin cris frv h8300 \ | ||
ia64 s* um v850 xtensa ${_args}; do | ||
rm -rf ${hdrdest}/arch/${arch} | ||
done | ||
# Keep arch/x86/ras/Kconfig as it is needed by drivers/ras/Kconfig | ||
mkdir -p ${hdrdest}/arch/x86/ras | ||
cp -a arch/x86/ras/Kconfig ${hdrdest}/arch/x86/ras/Kconfig | ||
|
||
# Extract debugging symbols and compress modules | ||
msg_normal "$pkgver: extracting debug info and compressing modules, please wait...\n" | ||
install -Dm644 vmlinux ${DESTDIR}/usr/lib/debug/boot/vmlinux-${_kernver} | ||
|