summaryrefslogtreecommitdiffstats
path: root/install/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'install/firmware')
-rw-r--r--install/firmware24
1 files changed, 24 insertions, 0 deletions
diff --git a/install/firmware b/install/firmware
new file mode 100644
index 0000000..ca78b80
--- /dev/null
+++ b/install/firmware
@@ -0,0 +1,24 @@
+# vim: set ft=sh:
+
+install ()
+{
+ MODULES=""
+ BINARIES=""
+ FILES=""
+ SCRIPT=""
+ if [ -e /lib/firmware ]; then
+ for i in /lib/firmware/*; do
+ add_file $i
+ done
+ 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
+}