diff options
-rw-r--r-- | install/base | 2 | ||||
-rw-r--r-- | mkinitcpio | 7 | ||||
-rw-r--r-- | mkinitcpio.conf | 8 |
3 files changed, 12 insertions, 5 deletions
diff --git a/install/base b/install/base index 2d594dd..170df1b 100644 --- a/install/base +++ b/install/base @@ -20,7 +20,7 @@ install () add_file "/lib/initramfs/init" "/init" add_file "${CONFIG}" "/config" - SCRIPT="base" + SCRIPT="" } help () @@ -39,11 +39,12 @@ usage () echo " -g IMAGE Generate a cpio image as IMAGE. default: no" echo " -a NAME Append to an existing filelist. default: no" echo " -q Quiet output. Default: no" + echo " -H HOOKNAME Output help for hook 'HOOKNAME'." echo " -h This message." exit 1 } -while getopts 'c:k:s:b:g:a:qh' arg; do +while getopts 'c:k:s:b:g:a:qH:h' arg; do case "$arg" in c) CONFIG="$OPTARG" ;; k) KERNELVERSION="$OPTARG" ;; @@ -52,6 +53,10 @@ while getopts 'c:k:s:b:g:a:qh' arg; do g) GENIMG="$OPTARG" ;; a) APPEND="y" FILELIST="$OPTARG" ;; q) QUIET="y" ;; + H) source "${INSTDIR}/${OPTARG}"; + echo "Help for hook '${OPTARG}':" + help + exit 0 ;; h|?) usage ;; *) echo "invalid argument '$arg'"; usage ;; esac diff --git a/mkinitcpio.conf b/mkinitcpio.conf index 07e738b..b861c17 100644 --- a/mkinitcpio.conf +++ b/mkinitcpio.conf @@ -1,5 +1,7 @@ -MODULES="8139too snd_intel8x0" -BINARIES="grep" +# vim:set ft=sh +#MODULES="piix ide_disk reiserfs" +BINARIES="" FILES="" -HOOKS="base ide filesystems-auto" +HOOKS="base pci ide filesystems" +#HOOKS="base" |