archboot/install/arch_net

25 lines
658 B
Text
Raw Normal View History

2007-02-22 23:46:50 +01:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
install ()
{
MODULES=" $(checked_modules "/drivers/net/") "
2007-10-22 07:56:38 +02:00
BINARIES="ifconfig ping ping6 route nslookup telnet ssh netcfg"
2007-02-22 23:46:50 +01:00
FILES=""
SCRIPT=""
add_file "/sbin/dhcpcd"
add_file "/sbin/ifenslave"
add_file "/usr/sbin/brctl"
add_file "/etc/rc.d/network"
add_file "/etc/archboot/etc/conf.d/dhcpcd_conf.d" "/etc/conf.d/dhcpcd"
add_file "/etc/archboot/etc/conf.d/bonding_conf.d" "/etc/conf.d/bonding"
add_file "/etc/archboot/etc/conf.d/bridges_conf.d" "/etc/conf.d/bridges"
}
help ()
{
cat<<HELPEOF
This hook includes the network on an arch boot image.
HELPEOF
}