summaryrefslogtreecommitdiffstats
path: root/install/udev
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2011-07-11 04:44:04 +0200
committerDave Reisner <dreisner@archlinux.org>2011-09-27 12:18:04 +0200
commit1ce14002289b676c54729e9d9dfaa7f6fd58024b (patch)
tree91e887e78f744c81e09e14e37cdd1863b27ef369 /install/udev
parent1793ad71472d85912dd258cc6730e20a46dbbb17 (diff)
downloadmkinitcpio-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/udev')
-rw-r--r--install/udev33
1 files changed, 16 insertions, 17 deletions
diff --git a/install/udev b/install/udev
index 74c9b5e..6d0804b 100644
--- a/install/udev
+++ b/install/udev
@@ -1,27 +1,26 @@
-# vim:set ft=sh:
+#!/bin/bash
-build()
-{
- MODULES=""
- BINARIES=""
- FILES=" /etc/udev/udev.conf"
+build() {
+ FILES="/etc/udev/udev.conf"
SCRIPT="udev"
+
add_binary /sbin/udevd
add_binary /sbin/udevadm
- for rules in 50-firmware.rules 50-udev-default.rules 60-persistent-storage.rules 80-drivers.rules; do
- add_file /lib/udev/rules.d/${rules}
+
+ for rules in 50-{firmware,udev-default}.rules 60-persistent-storage.rules 80-drivers.rules; do
+ add_file "/lib/udev/rules.d/$rules"
done
- for tool in firmware ata_id path_id scsi_id usb_id; do
- add_file /lib/udev/${tool}
+ for tool in firmware {ata,path,scsi,usb}_id; do
+ add_file "/lib/udev/$tool"
done
}
-help ()
-{
-cat <<HELPEOF
- This hook will use udev to create your root device node
- and detect the needed modules for your root device. It
- is also required for firmware loading in initramfs.
- It is recommended to use this hook.
+help() {
+ cat <<HELPEOF
+This hook will use udev to create your root device node and detect the needed
+modules for your root device. It is also required for firmware loading in
+initramfs. It is recommended to use this hook.
HELPEOF
}
+
+# vim: set ft=sh ts=4 sw=4 et: