genkernel: Add --kconfig to set specific kernel config options
[genkernel.git] / gen_cmdline.sh
index 998378ac50fd62b6e315fcf1b24f6a9358fec64b..6766b4ea292c5476e0d7ce97923d5ca97269bf08 100755 (executable)
@@ -1,49 +1,57 @@
 #!/bin/bash
+# $Id$
 
 longusage() {
   echo "Gentoo Linux Genkernel ${GK_V}"
+  echo
   echo "Usage: "
   echo "  genkernel [options] action"
   echo
   echo "Available Actions: "
   echo "  all                          Build all steps"
   echo "  bzImage                      Build only the kernel"
+  echo "  initramfs                    Build only the ramdisk/initramfs"
   echo "  kernel                       Build only the kernel and modules"
-  echo "  initrd                       Build only the initrd"
+  echo "  ramdisk                      Build only the ramdisk/initramfs"
   echo
   echo "Available Options: "
+  echo "  Configuration settings"
+  echo "       --config=<file> genkernel configuration file to use"
   echo "  Debug settings"
-  echo "       --debuglevel=<0-5>      Debug Verbosity Level"
-  echo "       --debugfile=<outfile>   Output file for debug info"
+  echo "       --loglevel=<0-5>        Debug Verbosity Level"
+  echo "       --logfile=<outfile>     Output file for debug info"
   echo "       --color                 Output debug in color"
   echo "       --no-color              Do not output debug in color"
   echo "  Kernel Configuration settings"
   echo "       --menuconfig            Run menuconfig after oldconfig"
   echo "       --no-menuconfig         Do not run menuconfig after oldconfig"
-  echo "       --gconfig               Run gconfig after oldconfig"
-  echo "       --xconfig               Run xconfig after oldconfig"
+  echo "       --gconfig                       Run gconfig after oldconfig"
+  echo "       --no-gconfig            Don't run gconfig after oldconfig"
+  echo "       --xconfig                       Run xconfig after oldconfig"
+  echo "       --no-xconfig            Don't run xconfig after oldconfig"
   echo "       --save-config           Save the configuration to /etc/kernels"
   echo "       --no-save-config        Don't save the configuration to /etc/kernels"
+  echo "       --virtio                        Include VirtIO kernel code"
+  echo "       --kconfig=<CONFIG>=<value>      Set a specific kernel config option"
   echo "  Kernel Compile settings"
+  echo "       --oldconfig             Implies --no-clean and runs a 'make oldconfig'"
   echo "       --clean                 Run make clean before compilation"
-  echo "       --mrproper              Run make mrproper before compilation"
   echo "       --no-clean              Do not run make clean before compilation"
-  echo "       --no-mrproper           Do not run make mrproper before compilation"
-  echo "       --oldconfig             Implies --no-clean and runs a 'make oldconfig'"
-  echo "       --bootsplash            Install bootsplash support to the initrd"
-  echo "       --no-bootsplash         Do not use bootsplash"
-  echo "       --gensplash             Install gensplash support into bzImage"
-  echo "       --no-gensplash          Do not use gensplash"
+  echo "       --mrproper              Run make mrproper before compilation"
+  echo "       --no-mrproper   Do not run make mrproper before compilation"
+  echo "       --splash                Install framebuffer splash support into initramfs"
+  echo "       --no-splash             Do not install framebuffer splash"
   echo "       --install               Install the kernel after building"
   echo "       --no-install            Do not install the kernel after building"
-  echo "       --no-initrdmodules      Don't copy any modules to the initrd"
-  echo "       --no-udev               Disable udev support"
-  echo "       --no-devfs              Disable devfs support"
+  echo "       --symlink               Manage symlinks in /boot for installed images"
+  echo "       --no-symlink            Do not manage symlinks"
+  echo "       --ramdisk-modules       Copy required modules to the ramdisk"
+  echo "       --no-ramdisk-modules    Don't copy any modules to the ramdisk"
+  echo "       --all-ramdisk-modules   Copy all kernel modules to the ramdisk"
   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 "       --no-static             Do not build a static (monolithic kernel)."
   echo "  Kernel settings"
   echo "       --kerneldir=<dir>       Location of the kernel sources"
   echo "       --kernel-config=<file>  Kernel configuration file to use for compilation"
@@ -55,6 +63,10 @@ longusage() {
   echo "       --kernel-ld=<linker>    Linker to use for kernel"
   echo "       --kernel-cross-compile=<cross var> CROSS_COMPILE kernel variable"
   echo "       --kernel-make=<makeprg> GNU Make to use for kernel"
+  echo "       --kernel-target=<t>     Override default make target (bzImage)"
+  echo "       --kernel-binary=<path>  Override default kernel binary path (arch/foo/boot/bar)"
+  echo "       --kernel-outputdir=<path> Save output files outside the source tree."
+
   echo "       --utils-cc=<compiler>   Compiler to use for utilities"
   echo "       --utils-as=<assembler>  Assembler to use for utils"
   echo "       --utils-ld=<linker>     Linker to use for utils"
@@ -63,55 +75,98 @@ longusage() {
   echo "       --utils-arch=<arch>     Force to arch for utils only instead of"
   echo "                               autodetect."
   echo "       --makeopts=<makeopts>   Make options such as -j2, etc..."
-  echo "       --mountboot             Mount /boot automatically"
-  echo "       --no-mountboot          Don't mount /boot automatically"  
+  echo "       --mountboot             Mount BOOTDIR automatically if mountable"
+  echo "       --no-mountboot          Don't mount BOOTDIR automatically"  
+  echo "       --bootdir=<dir>         Set the location of the boot-directory, default is /boot"
+  echo "       --modprobedir=<dir>     Set the location of the modprobe.d-directory, default is /etc/modprobe.d"
   echo "  Initialization"
-  echo "       --bootsplash=<theme>    Force bootsplash using <theme>"
-  echo "       --gensplash=<theme>     Force gensplash using <theme>"
-  echo "       --gensplash-res=<res>   Select gensplash resolutions"
+  echo "       --splash=<theme>        Enable framebuffer splash using <theme>"
+  echo "       --splash-res=<res>      Select splash theme resolutions to install"
+  echo "       --splash=<theme>        Enable framebuffer splash using <theme>"
+  echo "       --splash-res=<res>      Select splash theme resolutions to install"
   echo "       --do-keymap-auto        Forces keymap selection at boot"
-  echo "       --evms2                 Include EVMS2 support"
-  echo "                               --> 'emerge evms' in the host operating system"
-  echo "                               first"
-  echo "       --lvm2                  Include LVM2 support"
-#  echo "      --unionfs               Include UNIONFS support"
+  echo "       --keymap                Enables keymap selection support"
+  echo "       --no-keymap             Disables keymap selection support"
+  echo "       --lvm                   Include LVM support"
+  echo "       --no-lvm                Exclude LVM support"
+  echo "       --mdadm                 Include MDADM/MDMON support"
+  echo "       --no-mdadm              Exclude MDADM/MDMON support"
+  echo "       --mdadm-config=<file>   Use file as mdadm.conf in initramfs"
   echo "       --dmraid                Include DMRAID support"
-  echo "       --slowusb               Enables extra pauses for slow USB CD boots"
+  echo "       --no-dmraid             Exclude DMRAID support"
+  echo "       --e2fsprogs             Include e2fsprogs"
+  echo "       --no-e2fsprogs          Exclude e2fsprogs"
+  echo "       --zfs                   Include ZFS support"
+  echo "       --no-zfs                Exclude ZFS support"
+  echo "       --multipath             Include Multipath support"
+  echo "       --no-multipath  Exclude Multipath support"
+  echo "       --iscsi                 Include iSCSI support"
+  echo "       --no-iscsi              Exclude iSCSI support"
   echo "       --bootloader=grub       Add new kernel to GRUB configuration"
   echo "       --linuxrc=<file>        Specifies a user created linuxrc"
-  echo "       --disklabel             Include disk label and uuid support in your"
-  echo "                               initrd"
+  echo "       --busybox-config=<file> Specifies a user created busybox config"
+  echo "       --genzimage             Make and install kernelz image (PowerPC)"
+  echo "       --disklabel             Include disk label and uuid support in your ramdisk"
+  echo "       --no-disklabel  Exclude disk label and uuid support in your ramdisk"
   echo "       --luks                  Include LUKS support"
   echo "                               --> 'emerge cryptsetup-luks' with USE=-dynamic"
+  echo "       --no-luks               Exclude LUKS support"
+  echo "       --gpg                   Include GPG-armored LUKS key support"
+  echo "       --no-gpg                Exclude GPG-armored LUKS key support"
+  echo "       --busybox               Include busybox"
+  echo "       --no-busybox    Exclude busybox"
+  echo "       --unionfs               Include support for unionfs"
+  echo "       --no-unionfs    Exclude support for unionfs"
+  echo "       --netboot               Create a self-contained env in the initramfs"
+  echo "       --no-netboot    Exclude --netboot env"
+  echo "       --real-root=<foo>       Specify a default for real_root="
   echo "  Internals"
   echo "       --arch-override=<arch>  Force to arch instead of autodetect"
   echo "       --cachedir=<dir>        Override the default cache location"
   echo "       --tempdir=<dir>         Location of Genkernel's temporary directory"
-  echo "       --postclear             Clear all tmp files and caches after genkernel has run"
+  echo "       --postclear                     Clear all tmp files and caches after genkernel has run"
+  echo "       --no-postclear          Do not clean up after genkernel has run"
   echo "  Output Settings"
-  echo "        --kernname=<...>       Tag the kernel and initrd with a name:"
+  echo "       --kernname=<...>        Tag the kernel and ramdisk with a name:"
   echo "                               If not defined the option defaults to"
   echo "                               'genkernel'"
-  echo "        --minkernpackage=<tbz2> File to output a .tar.bz2'd kernel and initrd:"
-  echo "                               No modules outside of the initrd will be"
+  echo "       --minkernpackage=<tbz2> File to output a .tar.bz2'd kernel and ramdisk:"
+  echo "                               No modules outside of the ramdisk will be"
   echo "                               included..."
-  echo "        --modulespackage=<tbz2> File to output a .tar.bz2'd modules after the"
+  echo "       --modulespackage=<tbz2> File to output a .tar.bz2'd modules after the"
   echo "                               callbacks have run"
-  echo "        --kerncache=<tbz2>     File to output a .tar.bz2'd kernel contents"
+  echo "       --kerncache=<tbz2>      File to output a .tar.bz2'd kernel contents"
   echo "                               of /lib/modules/ and the kernel config"
   echo "                               NOTE: This is created before the callbacks"
   echo "                               are run!"
-  echo "        --no-kernel-sources    This option is only valid if kerncache is"
+  echo "       --no-kernel-sources     This option is only valid if kerncache is"
   echo "                               defined. If there is a valid kerncache no checks"
   echo "                               will be made against a kernel source tree"
-  echo "        --initramfs-overlay=<dir>"
-  echo "                               Directory structure to include in the initramfs,"
-  echo "                               only available on 2.6 kernels that do not use"
-  echo "                               bootsplash"
+  echo "       --initramfs-overlay=<dir>"
+  echo "                               Directory structure to include in the initramfs,"
+  echo "                               only available on 2.6 kernels"
+  echo "       --firmware"
+  echo "                               Enable copying of firmware into initramfs"
+  echo "       --firmware-dir=<dir>"
+  echo "                               Specify directory to copy firmware from (defaults"
+  echo "                               to /lib/firmware)"
+  echo "       --firmware-files=<files>"
+  echo "                               Specifies specific firmware files to copy. This"
+  echo "                               overrides --firmware-dir. For multiple files,"
+  echo "                               separate the filenames with a comma"
+  echo "       --integrated-initramfs, --no-integrated-initramfs"
+  echo "                               Include/exclude the generated initramfs in the kernel"
+  echo "                               instead of keeping it as a separate file"
+  echo "       --compress-initramfs, --no-compress-initramfs,"
+  echo "       --compress-initrd, --no-compress-initrd"
+  echo "                               Compress or do not compress the generated initramfs"
+  echo "       --compress-initramfs-type=<arg>"
+  echo "                               Compression type for initramfs (best, xz, lzma, bzip2, gzip, lzop)"
 }
 
 usage() {
   echo "Gentoo Linux Genkernel ${GK_V}"
+  echo
   echo "Usage: "
   echo "       genkernel [options] all"
   echo
@@ -125,387 +180,436 @@ usage() {
   echo '       genkernel --help'
 }
 
-parse_opt() {
-       case "$1" in
-               *\=*)
-                       echo "$1" | cut -f2- -d=
-               ;;
-       esac
+parse_optbool() {
+       local opt=${1/--no-*/0} # false
+       opt=${opt/--*/1} # true
+       echo $opt
 }
 
 parse_cmdline() {
        case "$*" in
-             --kernel-cc=*)
-                     CMD_KERNEL_CC=`parse_opt "$*"`
-                     print_info 2 "CMD_KERNEL_CC: $CMD_KERNEL_CC"
-             ;;
-             --kernel-ld=*)
-                     CMD_KERNEL_LD=`parse_opt "$*"`
-                     print_info 2 "CMD_KERNEL_LD: $CMD_KERNEL_LD"
-             ;;
-             --kernel-as=*)
-                     CMD_KERNEL_AS=`parse_opt "$*"`
-                     print_info 2 "CMD_KERNEL_AS: $CMD_KERNEL_AS"
-             ;;
-             --kernel-make=*)
-                     CMD_KERNEL_MAKE=`parse_opt "$*"`
-                     print_info 2 "CMD_KERNEL_MAKE: $CMD_KERNEL_MAKE"
-             ;;
-             --kernel-cross-compile=*)
-                     CMD_KERNEL_CROSS_COMPILE=`parse_opt "$*"`
-                     CMD_KERNEL_CROSS_COMPILE=$(echo ${CMD_KERNEL_CROSS_COMPILE}|sed -e 's/.*[^-]$/&-/g')
-                     print_info 2 "CMD_KERNEL_CROSS_COMPILE: $CMD_KERNEL_CROSS_COMPILE"
-             ;;
-             --utils-cc=*)
-                     CMD_UTILS_CC=`parse_opt "$*"`
-                     print_info 2 "CMD_UTILS_CC: $CMD_UTILS_CC"
-             ;;
-             --utils-ld=*)
-                     CMD_UTILS_LD=`parse_opt "$*"`
-                     print_info 2 "CMD_UTILS_LD: $CMD_UTILS_LD"
-             ;;
-             --utils-as=*)
-                     CMD_UTILS_AS=`parse_opt "$*"`
-                     print_info 2 "CMD_UTILS_AS: $CMD_UTILS_AS"
-             ;;
-             --utils-make=*)
-                     CMD_UTILS_MAKE=`parse_opt "$*"`
-                     print_info 2 "CMD_UTILS_MAKE: $CMD_UTILS_MAKE"
-             ;;
-             --utils-cross-compile=*)
-                     CMD_UTILS_CROSS_COMPILE=`parse_opt "$*"`
-                     CMD_UTILS_CROSS_COMPILE=$(echo ${CMD_UTILS_CROSS_COMPILE}|sed -e 's/.*[^-]$/&-/g')
-                     print_info 2 "CMD_UTILS_CROSS_COMPILE: $CMD_UTILS_CROSS_COMPILE"
-             ;;
-             --utils-arch=*)
-                     CMD_UTILS_ARCH=`parse_opt "$*"`
-                     print_info 2 "CMD_UTILS_ARCH: $CMD_ARCHOVERRIDE"
-             ;;
-             --makeopts=*)
-                     CMD_MAKEOPTS=`parse_opt "$*"`
-                     print_info 2 "CMD_MAKEOPTS: $CMD_MAKEOPTS"
-             ;;
-             --mountboot)
-                     CMD_MOUNTBOOT=1
-                     print_info 2 "CMD_MOUNTBOOT: $CMD_MOUNTBOOT"
-             ;;
-             --no-mountboot)
-                     CMD_MOUNTBOOT=0
-                     print_info 2 "CMD_MOUNTBOOT: $CMD_MOUNTBOOT"
-             ;;
-             --do-keymap-auto)
-                     CMD_DOKEYMAPAUTO=1
-                     print_info 2 "CMD_DOKEYMAPAUTO: $CMD_DOKEYMAPAUTO"
-             ;;
-             --evms2)
-                     CMD_EVMS2=1
-                     print_info 2 "CMD_EVMS2: $CMD_EVMS2"
-             ;;
-             --unionfs)
-                     echo
-                     print_warning 1 "WARNING: unionfs support is in active development and is not meant for general use."
-                     print_warning 1 "DISABLING UNIONFS SUPPORT AT THIS TIME."
-                     echo
-             ;;
-             --unionfs-dev)
-                     CMD_UNIONFS=1
-                     print_info 2 "CMD_UNIONFS: $CMD_UNIONFS"
-                     echo
-                     print_warning 1 "WARNING: unionfs support is in active development and is not meant for general use."
-                     print_warning 1 "Bug Reports without patches/fixes will be ignored."
-                     print_warning 1 "Use at your own risk as this could blow up your system."
-                     print_warning 1 "This code is subject to change at any time."
-                     echo
-             ;;
-             --lvm2)
-                     CMD_LVM2=1
-                     print_info 2 "CMD_LVM2: $CMD_LVM2"
-             ;;
-             --no-busybox)
-                     CMD_NO_BUSYBOX=1
-                     print_info 2 "CMD_NO_BUSYBOX: $CMD_NO_BUSYBOX"
-             ;;
-             --slowusb)
-                     CMD_SLOWUSB=1
-                     print_info 2 "CMD_SLOWUSB: $CMD_SLOWUSB"
-             ;;
-             --dmraid)
-                     if [ ! -e /usr/include/libdevmapper.h ]
-                     then
-                       echo 'Error: --dmraid requires device-mapper to be installed'
-                       echo '       on the host system; try "emerge device-mapper".'
+               --kernel-cc=*)
+                       CMD_KERNEL_CC=`parse_opt "$*"`
+                       print_info 2 "CMD_KERNEL_CC: ${CMD_KERNEL_CC}"
+                       ;;
+               --kernel-ld=*)
+                       CMD_KERNEL_LD=`parse_opt "$*"`
+                       print_info 2 "CMD_KERNEL_LD: ${CMD_KERNEL_LD}"
+                       ;;
+               --kernel-as=*)
+                       CMD_KERNEL_AS=`parse_opt "$*"`
+                       print_info 2 "CMD_KERNEL_AS: ${CMD_KERNEL_AS}"
+                       ;;
+               --kernel-make=*)
+                       CMD_KERNEL_MAKE=`parse_opt "$*"`
+                       print_info 2 "CMD_KERNEL_MAKE: ${CMD_KERNEL_MAKE}"
+                       ;;
+               --kernel-target=*)
+                       KERNEL_MAKE_DIRECTIVE_OVERRIDE=`parse_opt "$*"`
+                       print_info 2 "KERNEL_MAKE_DIRECTIVE_OVERRIDE: ${KERNEL_MAKE_DIRECTIVE_OVERRIDE}"
+                       ;;
+               --kernel-binary=*)
+                       KERNEL_BINARY_OVERRIDE=`parse_opt "$*"`
+                       print_info 2 "KERNEL_BINARY_OVERRIDE: ${KERNEL_BINARY_OVERRIDE}"
+                       ;;
+               --kernel-cross-compile=*)
+                       CMD_KERNEL_CROSS_COMPILE=`parse_opt "$*"`
+                       CMD_KERNEL_CROSS_COMPILE=$(echo ${CMD_KERNEL_CROSS_COMPILE}|sed -e 's/.*[^-]$/&-/g')
+                       print_info 2 "CMD_KERNEL_CROSS_COMPILE: ${CMD_KERNEL_CROSS_COMPILE}"
+                       ;;
+               --kernel-outputdir=*)
+                       CMD_KERNEL_OUTPUTDIR=`parse_opt "$*"`
+                       print_info 2 "CMD_KERNEL_OUTPUTDIR: ${CMD_KERNEL_OUTPUTDIR}"
+                       ;;
+               --utils-cc=*)
+                       CMD_UTILS_CC=`parse_opt "$*"`
+                       print_info 2 "CMD_UTILS_CC: ${CMD_UTILS_CC}"
+                       ;;
+               --utils-ld=*)
+                       CMD_UTILS_LD=`parse_opt "$*"`
+                       print_info 2 "CMD_UTILS_LD: ${CMD_UTILS_LD}"
+                       ;;
+               --utils-as=*)
+                       CMD_UTILS_AS=`parse_opt "$*"`
+                       print_info 2 "CMD_UTILS_AS: ${CMD_UTILS_AS}"
+                       ;;
+               --utils-make=*)
+                       CMD_UTILS_MAKE=`parse_opt "$*"`
+                       print_info 2 "CMD_UTILS_MAKE: ${CMD_UTILS_MAKE}"
+                       ;;
+               --utils-cross-compile=*)
+                       CMD_UTILS_CROSS_COMPILE=`parse_opt "$*"`
+                       CMD_UTILS_CROSS_COMPILE=$(echo ${CMD_UTILS_CROSS_COMPILE}|sed -e 's/.*[^-]$/&-/g')
+                       print_info 2 "CMD_UTILS_CROSS_COMPILE: ${CMD_UTILS_CROSS_COMPILE}"
+                       ;;
+               --utils-arch=*)
+                       CMD_UTILS_ARCH=`parse_opt "$*"`
+                       print_info 2 "CMD_UTILS_ARCH: ${CMD_ARCHOVERRIDE}"
+                       ;;
+               --makeopts=*)
+                       CMD_MAKEOPTS=`parse_opt "$*"`
+                       print_info 2 "CMD_MAKEOPTS: ${CMD_MAKEOPTS}"
+                       ;;
+               --mountboot|--no-mountboot)
+                       CMD_MOUNTBOOT=`parse_optbool "$*"`
+                       print_info 2 "CMD_MOUNTBOOT: ${CMD_MOUNTBOOT}"
+                       ;;
+               --bootdir=*)
+                       CMD_BOOTDIR=`parse_opt "$*"`
+                       print_info 2 "CMD_BOOTDIR: ${CMD_BOOTDIR}"
+                       ;;
+               --modprobedir=*)
+                       CMD_MODPROBEDIR=`parse_opt "$*"`
+                       print_info 2 "CMD_MODPROBEDIR: ${CMD_MODPROBEDIR}"
+                       ;;
+               --do-keymap-auto)
+                       CMD_DOKEYMAPAUTO=1
+                       CMD_KEYMAP=1
+                       print_info 2 "CMD_DOKEYMAPAUTO: ${CMD_DOKEYMAPAUTO}"
+                       ;;
+               --keymap|--no-keymap)
+                       CMD_KEYMAP=`parse_optbool "$*"`
+                       print_info 2 "CMD_KEYMAP: ${CMD_KEYMAP}"
+                       ;;
+               --lvm|--no-lvm)
+                       CMD_LVM=`parse_optbool "$*"`
+                       print_info 2 "CMD_LVM: ${CMD_LVM}"
+                       ;;
+               --lvm2|--no-lvm2)
+                       CMD_LVM=`parse_optbool "$*"`
+                       print_info 2 "CMD_LVM: ${CMD_LVM}"
+                       echo
+                       print_warning 1 "Please use --lvm, as --lvm2 is deprecated."
+                       ;;
+               --mdadm|--no-mdadm)
+                       CMD_MDADM=`parse_optbool "$*"`
+                       print_info 2 "CMD_MDADM: $CMD_MDADM"
+                       ;;
+               --mdadm-config=*)
+                       CMD_MDADM_CONFIG=`parse_opt "$*"`
+                       print_info 2 "CMD_MDADM_CONFIG: $CMD_MDADM_CONFIG"
+                       ;;
+               --busybox|--no-busybox)
+                       CMD_BUSYBOX=`parse_optbool "$*"`
+                       print_info 2 "CMD_BUSYBOX: ${CMD_BUSYBOX}"
+                       ;;
+               --unionfs|--no-unionfs)
+                       CMD_UNIONFS=`parse_optbool "$*"`
+                       print_info 2 "CMD_UNIONFS: ${CMD_UNIONFS}"
+                       ;;
+               --netboot|--no-netboot)
+                       CMD_NETBOOT=`parse_optbool "$*"`
+                       print_info 2 "CMD_NETBOOT: ${CMD_NETBOOT}"
+                       ;;
+               --real-root=*)
+                       CMD_REAL_ROOT=`parse_opt "$*"`
+                       print_info 2 "CMD_REAL_ROOT: ${CMD_REAL_ROOT}"
+                       ;;
+               --dmraid|--no-dmraid)
+                       CMD_DMRAID=`parse_optbool "$*"`
+                       if [ "$CMD_DMRAID" = "1" -a ! -e /usr/include/libdevmapper.h ]
+                       then
+                               echo 'Error: --dmraid requires LVM2 to be installed'
+                               echo '           on the host system; try "emerge lvm2".'
+                               exit 1
+                       fi
+                       print_info 2 "CMD_DMRAID: ${CMD_DMRAID}"
+                       ;;
+               --e2fsprogs|--no-e2fsprogs)
+                       CMD_E2FSPROGS=`parse_optbool "$*"`
+                       print_info 2 "CMD_E2FSPROGS: ${CMD_E2FSPROGS}"
+                       ;;
+               --zfs|--no-zfs)
+                       CMD_ZFS=`parse_optbool "$*"`
+                       print_info 2 "CMD_ZFS: ${CMD_ZFS}"
+                       ;;
+               --virtio)
+                       CMD_VIRTIO=`parse_optbool "$*"`
+                       print_info 2 "CMD_VIRTIO: ${CMD_VIRTIO}"
+                       ;;
+               --kconfig=*)
+                       KCONFIG_KEY=$(echo "$*" | cut -d= -f2)
+                       KCONFIG_VALUE=$(echo "$*" | cut -d= -f3)
+                       KCONFIG["$KCONFIG_KEY"]="$KCONFIG_VALUE"
+                       print_info 2 "KCONFIG: ${KCONFIG_KEY}=${KCONFIG_VALUE}"
+                       ;;
+               --multipath|--no-multipath)
+                       CMD_MULTIPATH=`parse_optbool "$*"`
+                       if [ "$CMD_MULTIPATH" = "1" -a ! -e /usr/include/libdevmapper.h ]
+                       then
+                               echo 'Error: --multipath requires LVM2 to be installed'
+                               echo '           on the host;system; try "emerge lvm2".'
+                               exit 1
+                       fi
+                       print_info 2 "CMD_MULTIPATH: ${CMD_MULTIPATH}"
+                       ;;
+               --bootloader=*)
+                       CMD_BOOTLOADER=`parse_opt "$*"`
+                       print_info 2 "CMD_BOOTLOADER: ${CMD_BOOTLOADER}"
+                       ;;
+               --iscsi|--no-iscsi)
+                       CMD_ISCSI=`parse_optbool "$*"`
+                       print_info 2 "CMD_ISCSI: ${CMD_ISCSI}"
+                       ;;
+               --loglevel=*)
+                       CMD_LOGLEVEL=`parse_opt "$*"`
+                       LOGLEVEL="${CMD_LOGLEVEL}"
+                       print_info 2 "CMD_LOGLEVEL: ${CMD_LOGLEVEL}"
+                       ;;
+               --menuconfig)
+                       TERM_LINES=`stty -a | head -n 1 | cut -d\  -f5 | cut -d\; -f1`
+                       TERM_COLUMNS=`stty -a | head -n 1 | cut -d\  -f7 | cut -d\; -f1`
+                       if [[ TERM_LINES -lt 19 || TERM_COLUMNS -lt 80 ]]
+                       then
+                               echo "Error: You need a terminal with at least 80 columns"
+                               echo "           and 19 lines for --menuconfig; try --no-menuconfig..."
+                               exit 1
+                       fi
+                       CMD_MENUCONFIG=1
+                       print_info 2 "CMD_MENUCONFIG: ${CMD_MENUCONFIG}"
+                       ;;
+               --no-menuconfig)
+                       CMD_MENUCONFIG=0
+                       print_info 2 "CMD_MENUCONFIG: ${CMD_MENUCONFIG}"
+                       ;;
+               --gconfig|--no-gconfig)
+                       CMD_GCONFIG=`parse_optbool "$*"`
+                       print_info 2 "CMD_GCONFIG: ${CMD_GCONFIG}"
+                       ;;
+               --xconfig|--no-xconfig)
+                       CMD_XCONFIG=`parse_optbool "$*"`
+                       print_info 2 "CMD_XCONFIG: ${CMD_XCONFIG}"
+                       ;;
+               --save-config|--no-save-config)
+                       CMD_SAVE_CONFIG=`parse_optbool "$*"`
+                       print_info 2 "CMD_SAVE_CONFIG: ${CMD_SAVE_CONFIG}"
+                       ;;
+               --mrproper|--no-mrproper)
+                       CMD_MRPROPER=`parse_optbool "$*"`
+                       print_info 2 "CMD_MRPROPER: ${CMD_MRPROPER}"
+                       ;;
+               --clean|--no-clean)
+                       CMD_CLEAN=`parse_optbool "$*"`
+                       print_info 2 "CMD_CLEAN: ${CMD_CLEAN}"
+                       ;;
+               --oldconfig|--no-oldconfig)
+                       CMD_OLDCONFIG=`parse_optbool "$*"`
+                       [ "$CMD_OLDCONFIG" = "1" ] && CMD_CLEAN=0
+                       print_info 2 "CMD_CLEAN: ${CMD_CLEAN}"
+                       print_info 2 "CMD_OLDCONFIG: ${CMD_OLDCONFIG}"
+                       ;;
+               --gensplash=*)
+                       CMD_SPLASH=1
+                       SPLASH_THEME=`parse_opt "$*"`
+                       print_info 2 "CMD_SPLASH: ${CMD_SPLASH}"
+                       print_info 2 "SPLASH_THEME: ${SPLASH_THEME}"
+                       echo
+                       print_warning 1 "Please use --splash, as --gensplash is deprecated."
+                       ;;
+               --gensplash|--no-gensplash)
+                       CMD_SPLASH=`parse_optbool "$*"`
+                       SPLASH_THEME='default'
+                       print_info 2 "CMD_SPLASH: ${CMD_SPLASH}"
+                       echo
+                       print_warning 1 "Please use --splash, as --gensplash is deprecated."
+                       ;;
+               --splash=*)
+                       CMD_SPLASH=1
+                       SPLASH_THEME=`parse_opt "$*"`
+                       print_info 2 "CMD_SPLASH: ${CMD_SPLASH}"
+                       print_info 2 "SPLASH_THEME: ${SPLASH_THEME}"
+                       ;;
+               --splash|--no-splash)
+                       CMD_SPLASH=`parse_optbool "$*"`
+                       SPLASH_THEME='default'
+                       print_info 2 "CMD_SPLASH: ${CMD_SPLASH}"
+                       ;;
+               --gensplash-res=*)
+                       SPLASH_RES=`parse_opt "$*"`
+                       print_info 2 "SPLASH_RES: ${SPLASH_RES}"
+                       echo
+                       print_warning 1 "Please use --splash-res, as --gensplash-res is deprecated."
+                       ;;
+               --splash-res=*)
+                       SPLASH_RES=`parse_opt "$*"`
+                       print_info 2 "SPLASH_RES: ${SPLASH_RES}"
+                       ;;
+               --install|--no-install)
+                       CMD_INSTALL=`parse_optbool "$*"`
+                       print_info 2 "CMD_INSTALL: ${CMD_INSTALL}"
+                       ;;
+               --ramdisk-modules|--no-ramdisk-modules)
+                       CMD_RAMDISKMODULES=`parse_optbool "$*"`
+                       print_info 2 "CMD_RAMDISKMODULES: ${CMD_RAMDISKMODULES}"
+                       ;;
+               --all-ramdisk-modules|--no-all-ramdisk-modules)
+                       CMD_ALLRAMDISKMODULES=`parse_optbool "$*"`
+                       print_info 2 "CMD_ALLRAMDISKMODULES: ${CMD_ALLRAMDISKMODULES}"
+                       ;;
+               --callback=*)
+                       CMD_CALLBACK=`parse_opt "$*"`
+                       print_info 2 "CMD_CALLBACK: ${CMD_CALLBACK}/$*"
+                       ;;
+               --static|--no-static)
+                       CMD_STATIC=`parse_optbool "$*"`
+                       print_info 2 "CMD_STATIC: ${CMD_STATIC}"
+                       ;;
+               --tempdir=*)
+                       TMPDIR=`parse_opt "$*"`
+                       TEMP=${TMPDIR}/$RANDOM.$RANDOM.$RANDOM.$$
+                       print_info 2 "TMPDIR: ${TMPDIR}"
+                       print_info 2 "TEMP: ${TEMP}"
+                       ;;
+               --postclear|--no-postclear)
+                       CMD_POSTCLEAR=`parse_optbool "$*"`
+                       print_info 2 "CMD_POSTCLEAR: ${CMD_POSTCLEAR}"
+                       ;;
+               --arch-override=*)
+                       CMD_ARCHOVERRIDE=`parse_opt "$*"`
+                       print_info 2 "CMD_ARCHOVERRIDE: ${CMD_ARCHOVERRIDE}"
+                       ;;
+               --color|--no-color)
+                       USECOLOR=`parse_optbool "$*"`
+                       print_info 2 "USECOLOR: ${USECOLOR}"
+                       setColorVars
+                       ;;
+               --logfile=*)
+                       CMD_LOGFILE=`parse_opt "$*"`
+                       LOGFILE=`parse_opt "$*"`
+                       print_info 2 "CMD_LOGFILE: ${CMD_LOGFILE}"
+                       print_info 2 "LOGFILE: ${CMD_LOGFILE}"
+                       ;;
+               --kerneldir=*)
+                       CMD_KERNEL_DIR=`parse_opt "$*"`
+                       print_info 2 "CMD_KERNEL_DIR: ${CMD_KERNEL_DIR}"
+                       ;;
+               --kernel-config=*)
+                       CMD_KERNEL_CONFIG=`parse_opt "$*"`
+                       print_info 2 "CMD_KERNEL_CONFIG: ${CMD_KERNEL_CONFIG}"
+                       ;;
+               --module-prefix=*)
+                       CMD_INSTALL_MOD_PATH=`parse_opt "$*"`
+                       print_info 2 "CMD_INSTALL_MOD_PATH: ${CMD_INSTALL_MOD_PATH}"
+                       ;;
+               --cachedir=*)
+                       CACHE_DIR=`parse_opt "$*"`
+                       print_info 2 "CACHE_DIR: ${CACHE_DIR}"
+                       ;;
+               --minkernpackage=*)
+                       CMD_MINKERNPACKAGE=`parse_opt "$*"`
+                       print_info 2 "MINKERNPACKAGE: ${CMD_MINKERNPACKAGE}"
+                       ;;
+               --modulespackage=*)
+                       CMD_MODULESPACKAGE=`parse_opt "$*"`
+                       print_info 2 "MODULESPACKAGE: ${CMD_MODULESPACKAGE}"
+                       ;;
+               --kerncache=*)
+                       CMD_KERNCACHE=`parse_opt "$*"`
+                       print_info 2 "KERNCACHE: ${CMD_KERNCACHE}"
+                       ;;
+               --kernname=*)
+                       CMD_KERNNAME=`parse_opt "$*"`
+                       print_info 2 "KERNNAME: ${CMD_KERNNAME}"
+                       ;;
+               --symlink|--no-symlink)
+                       CMD_SYMLINK=`parse_optbool "$*"`
+                       print_info 2 "CMD_SYMLINK: ${CMD_SYMLINK}"
+                       ;;
+               --kernel-sources|--no-kernel-sources)
+                       CMD_KERNEL_SOURCES=`parse_optbool "$*"`
+                       print_info 2 "CMD_KERNEL_SOURCES: ${CMD_KERNEL_SOURCES}"
+                       ;;
+               --initramfs-overlay=*)
+                       CMD_INITRAMFS_OVERLAY=`parse_opt "$*"`
+                       print_info 2 "CMD_INITRAMFS_OVERLAY: ${CMD_INITRAMFS_OVERLAY}"
+                       ;;
+               --linuxrc=*)
+                       CMD_LINUXRC=`parse_opt "$*"`
+                       print_info 2 "CMD_LINUXRC: ${CMD_LINUXRC}"
+                       ;;
+               --busybox-config=*)
+                       CMD_BUSYBOX_CONFIG=`parse_opt "$*"`
+                       print_info 2 "CMD_BUSYBOX_CONFIG: ${CMD_BUSYBOX_CONFIG}"
+                       ;;
+               --genzimage)
+                       KERNEL_MAKE_DIRECTIVE_2='zImage.initrd'
+                       KERNEL_BINARY_2='arch/powerpc/boot/zImage.initrd'
+                       CMD_GENZIMAGE="yes"
+#                      ENABLE_PEGASOS_HACKS="yes"
+#                      print_info 2 "ENABLE_PEGASOS_HACKS: ${ENABLE_PEGASOS_HACKS}"
+                       ;;
+               --disklabel|--no-disklabel)
+                       CMD_DISKLABEL=`parse_optbool "$*"`
+                       print_info 2 "CMD_DISKLABEL: ${CMD_DISKLABEL}"
+                       ;;
+               --luks|--no-luks)
+                       CMD_LUKS=`parse_optbool "$*"`
+                       print_info 2 "CMD_LUKS: ${CMD_LUKS}"
+                       ;;
+               --gpg|--no-gpg)
+                       CMD_GPG=`parse_optbool "$*"`
+                       print_info 2 "CMD_GPG: ${CMD_GPG}"
+                       ;;
+               --firmware|--no-firmware)
+                       CMD_FIRMWARE=`parse_optbool "$*"`
+                       print_info 2 "CMD_FIRMWARE: ${CMD_FIRMWARE}"
+                       ;;
+               --firmware-dir=*)
+                       CMD_FIRMWARE_DIR=`parse_opt "$*"`
+                       CMD_FIRMWARE=1
+                       print_info 2 "CMD_FIRMWARE_DIR: ${CMD_FIRMWARE_DIR}"
+                       ;;
+               --firmware-files=*)
+                       CMD_FIRMWARE_FILES=`parse_opt "$*"`
+                       CMD_FIRMWARE=1
+                       print_info 2 "CMD_FIRMWARE_FILES: ${CMD_FIRMWARE_FILES}"
+                       ;;
+               --integrated-initramfs|--no-integrated-initramfs)
+                       CMD_INTEGRATED_INITRAMFS=`parse_optbool "$*"`
+                       print_info 2 "CMD_INTEGRATED_INITRAMFS=${CMD_INTEGRATED_INITRAMFS}"
+                       ;;
+               --compress-initramfs|--no-compress-initramfs|--compress-initrd|--no-compress-initrd)
+                       CMD_COMPRESS_INITRD=`parse_optbool "$*"`
+                       print_info 2 "CMD_COMPRESS_INITRD=${CMD_COMPRESS_INITRD}"
+                       ;;
+               --compress-initramfs-type=*|--compress-initrd-type=*)
+                       COMPRESS_INITRD_TYPE=`parse_opt "$*"`
+                       print_info 2 "CMD_COMPRESS_INITRD_TYPE: ${CMD_LINUXRC}"
+                       ;;
+               --config=*)
+                       print_info 2 "CMD_GK_CONFIG: `parse_opt "$*"`"
+                       ;;
+               all)
+                       BUILD_KERNEL=1
+                       BUILD_MODULES=1
+                       BUILD_RAMDISK=1
+                       ;;
+               ramdisk|initramfs)
+                       BUILD_RAMDISK=1
+                       ;;
+               kernel)
+                       BUILD_KERNEL=1
+                       BUILD_MODULES=1
+                       BUILD_RAMDISK=0
+                       ;;
+               bzImage)
+                       BUILD_KERNEL=1
+                       BUILD_MODULES=0
+                       BUILD_RAMDISK=1
+                       CMD_RAMDISKMODULES=0
+                       print_info 2 "CMD_RAMDISKMODULES: ${CMD_RAMDISKMODULES}"
+                       ;;
+               --help)
+                       longusage
                        exit 1
-                     fi
-                     CMD_DMRAID=1
-                     print_info 2 "CMD_DMRAID: $CMD_DMRAID"
-             ;;
-             --bootloader=*)
-                     CMD_BOOTLOADER=`parse_opt "$*"`
-                     print_info 2 "CMD_BOOTLOADER: $CMD_BOOTLOADER"
-             ;;
-             --debuglevel=*)
-                     CMD_DEBUGLEVEL=`parse_opt "$*"`
-                     DEBUGLEVEL="${CMD_DEBUGLEVEL}"
-                     print_info 2 "CMD_DEBUGLEVEL: $CMD_DEBUGLEVEL"
-             ;;
-             --menuconfig)
-                     TERM_LINES=`stty -a | head -n 1 | cut -d\  -f5 | cut -d\; -f1`
-                     TERM_COLUMNS=`stty -a | head -n 1 | cut -d\  -f7 | cut -d\; -f1`
-
-                     if [[ TERM_LINES -lt 19 || TERM_COLUMNS -lt 80 ]]
-                     then
-                       echo "Error: You need a terminal with at least 80 columns"
-                       echo "       and 19 lines for --menuconfig; try --nomenuconfig..."
+                       ;;
+               --version)
+                       echo "${GK_V}"
+                       exit 0
+                       ;;
+               *)
+                       echo "Error: Unknown option '$*'!"
                        exit 1
-                     fi
-                     CMD_MENUCONFIG=1
-                     print_info 2 "CMD_MENUCONFIG: $CMD_MENUCONFIG"
-             ;;
-             --no-menuconfig)
-                     CMD_MENUCONFIG=0
-                     print_info 2 "CMD_MENUCONFIG: $CMD_MENUCONFIG"
-             ;;
-             --gconfig)
-                     CMD_GCONFIG=1
-                     print_info 2 "CMD_GCONFIG: $CMD_GCONFIG"
-             ;;
-             --xconfig)
-                     CMD_XCONFIG=1
-                     print_info 2 "CMD_XCONFIG: $CMD_XCONFIG"
-             ;;
-             --save-config)
-                     CMD_SAVE_CONFIG=1
-                     print_info 2 "CMD_SAVE_CONFIG: $CMD_SAVE_CONFIG"
-             ;;
-             --no-save-config)
-                     CMD_SAVE_CONFIG=0
-                     print_info 2 "CMD_SAVE_CONFIG: $CMD_SAVE_CONFIG"
-             ;;
-             --mrproper)
-                     CMD_MRPROPER=1
-                     print_info 2 "CMD_MRPROPER: $CMD_MRPROPER"
-             ;;
-             --no-mrproper)
-                     CMD_MRPROPER=0
-                     print_info 2 "CMD_MRPROPER: $CMD_MRPROPER"
-             ;;
-             --clean)
-                     CMD_CLEAN=1
-                     print_info 2 "CMD_CLEAN: $CMD_CLEAN"
-             ;;
-             --no-clean)
-                     CMD_CLEAN=0
-                     print_info 2 "CMD_CLEAN: $CMD_CLEAN"
-             ;;
-             --oldconfig)
-                     CMD_CLEAN=0
-                     CMD_OLDCONFIG=1
-                     print_info 2 "CMD_CLEAN: $CMD_CLEAN"
-                     print_info 2 "CMD_OLDCONFIG: $CMD_OLDCONFIG"
-             ;;
-             --bootsplash=*)
-                     CMD_BOOTSPLASH=1
-                     CMD_GENSPLASH=0
-                     BOOTSPLASH_THEME=`parse_opt "$*"`
-                     print_info 2 "CMD_BOOTSPLASH: $CMD_BOOTSPLASH"
-                     print_info 2 "CMD_GENSPLASH: $CMD_GENSPLASH"
-                     print_info 2 "BOOTSPLASH_THEME: $BOOTSPLASH_THEME"
-             ;;
-             --bootsplash)
-                     CMD_BOOTSPLASH=1
-                     CMD_GENSPLASH=0
-                     print_info 2 "CMD_BOOTSPLASH: $CMD_BOOTSPLASH"
-                     print_info 2 "CMD_GENSPLASH: $CMD_GENSPLASH"
-             ;;
-             --no-bootsplash)
-                     CMD_BOOTSPLASH=0
-                     print_info 2 "CMD_BOOTSPLASH: $CMD_BOOTSPLASH"
-             ;;
-             --gensplash=*)
-                     CMD_GENSPLASH=1
-                     CMD_BOOTSPLASH=0
-                     GENSPLASH_THEME=`parse_opt "$*"`
-                     print_info 2 "CMD_GENSPLASH: $CMD_GENSPLASH"
-                     print_info 2 "GENSPLASH_THEME: $GENSPLASH_THEME"
-                     print_info 2 "CMD_BOOTSPLASH: $CMD_BOOTSPLASH"
-             ;;
-             --gensplash)
-                     CMD_GENSPLASH=1
-                     CMD_BOOTSPLASH=0
-                     GENSPLASH_THEME='default'
-                     print_info 2 "CMD_GENSPLASH: $CMD_GENSPLASH"
-                     print_info 2 "CMD_BOOTSPLASH: $CMD_BOOTSPLASH"
-             ;;
-             --no-gensplash)
-                     CMD_GENSPLASH=0
-                     print_info 2 "CMD_GENSPLASH: $CMD_GENSPLASH"
-             ;;
-             --gensplash-res=*)
-                     GENSPLASH_RES=`parse_opt "$*"`
-                     print_info 2 "GENSPLASH_RES: $GENSPLASH_RES"
-             ;;
-             --install)
-                     CMD_NOINSTALL=0
-                     print_info 2 "CMD_NOINSTALL: $CMD_NOINSTALL"
-             ;;
-             --no-install)
-                     CMD_NOINSTALL=1
-                     print_info 2 "CMD_NOINSTALL: $CMD_NOINSTALL"
-             ;;
-             --no-initrdmodules)
-                     CMD_NOINITRDMODULES=1
-                     print_info 2 "CMD_NOINITRDMODULES: $CMD_NOINITRDMODULES"
-             ;;
-             --udev)
-                     echo
-                     echo
-                     print_info 1 "--udev is deprecated and no longer necessary as udev is on by default"
-                     sleep 3
-                     echo
-                     echo
-                     print_info 2 "CMD_UDEV: $CMD_UDEV"
-             ;;
-             --no-udev)
-                     CMD_NO_UDEV=1
-                     print_info 2 "CMD_NO_UDEV: $CMD_NO_UDEV"
-             ;;
-             --no-devfs)
-                     CMD_NO_DEVFS=1
-                     print_info 2 "CMD_NO_DEVFS: $CMD_NO_DEVFS"
-             ;;
-             --callback=*)
-                     CMD_CALLBACK=`parse_opt "$*"`
-                     print_info 2 "CMD_CALLBACK: $CMD_CALLBACK/$*"
-             ;;
-             --static)
-                     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.$$
-                     print_info 2 "TMPDIR: $TMPDIR"
-                     print_info 2 "TEMP: $TEMP"
-             ;; 
-             --postclear)
-                     CMD_POSTCLEAR=1
-                     print_info 2 "CMD_POSTCLEAR: $CMD_POSTCLEAR"
-             ;; 
-             --arch-override=*)
-                     CMD_ARCHOVERRIDE=`parse_opt "$*"`
-                     print_info 2 "CMD_ARCHOVERRIDE: $CMD_ARCHOVERRIDE"
-             ;;
-             --color)
-                     CMD_USECOLOR=1
-                     print_info 2 "CMD_USECOLOR: $CMD_USECOLOR"
-             ;;
-             --no-color)
-                     CMD_USECOLOR=0
-                     print_info 2 "CMD_USECOLOR: $CMD_USECOLOR"
-             ;;
-             --debugfile=*)
-                     CMD_DEBUGFILE=`parse_opt "$*"`
-                     DEBUGFILE=`parse_opt "$*"`
-                     print_info 2 "CMD_DEBUGFILE: $CMD_DEBUGFILE"
-                     print_info 2 "DEBUGFILE: $CMD_DEBUGFILE"
-             ;;
-             --kerneldir=*)
-                     CMD_KERNELDIR=`parse_opt "$*"`
-                     print_info 2 "CMD_KERNELDIR: $CMD_KERNELDIR"
-             ;;
-             --kernel-config=*)
-                     CMD_KERNEL_CONFIG=`parse_opt "$*"`
-                     print_info 2 "CMD_KERNEL_CONFIG: $CMD_KERNEL_CONFIG"
-             ;;
-             --module-prefix=*)
-                     CMD_INSTALL_MOD_PATH=`parse_opt "$*"`
-                     print_info 2 "CMD_INSTALL_MOD_PATH: $CMD_INSTALL_MOD_PATH"
-             ;;
-             --cachedir=*)
-                     CACHE_DIR=`parse_opt "$*"`
-                     print_info 2 "CACHE_DIR: $CACHE_DIR"
-             ;;
-             --minkernpackage=*)
-                     CMD_MINKERNPACKAGE=`parse_opt "$*"`
-                     print_info 2 "MINKERNPACKAGE: $CMD_MINKERNPACKAGE"
-             ;;
-             --modulespackage=*)
-                     CMD_MODULESPACKAGE=`parse_opt "$*"`
-                     print_info 2 "MODULESPACKAGE: $CMD_MODULESPACKAGE"
-             ;;
-             --kerncache=*)
-                     CMD_KERNCACHE=`parse_opt "$*"`
-                     print_info 2 "KERNCACHE: $CMD_KERNCACHE"
-             ;;
-             --kernname=*)
-                     CMD_KERNNAME=`parse_opt "$*"`
-                     print_info 2 "KERNNAME: $CMD_KERNNAME"
-             ;;
-             --symlink)
-                     CMD_SYMLINK=1
-                     print_info 2 "CMD_SYMLINK: $CMD_SYMLINK"
-             ;;
-             --no-kernel-sources)
-                     CMD_NO_KERNEL_SOURCES=1
-                     print_info 2 "CMD_NO_KERNEL_SOURCES: $CMD_NO_KERNEL_SOURCES"
-             ;;
-             --initramfs-overlay=*)
-                     CMD_INITRAMFS_OVERLAY=`parse_opt "$*"`
-                     print_info 2 "CMD_INITRAMFS_OVERLAY: $CMD_INITRAMFS_OVERLAY"
-             ;;
-             --linuxrc=*)
-                       CMD_LINUXRC=`parse_opt "$*"`
-                       print_info 2 "CMD_LINUXRC: $CMD_LINUXRC"
-             ;;
-              --genzimage)
-                       KERNEL_MAKE_DIRECTIVE_2='zImage.initrd'
-                       KERNEL_BINARY_2='arch/ppc/boot/images/zImage.initrd.chrp'
-                       GENERATE_Z_IMAGE=1
-                       print_info 2 "GENERATE_Z_IMAGE: $GENERATE_Z_IMAGE"
-             ;;
-             --disklabel)
-                     CMD_DISKLABEL=1
-                     print_info 2 "CMD_DISKLABEL: $CMD_DISKLABEL"
-             ;;
-             --luks)
-                     CMD_LUKS=1
-                     print_info 2 "CMD_LUKS: $CMD_LUKS"
-             ;;
-             all)
-                     BUILD_KERNEL=1
-                     BUILD_MODULES=1
-                     BUILD_INITRD=1
-             ;;
-             initrd)
-                     BUILD_INITRD=1
-             ;;
-             kernel)
-                     BUILD_KERNEL=1
-                     BUILD_MODULES=1
-                     BUILD_INITRD=0
-             ;;
-             bzImage)
-                     BUILD_KERNEL=1
-                     BUILD_MODULES=0
-                     BUILD_INITRD=1
-                     CMD_NOINITRDMODULES=1
-                     print_info 2 "CMD_NOINITRDMODULES: $CMD_NOINITRDMODULES"
-             ;;
-             --help)
-                     longusage
-                     exit 1
-             ;;
-             --version)
-                     echo "${GK_V}"
-                     exit 0
-             ;;
-             *)
-                     echo "Error: Unknown option '$*'!"
-                     exit 1
-             ;;
+                       ;;
        esac
 }