From: Brad House Date: Tue, 9 Dec 2003 19:28:37 +0000 (+0000) Subject: KERNEL_MAKE_2 for sparc X-Git-Tag: v3.4.10.902~737 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=43a8e21946536e88b3280eb581a53cb3452f32f0;p=genkernel.git KERNEL_MAKE_2 for sparc git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@15 67a159dc-881f-0410-a524-ba9dfbe2cb84 --- 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