diff options
author | Andrew Gaffney <agaffney@gentoo.org> | 2010-01-18 20:05:59 -0600 |
---|---|---|
committer | Andrew Gaffney <agaffney@gentoo.org> | 2010-01-18 20:05:59 -0600 |
commit | f6c50d59a93049abd8e1bb880639ff27abc6b5ae (patch) | |
tree | 79ab801d4bcc91a4e307a238e0a2ca2f3048e3f2 | |
parent | Add USB HID modules to modules_load and default kernel-config (for Gentoo bug... (diff) | |
download | genkernel-f6c50d59a93049abd8e1bb880639ff27abc6b5ae.tar.gz genkernel-f6c50d59a93049abd8e1bb880639ff27abc6b5ae.tar.bz2 genkernel-f6c50d59a93049abd8e1bb880639ff27abc6b5ae.zip |
Only call set_bootloader is CMD_NOINSTALL is not set for Gentoo bug #301454
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | genkernel | 5 |
2 files changed, 8 insertions, 1 deletions
@@ -5,6 +5,10 @@ # Distributed under the GPL v2 # $Id$ + 19 Jan 2010; Andrew Gaffney <agaffney@gentoo.org> genkernel: + Only call set_bootloader is CMD_NOINSTALL is not set for Gentoo bug + #301454 + 27 Dec 2009; Andrew Gaffney <agaffney@gentoo.org> arch/alpha/modules_load, arch/arm/modules_load, arch/ia64/kernel-config, arch/ia64/modules_load, arch/mips/modules_load, arch/parisc/modules_load, @@ -313,7 +313,10 @@ fi if [ "${BUILD_KERNEL}" -eq '1' ] then - set_bootloader + if ! isTrue "${CMD_NOINSTALL}" + then + set_bootloader + fi print_info 1 '' print_info 1 "Kernel compiled successfully!" print_info 1 '' |