summaryrefslogtreecommitdiffstats
path: root/install/firmware
blob: ca78b80de81bfb3f808559072d2d832c8e6e98f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
}