diff options
author | Andrew Gaffney <agaffney@gentoo.org> | 2008-03-14 16:19:20 +0000 |
---|---|---|
committer | Andrew Gaffney <agaffney@gentoo.org> | 2008-03-14 16:19:20 +0000 |
commit | 3128691111b3a6abb711c127f35190a99f150f34 (patch) | |
tree | f64871582087a3601272fbb82085ac6a094b81c1 /gen_cmdline.sh | |
parent | Change the opts passed to udhcpc when using nfsroot (diff) | |
download | genkernel-3128691111b3a6abb711c127f35190a99f150f34.tar.gz genkernel-3128691111b3a6abb711c127f35190a99f150f34.tar.bz2 genkernel-3128691111b3a6abb711c127f35190a99f150f34.zip |
Get rid of --initramfs option as it doesn't do anything anymore
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@658 67a159dc-881f-0410-a524-ba9dfbe2cb84
Diffstat (limited to 'gen_cmdline.sh')
-rwxr-xr-x | gen_cmdline.sh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gen_cmdline.sh b/gen_cmdline.sh index d9b9332c..30840763 100755 --- a/gen_cmdline.sh +++ b/gen_cmdline.sh @@ -44,8 +44,6 @@ longusage() { echo " --callback=<...> Run the specified arguments after the" echo " kernel and modules have been compiled" echo " --static Build a static (monolithic kernel)." - echo " --initramfs Builds initramfs before kernel and embeds it" - echo " into the kernel." echo " Kernel settings" echo " --kerneldir=<dir> Location of the kernel sources" echo " --kernel-config=<file> Kernel configuration file to use for compilation" @@ -388,10 +386,6 @@ parse_cmdline() { CMD_STATIC=1 print_info 2 "CMD_STATIC: ${CMD_STATIC}" ;; - --initramfs) - CMD_INITRAMFS=1 - print_info 2 "CMD_INITRAMFS: ${CMD_INITRAMFS}" - ;; --tempdir=*) TMPDIR=`parse_opt "$*"` TEMP=${TMPDIR}/$RANDOM.$RANDOM.$RANDOM.$$ |