archboot/usr/lib/initcpio/install/arch_isdn

26 lines
662 B
Text
Raw Normal View History

#!/usr/bin/env bash
2008-12-06 19:12:19 +01:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2008-12-06 19:12:19 +01:00
{
2012-05-27 11:47:05 +02:00
add_checked_modules '/drivers/isdn/'
2013-05-22 09:53:29 +02:00
apps="hisaxctrl icnctrl imon imontty ipppd ipppstats isdnctrl isdnlog mkzonedb isdnconf \
isdnrate isdnrep capiinfo rcapid capiinit avmcapictrl"
2012-05-27 11:47:05 +02:00
for i in $apps; do
add_binary "$i"
done
2012-08-15 22:05:15 +02:00
add_file "/etc/isdn/callerid.conf"
add_file "/etc/isdn/isdn.conf"
add_file "/etc/isdn/isdnlog.isdnctrl0.options"
add_file "/etc/isdn/isdnlog.users"
add_file "/etc/isdn/rate.conf"
add_file "/etc/isdn/stop"
2008-12-06 19:12:19 +01:00
}
help ()
{
cat<<HELPEOF
This hook includes the isdn subsystem on an arch boot image.
HELPEOF
}