diff options
author | 2005-07-13 21:17:01 +0000 | |
---|---|---|
committer | 2005-07-13 21:17:01 +0000 | |
commit | 9a390bca984158073acbd2625c44ebff86a53e5a (patch) | |
tree | f4f938bf1289a1dbf1759eb9f413f4580040e87d /gen_configkernel.sh | |
parent | Fix for bug 97672. Call get_KV to get the KV after the prepare has been run (diff) | |
download | genkernel-9a390bca984158073acbd2625c44ebff86a53e5a.tar.gz genkernel-9a390bca984158073acbd2625c44ebff86a53e5a.tar.bz2 genkernel-9a390bca984158073acbd2625c44ebff86a53e5a.zip |
Fix #97672, #98886, #98893, #98897; fix real_root=/dev/mdX: upgraded busybox to 1.00, porting in my read -t and mdstart patches.
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@256 67a159dc-881f-0410-a524-ba9dfbe2cb84
Diffstat (limited to 'gen_configkernel.sh')
-rw-r--r-- | gen_configkernel.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gen_configkernel.sh b/gen_configkernel.sh index 929169d..19139b3 100644 --- a/gen_configkernel.sh +++ b/gen_configkernel.sh @@ -95,8 +95,8 @@ config_kernel() { # Force this on if we are a 2.4 kernel or less # Force this on if we are using bootsplash # This is required for initrd support - # Initramfs dont require this - if [ "${PAT}" -le '4' -o "${CMD_BOOTSPLASH}" = '1' ] + # Initramfs doesn't require this + if [ "${KERN_24}" -eq '1' -o "${CMD_BOOTSPLASH}" = '1' ] then # Make sure Ext2 support is on... sed -i ${KERNEL_DIR}/.config -e 's/#\? \?CONFIG_EXT2_FS[ =].*/CONFIG_EXT2_FS=y/g' |