summaryrefslogtreecommitdiffstats
path: root/tools/builder_common.sh
diff options
context:
space:
mode:
authorLuiz Souza <luiz@netgate.com>2017-09-15 23:12:42 -0500
committerLuiz Souza <luiz@netgate.com>2017-09-15 23:12:57 -0500
commit1ec6f217695fd15e9d1e9b3c0b6829e4b86eda0c (patch)
treec2d1c655e78a4cd6a1d608c18ece0f88d5bcc174 /tools/builder_common.sh
parent48009b827409d6d6dd19a9f0d5d18f80ca62092a (diff)
downloadpfsense-1ec6f217695fd15e9d1e9b3c0b6829e4b86eda0c.zip
pfsense-1ec6f217695fd15e9d1e9b3c0b6829e4b86eda0c.tar.gz
Fix the kern-debug package. The debug modules are now in /usr/lib/debug/boot/kernel.
Include /boot/modules in the kernel package.
Diffstat (limited to 'tools/builder_common.sh')
-rw-r--r--tools/builder_common.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/builder_common.sh b/tools/builder_common.sh
index 74b9b11..e0cf706 100644
--- a/tools/builder_common.sh
+++ b/tools/builder_common.sh
@@ -163,11 +163,12 @@ build_all_kernels() {
ensure_kernel_exists $KERNEL_DESTDIR
echo ">>> Creating pkg of $KERNEL_NAME-debug kernel to staging area..." | tee -a ${LOGFILE}
- core_pkg_create kernel-debug ${KERNEL_NAME} ${CORE_PKG_VERSION} ${KERNEL_DESTDIR} ./boot/kernel \*.ko.debug
+ core_pkg_create kernel-debug ${KERNEL_NAME} ${CORE_PKG_VERSION} ${KERNEL_DESTDIR} \
+ "/usr/lib/debug/boot/kernel" \*.ko.debug
rm -rf ${KERNEL_DESTDIR}/usr
echo ">>> Creating pkg of $KERNEL_NAME kernel to staging area..." | tee -a ${LOGFILE}
- core_pkg_create kernel ${KERNEL_NAME} ${CORE_PKG_VERSION} ${KERNEL_DESTDIR}
+ core_pkg_create kernel ${KERNEL_NAME} ${CORE_PKG_VERSION} ${KERNEL_DESTDIR} "./boot/kernel ./boot/modules"
rm -rf $KERNEL_DESTDIR 2>&1 1>/dev/null
done
OpenPOWER on IntegriCloud