From f0e57d2c82c193a214c469f45ed573375eacb26e Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Fri, 29 Sep 2023 17:40:53 -0400 Subject: [PATCH 1/4] dkms: allow limiting jobs, add missing dep some less-powerful platforms may be overwhelmed by the default `-j$(nproc)`. Allow overriding this by setting `DKMS_JOBS` in `/etc/default/dkms` `bc` is needed for `make prepare0` on kernel 6.1+, which is run on cross. --- srcpkgs/dkms/files/dkms.default | 2 ++ srcpkgs/dkms/files/kernel.d/dkms.postinst | 9 ++++++--- srcpkgs/dkms/template | 9 +++++---- 3 files changed, 13 insertions(+), 7 deletions(-) create mode 100644 srcpkgs/dkms/files/dkms.default diff --git a/srcpkgs/dkms/files/dkms.default b/srcpkgs/dkms/files/dkms.default new file mode 100644 index 0000000000000..60312bf9720ca --- /dev/null +++ b/srcpkgs/dkms/files/dkms.default @@ -0,0 +1,2 @@ +# number of parallel jobs to use for DKMS compilation (default: $(nproc)) +#DKMS_JOBS= diff --git a/srcpkgs/dkms/files/kernel.d/dkms.postinst b/srcpkgs/dkms/files/kernel.d/dkms.postinst index 66d22981b5172..6e4d3b3149a5b 100644 --- a/srcpkgs/dkms/files/kernel.d/dkms.postinst +++ b/srcpkgs/dkms/files/kernel.d/dkms.postinst @@ -17,10 +17,13 @@ if [ ! -e /lib/modules/${VERSION}/build/include ] ; then exit 0 fi +[ -r /etc/default/dkms ] && . /etc/default/dkms +: "${DKMS_JOBS:=$(nproc)}" + export IGNORE_CC_MISMATCH=1 if [ ! -f /lib/modules/${VERSION}/build/scripts/basic/fixdep ] || [ ! -f /lib/modules/${VERSION}/build/scripts/mod/modpost ]; then - yes "" | make -j $(nproc) -C /lib/modules/${VERSION}/build prepare0 + yes "" | make -j "${DKMS_JOBS}" -C /lib/modules/${VERSION}/build prepare0 fi # Check available DKMS modules @@ -68,7 +71,7 @@ while [ $# -gt 1 ]; do fi # Build the module echo -n "Building DKMS module: ${module}-${modulever}... " - /usr/bin/dkms build -q -m ${module} -v ${modulever} -k ${VERSION} -a ${ARCH} + /usr/bin/dkms build -j "${DKMS_JOBS}" -q -m ${module} -v ${modulever} -k ${VERSION} -a ${ARCH} rval=$? # If the module was skipped or failed, go to the next module. if [ $rval -eq 0 ]; then @@ -87,7 +90,7 @@ while [ $# -gt 1 ]; do if [ $(echo "$status"|grep -c ": built") -eq 1 ] && [ $(echo "$status"|grep -c ": installed") -eq 0 ]; then echo -n "Installing DKMS module: ${module}-${modulever}... " - /usr/bin/dkms install --force -q -m ${module} -v ${modulever} -k ${VERSION} -a ${ARCH} + /usr/bin/dkms install --force -j "${DKMS_JOBS}" -q -m ${module} -v ${modulever} -k ${VERSION} -a ${ARCH} rval=$? # If the module failed installation, go to the next module. if [ $rval -eq 0 ]; then diff --git a/srcpkgs/dkms/template b/srcpkgs/dkms/template index 34ee6c4afabb3..eaaa5d47404d2 100644 --- a/srcpkgs/dkms/template +++ b/srcpkgs/dkms/template @@ -1,9 +1,9 @@ # Template file for 'dkms' pkgname=dkms version=3.0.10 -revision=2 +revision=3 conf_files="/etc/dkms/framework.conf" -depends="bash kmod gcc make coreutils xbps-triggers>=0.123_1" +depends="bash kmod gcc bc make coreutils xbps-triggers>=0.123_1" short_desc="Dynamic Kernel Module Support" maintainer="Orphaned " license="GPL-2.0-or-later" @@ -35,6 +35,7 @@ do_install() { vcompletion dkms.bash-completion bash dkms vinstall dkms_framework.conf 644 etc/dkms framework.conf # Kernel hooks. - vinstall ${FILESDIR}/kernel.d/dkms.postinst 754 etc/kernel.d/post-install 10-dkms - vinstall ${FILESDIR}/kernel.d/dkms.prerm 754 etc/kernel.d/pre-remove 10-dkms + vinstall "${FILESDIR}/kernel.d/dkms.postinst" 754 etc/kernel.d/post-install 10-dkms + vinstall "${FILESDIR}/kernel.d/dkms.prerm" 754 etc/kernel.d/pre-remove 10-dkms + vinstall "${FILESDIR}/dkms.default" 644 etc/default dkms } From f81d95b4a7a4ecac0b845e8a3835cabe12d3a732 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Fri, 29 Sep 2023 17:49:56 -0400 Subject: [PATCH 2/4] linux6.1: include files necessary for dkms on cross --- srcpkgs/linux6.1/template | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/srcpkgs/linux6.1/template b/srcpkgs/linux6.1/template index e77b8b8d2ef72..d15cd00ec0196 100644 --- a/srcpkgs/linux6.1/template +++ b/srcpkgs/linux6.1/template @@ -1,7 +1,7 @@ # Template file for 'linux6.1' pkgname=linux6.1 version=6.1.55 -revision=1 +revision=2 short_desc="Linux kernel and modules (${version%.*} series)" maintainer="Đoàn Trần Công Danh " license="GPL-2.0-only" @@ -169,6 +169,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 @@ -211,6 +212,11 @@ do_install() { mkdir -p ${hdrdest}/tools/include cp -a tools/include/tools ${hdrdest}/tools/include + 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} if [ "$subarch" = "i386" ]; then @@ -283,21 +289,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*";; - 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} From cb2928d0c36311472e4696a85e645bc925239378 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Fri, 29 Sep 2023 21:12:54 -0400 Subject: [PATCH 3/4] linux6.3: include files necessary for dkms on cross --- srcpkgs/linux6.3/template | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/srcpkgs/linux6.3/template b/srcpkgs/linux6.3/template index f2e373f55278d..d18ef0a337d02 100644 --- a/srcpkgs/linux6.3/template +++ b/srcpkgs/linux6.3/template @@ -1,7 +1,7 @@ # Template file for 'linux6.3' pkgname=linux6.3 version=6.3.13 -revision=1 +revision=2 short_desc="Linux kernel and modules (${version%.*} series)" maintainer="Đoàn Trần Công Danh " license="GPL-2.0-only" @@ -177,6 +177,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 @@ -219,6 +220,11 @@ do_install() { mkdir -p ${hdrdest}/tools/include cp -a tools/include/tools ${hdrdest}/tools/include + 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} if [ "$subarch" = "i386" ]; then @@ -291,22 +297,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} From babf74c76aa8eacffad8fc8bec5de3946bab60a9 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Fri, 29 Sep 2023 17:50:01 -0400 Subject: [PATCH 4/4] linux6.5: include files necessary for dkms on cross --- srcpkgs/linux6.5/template | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/srcpkgs/linux6.5/template b/srcpkgs/linux6.5/template index bc1c6417ec24f..c4930a6e39015 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 @@ -218,6 +219,11 @@ do_install() { mkdir -p ${hdrdest}/tools/include cp -a tools/include/tools ${hdrdest}/tools/include + 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} if [ "$subarch" = "i386" ]; then