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