diff --git a/srcpkgs/linux6.5/template b/srcpkgs/linux6.5/template index bc1c6417ec2..94c109cf837 100644 --- a/srcpkgs/linux6.5/template +++ b/srcpkgs/linux6.5/template @@ -1,7 +1,7 @@ # Template file for 'linux6.5' pkgname=linux6.5 version=6.5.5 -revision=1 +revision=2 short_desc="Linux kernel and modules (${version%.*} series)" maintainer="Duncaen " license="GPL-2.0-only" @@ -176,6 +176,7 @@ do_install() { cd ${wrksrc} # Install required headers to build external modules install -Dm644 Makefile ${hdrdest}/Makefile + install -Dm644 Kbuild ${hdrdest}/Kbuild install -Dm644 kernel/Makefile ${hdrdest}/kernel/Makefile install -Dm644 .config ${hdrdest}/.config for file in $(find . -name Kconfig\*); do @@ -217,6 +218,13 @@ do_install() { cp -a security/selinux/include ${hdrdest}/security/selinux mkdir -p ${hdrdest}/tools/include cp -a tools/include/tools ${hdrdest}/tools/include + if [ -d "arch/${arch}/tools" ]; then + cp -a "arch/${arch}/tools" "${hdrdest}/arch/${arch}" + fi + cp -a kernel/time/timeconst.bc "${hdrdest}/kernel/time" + cp -a kernel/bounds.c "${hdrdest}/kernel" + mkdir -p "${hdrdest}/arch/x86/entry/syscalls" + cp -a arch/x86/entry/syscalls/syscall_32.tbl "${hdrdest}/arch/x86/entry/syscalls" mkdir -p ${hdrdest}/arch/${arch}/kernel cp arch/${arch}/Makefile ${hdrdest}/arch/${arch} @@ -229,6 +237,7 @@ do_install() { cp arch/x86/kernel/asm-offsets.s ${hdrdest}/arch/x86/kernel elif [ "$arch" = "arm64" ]; then mkdir -p ${hdrdest}/arch/arm64/kernel + cp arch/arm64/kernel/asm-offsets.s ${hdrdest}/arch/arm64/kernel cp -a arch/arm64/kernel/vdso ${hdrdest}/arch/arm64/kernel/ fi