archboot/usr/lib/initcpio/install/archboot_net_common
2022-12-07 12:27:55 +01:00

18 lines
597 B
Bash

#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
add_checked_modules -f 'nfp' -f 'liquidio' -f 'mellanox' -f 'wireless' -f 'bnx2x' -f 'bna' -f 'softing_cs' -f 'qed' '/drivers/net/'
map add_binary route ip
# start dhcpcd on startup
add_symlink "/etc/systemd/system/multi-user.target.wants/systemd-networkd.service" "/usr/lib/systemd/system/systemd-networkd.service"
add_file /usr/share/archboot/net/etc/system/network/10-wired-auto-dhcp.network
}
help ()
{
cat<<HELPEOF
This hook includes the basic network on an archboot image.
HELPEOF
}