archboot/lib/initcpio/install/arch_tiacx_wireless

26 lines
757 B
Text
Raw Normal View History

# Created by Tobias Powalowski <tpowa@archlinux.org>
install ()
{
MODULES=""
BINARIES=""
FILES=""
SCRIPT="arch_tiacx_wireless"
# add firmware files
for i in $(find /usr/share/tiacx/ ! -type d); do
2009-05-24 15:47:17 +02:00
add_file $i
done
echo "- ARCH_TIACX_WIRELESS USAGE:" >> ${OPTIONSBOOTMESSAGE}
2008-10-20 22:39:25 +02:00
echo " Please identify the correct file(s) for your device in /usr/share/tiacx" >> ${OPTIONSBOOTMESSAGE}
echo " and copy them to /lib/firmware and reload your kernel module." >> ${OPTIONSBOOTMESSAGE}
echo " See http://acx100.sourceforge.net/wiki/Firmware for details." >> ${OPTIONSBOOTMESSAGE}
2008-12-06 19:12:19 +01:00
echo "" >> ${OPTIONSBOOTMESSAGE}
}
help ()
{
cat<<HELPEOF
This hook includes tiacx wireless on an arch boot image.
HELPEOF
}