archboot/usr/lib/initcpio/install/arch_speedtouch

23 lines
464 B
Text
Raw Normal View History

2012-05-27 12:15:43 +02:00
#!/bin/bash
2011-08-30 15:39:36 +02:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
2013-05-22 11:44:11 +02:00
apps="modem_run pppoa2 pppoa3"
2012-05-27 12:15:43 +02:00
for i in $apps; do
add_binary "$i"
done
2011-08-30 15:39:36 +02:00
add_dir "/etc/speedtouch/"
add_file "/usr/bin/speedtouch-setup"
add_file "/usr/bin/speedtouch-start"
add_file "/usr/bin/speedtouch-stop"
add_file "/usr/share/speedtouch/boot.v123.bin"
}
help ()
{
cat<<HELPEOF
This hook includes speedtouch on an arch boot image.
HELPEOF
}