SVN: geninitrd/trunk/geninitrd
czarny
czarny at pld-linux.org
Thu Aug 30 12:00:53 CEST 2007
Author: czarny
Date: Thu Aug 30 12:00:52 2007
New Revision: 8702
Modified:
geninitrd/trunk/geninitrd
Log:
- --with/without options for bootsplash,fbsplash,suspend and suspend2
- ready for kernel-desktop
Modified: geninitrd/trunk/geninitrd
==============================================================================
--- geninitrd/trunk/geninitrd (original)
+++ geninitrd/trunk/geninitrd Thu Aug 30 12:00:52 2007
@@ -74,9 +74,12 @@
echo " [--with=<module>] [--image-version] [--fstab=<fstab>] [--nocompress]"
echo " [--initrdfs=rom|initramfs|ext2|cram] [--modules-conf=<modules.conf>]"
echo " [--with-raidstart] [--without-raidstart] [--with-insmod-static]"
- echo " [--without-bootsplash] [--without-fbsplash]"
+ echo " [--with-bootsplash] [--without-bootsplash]"
+ echo " [ --with-fbsplash] [--without-fbsplash]"
echo " [--lvmtoolsversion=1|2] [--with-udev] [--without-udev]"
- echo " [--without-suspend] [--without-suspend2] [--without-dmraid]"
+ echo " [--with-suspend] [--without-suspend]"
+ echo " [--with-suspend2] [--without-suspend2]"
+ echo " [--without-dmraid]"
echo " <initrd-image> <kernel-version>"
echo ""
echo "example:"
@@ -739,17 +742,29 @@
--without-insmod-static)
USEINSMODSTATIC="no"
;;
+ --with-bootsplash)
+ BOOT_SPLASH="yes"
+ ;;
--without-bootsplash)
BOOT_SPLASH="no"
;;
+ --with-fbsplash)
+ FB_SPLASH="yes"
+ ;;
--without-fbsplash)
FB_SPLASH="no"
;;
+ --with-suspend)
+ USE_SUSPEND="yes"
+ ;;
--without-suspend)
- USE_SUSPEND="no";
+ USE_SUSPEND="no"
+ ;;
+ --with-suspend2)
+ USE_SUSPEND2="yes"
;;
--without-suspend2)
- USE_SUSPEND2="no";
+ USE_SUSPEND2="no"
;;
--lvmtoolsversion=|--lvmversion=)
LVMTOOLSVERSION="`echo $1 | awk -F= '{print $2;}'`"
More information about the pld-cvs-commit
mailing list