linux6.5: include files necessary for dkms on cross
This commit is contained in:
parent
52671a78cd
commit
9a7b55dc50
|
@ -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 <duncaen@voidlinux.org>"
|
||||
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
|
||||
|
||||
|
|
Loading…
Reference in New Issue