# 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
}
