diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/builder_common.sh | 5 | ||||
-rw-r--r-- | tools/templates/core_pkg/base/exclude_files | 2 |
2 files changed, 4 insertions, 3 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 diff --git a/tools/templates/core_pkg/base/exclude_files b/tools/templates/core_pkg/base/exclude_files index 464d547..3aa6d3f 100644 --- a/tools/templates/core_pkg/base/exclude_files +++ b/tools/templates/core_pkg/base/exclude_files @@ -4,7 +4,7 @@ ./boot/loader.conf ./boot/loader.conf.local ./boot/loader.rc.local -./boot/modules/bwi_v3_ucode.ko +./boot/modules ./cf/conf/config.xml ./cf/conf/enableserial_force ./cf/conf/trigger_initial_wizard |