diff --git a/gen_compile.sh b/gen_compile.sh index 744b10b..6f699ca 100644 --- a/gen_compile.sh +++ b/gen_compile.sh @@ -190,6 +190,10 @@ compile_kernel() { cd ${KERNEL_DIR} print_info 1 "kernel: Starting compile of linux ${KV} ${KERNEL_MAKE}" compile_generic "${KERNEL_MAKE}" kernel + if [ "${KERNEL_MAKE_2}" != "" ] + then + compile_generic "${KERNEL_MAKE_2}" kernel + fi cp "${KERNEL_BINARY}" "/boot/kernel-${KV}" || gen_die "Could not copy kernel binary to boot" } diff --git a/x86/config.sh b/x86/config.sh index 9c14ef8..b804321 100644 --- a/x86/config.sh +++ b/x86/config.sh @@ -2,6 +2,7 @@ # x86/config.sh KERNEL_MAKE="bzImage" +KERNEL_MAKE_2="" KERNEL_BINARY="arch/i386/boot/bzImage" # The dietlibc portion of busybox is commented out right now