diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-07-11 04:44:04 +0200 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2011-09-27 12:18:04 +0200 |
commit | 1ce14002289b676c54729e9d9dfaa7f6fd58024b (patch) | |
tree | 91e887e78f744c81e09e14e37cdd1863b27ef369 /install/memdisk | |
parent | 1793ad71472d85912dd258cc6730e20a46dbbb17 (diff) | |
download | mkinitcpio-1ce14002289b676c54729e9d9dfaa7f6fd58024b.tar.gz mkinitcpio-1ce14002289b676c54729e9d9dfaa7f6fd58024b.tar.xz |
cleanup and bashify install hooks
No logical code changes -- this is purely a syntactical cleanup and
standardization across the build hooks along with ensuring that help
messages are wrapped to 80 columns or less. All hooks get the same
treatment, adhering to the following style:
#!/bin/bash
build() {
COMMANDS
}
help() {
cat <<HELPEOF
This is a help message.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et:
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'install/memdisk')
-rw-r--r-- | install/memdisk | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/install/memdisk b/install/memdisk index 69c996f..ec698fc 100644 --- a/install/memdisk +++ b/install/memdisk @@ -1,20 +1,19 @@ -# vim:set ft=sh: +#!/bin/bash -build() -{ +build() { MODULES="phram mtdblock" BINARIES="/usr/bin/memdiskfind" - FILES="" SCRIPT="memdisk" add_file /lib/initcpio/udev/01-memdisk.rules /lib/udev/rules.d/01-memdisk.rules } -help () -{ -cat <<HELPEOF - This hook detects a virtual disk created by the memdisk - tool (http://syslinux.zytor.com/wiki/index.php/MEMDISK). +help() { + cat <<HELPEOF +This hook detects a virtual disk created by the memdisk tool +(http://syslinux.zytor.com/wiki/index.php/MEMDISK). - It requires memdiskfind from syslinux 4.00 or newer. +It requires memdiskfind from syslinux 4.00 or newer. HELPEOF } + +# vim: set ft=sh ts=4 sw=4 et: |