archboot/usr/lib/initcpio/install/archboot_net_common
2023-05-01 17:13:29 +02:00

20 lines
591 B
Bash

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0-only
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
add_all_modules -f '/net/wireless/|/net/ieee80211/|/net/mac80211/' '/drivers/net/ethernet|/kernel/net/'
map add_binary ip getent ping wget
# start dhcpcd on startup
add_file "/usr/share/archboot/net/etc/systemd/network/10-wired-auto-dhcp.network" "/etc/systemd/network/10-wired-auto-dhcp.network"
add_file /etc/wgetrc
}
help ()
{
cat<<HELPEOF
This hook includes the basic network on an archboot image.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et: