Initial commit
This commit is contained in:
41
target/linux/mediatek/base-files/etc/board.d/02_network
Executable file
41
target/linux/mediatek/base-files/etc/board.d/02_network
Executable file
@@ -0,0 +1,41 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
. /lib/functions/system.sh
|
||||
|
||||
mediatek_setup_interfaces()
|
||||
{
|
||||
local board="$1"
|
||||
|
||||
case $board in
|
||||
'mediatek,mt7623a-rfb-emmc')
|
||||
ucidef_set_interface_lan "lan0 lan1 lan2 lan3"
|
||||
ucidef_set_interface_wan eth1
|
||||
;;
|
||||
'bananapi,bpi-r2'|\
|
||||
"unielec,u7623"*)
|
||||
ucidef_set_interfaces_lan_wan "lan0 lan1 lan2 lan3" "wan"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
mediatek_setup_macs()
|
||||
{
|
||||
local board="$1"
|
||||
|
||||
case $board in
|
||||
"unielec,u7623"*)
|
||||
mac=$(cat /sys/class/net/wan/address)
|
||||
ucidef_set_interface_macaddr "wan" $mac
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
board_config_update
|
||||
board=$(board_name)
|
||||
mediatek_setup_interfaces $board
|
||||
mediatek_setup_macs $board
|
||||
board_config_flush
|
||||
|
||||
exit 0
|
||||
3
target/linux/mediatek/base-files/etc/inittab
Normal file
3
target/linux/mediatek/base-files/etc/inittab
Normal file
@@ -0,0 +1,3 @@
|
||||
::sysinit:/etc/init.d/rcS S boot
|
||||
::shutdown:/etc/init.d/rcS K shutdown
|
||||
::askconsole:/usr/libexec/login.sh
|
||||
19
target/linux/mediatek/base-files/etc/uci-defaults/99-net-ps
Executable file
19
target/linux/mediatek/base-files/etc/uci-defaults/99-net-ps
Executable file
@@ -0,0 +1,19 @@
|
||||
uci set network.globals='globals'
|
||||
uci set network.globals.default_rps_val=14
|
||||
uci set network.globals.default_rps_flow_cnt=256
|
||||
uci set network.globals.default_xps_val=14
|
||||
uci set network.globals.default_ps=1
|
||||
uci set network.eth0=device
|
||||
uci set network.eth0.name=eth0
|
||||
uci set network.lan0=device
|
||||
uci set network.lan0.name=lan0
|
||||
uci set network.lan1=device
|
||||
uci set network.lan1.name=lan1
|
||||
uci set network.lan2=device
|
||||
uci set network.lan2.name=lan2
|
||||
uci set network.lan3=device
|
||||
uci set network.lan3.name=lan3
|
||||
|
||||
uci commit network
|
||||
|
||||
exit 0
|
||||
Reference in New Issue
Block a user