mirror of
https://github.com/hanwckf/immortalwrt-mt798x.git
synced 2025-01-09 18:59:13 +08:00
base-files: split out preinit interface config
Move preinit interface and ip config to its own function to allow calling it from more than one place. Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
This commit is contained in:
parent
780ccbf9f1
commit
0f1ae840c9
@ -2,6 +2,13 @@
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
# Copyright (C) 2010 Vertical Communications
|
||||
|
||||
preinit_ip_config() {
|
||||
grep -q "$1" /proc/net/dev || return
|
||||
|
||||
ip link set dev $1 up
|
||||
ip -4 address add $pi_ip/$pi_netmask broadcast $pi_broadcast dev $1
|
||||
}
|
||||
|
||||
preinit_ip() {
|
||||
# if the preinit interface isn't specified and ifname is set in
|
||||
# preinit.arch use that interface
|
||||
@ -9,10 +16,9 @@ preinit_ip() {
|
||||
pi_ifname=$ifname
|
||||
fi
|
||||
|
||||
[ -n "$pi_ifname" ] && grep -q "$pi_ifname" /proc/net/dev && {
|
||||
ip link set dev $pi_ifname up
|
||||
ip -4 address add $pi_ip/$pi_netmask broadcast $pi_broadcast dev $pi_ifname
|
||||
}
|
||||
if [ -n "$pi_ifname" ]; then
|
||||
preinit_ip_config $pi_ifname
|
||||
fi
|
||||
}
|
||||
|
||||
preinit_ip_deconfig() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user