Update initrd-network.sh

This commit is contained in:
akarin233 2025-02-05 15:27:06 +08:00 committed by GitHub
parent 527ced19ea
commit 0207c20c93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,6 +8,7 @@ ipv4_gateway=$3
ipv6_addr=$4
ipv6_gateway=$5
is_in_china=$6
static=$7
DHCP_TIMEOUT=15
DNS_FILE_TIMEOUT=5
@ -443,6 +444,7 @@ netconf="/dev/netconf/$ethx"
mkdir -p "$netconf"
$dhcpv4 && echo 1 >"$netconf/dhcpv4" || echo 0 >"$netconf/dhcpv4"
$should_disable_ra_slaac && echo 1 >"$netconf/should_disable_ra_slaac" || echo 0 >"$netconf/should_disable_ra_slaac"
[ "$static" = 1 ] && echo 1 >"$netconf/force_static" || echo 0 >"$netconf/force_static"
$is_in_china && echo 1 >"$netconf/is_in_china" || echo 0 >"$netconf/is_in_china"
echo "$ethx" >"$netconf/ethx"
echo "$mac_addr" >"$netconf/mac_addr"