mirror of
https://git.freebsd.org/ports.git
synced 2025-05-21 03:23:10 -04:00
The Linux kernel. This port is a building block for creating custom Linux appliances in FreeBSD as part of your regular package build without a Linux VM or jail. Provide your own Linux kernel configuration file via the LINUX_KCONFIG make variable, or create your own via support of Linux' config tools. The default configuration comes with QEMU/KVM guest support. WWW: https://www.kernel.org/ PR: 211419 Submitted by: Tobias Kortkamp <t@tobik.me> Reviewed by: koobs
11 lines
419 B
Text
11 lines
419 B
Text
--- scripts/package/buildtar.orig 2016-07-27 15:42:34 UTC
|
|
+++ scripts/package/buildtar
|
|
@@ -57,7 +57,7 @@ mkdir -p -- "${tmpdir}/boot"
|
|
# Try to install modules
|
|
#
|
|
if grep -q '^CONFIG_MODULES=y' "${objtree}/.config"; then
|
|
- make ARCH="${ARCH}" O="${objtree}" KBUILD_SRC= INSTALL_MOD_PATH="${tmpdir}" modules_install
|
|
+ gmake ARCH="${ARCH}" O="${objtree}" KBUILD_SRC= INSTALL_MOD_PATH="${tmpdir}" modules_install
|
|
fi
|
|
|
|
|