diff options
author | Thomas Bächler <thomas@archlinux.org> | 2010-02-07 22:27:42 +0100 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2010-02-07 22:27:42 +0100 |
commit | 7a331bf5caf4e2df4e1db1c45ce0901106671030 (patch) | |
tree | ff45c6528999d9c5d79d1048bb0361912bc33929 /install/firmware | |
parent | f566ff5aafb01fd8078630cbc5b33b1c131f4866 (diff) | |
download | mkinitcpio-7a331bf5caf4e2df4e1db1c45ce0901106671030.tar.gz mkinitcpio-7a331bf5caf4e2df4e1db1c45ce0901106671030.tar.xz |
Remove firmware hook
This hook is complete overkill: Firmware for modules is added when they specify it in modinfo.
If someone needs more firmware, FILES= in mkinitcpio.conf should always be used.
Diffstat (limited to 'install/firmware')
-rw-r--r-- | install/firmware | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/install/firmware b/install/firmware deleted file mode 100644 index d03e274..0000000 --- a/install/firmware +++ /dev/null @@ -1,22 +0,0 @@ -# vim: set ft=sh: - -install () -{ - MODULES="" - BINARIES="" - FILES="" - SCRIPT="" - if [ -d /lib/firmware ]; then - add_full_dir /lib/firmware - else - err "No firmware files found!" - fi -} - -help () -{ -cat<<HELPEOF - This hook adds the firmware files that are placed at /lib/firmware/ - to the image. -HELPEOF -} |