sunxi: use sunxi_board_name when generating default network settings
Signed-off-by: Daniel Golle <daniel@makrotopia.org> Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44213 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
f75f6ead64
commit
aa2d8b3cbb
|
@ -7,27 +7,18 @@
|
||||||
|
|
||||||
touch /etc/config/network
|
touch /etc/config/network
|
||||||
|
|
||||||
|
. /lib/sunxi.sh
|
||||||
. /lib/functions/uci-defaults.sh
|
. /lib/functions/uci-defaults.sh
|
||||||
|
|
||||||
ucidef_set_interface_loopback
|
ucidef_set_interface_loopback
|
||||||
|
|
||||||
case "`cat /proc/device-tree/model`" in
|
case "$( sunxi_board_name )" in
|
||||||
"Cubietech Cubieboard" |\
|
"olinuxino-micro"*)
|
||||||
"Cubietech Cubieboard2" |\
|
|
||||||
"Lemaker bananaPi" |\
|
|
||||||
"LeMaker Banana Pi" |\
|
|
||||||
"LeMaker Banana Pro" |\
|
|
||||||
"LinkSprite pcDuino" |\
|
|
||||||
"LinkSprite pcDuino V3" |\
|
|
||||||
"LinkSprite pcDuino3" |\
|
|
||||||
"Olimex A10-OLinuXino-LIME" |\
|
|
||||||
"Olimex A20-OLinuXino-LIME" |\
|
|
||||||
"Olimex A20-Olinuxino Micro")
|
|
||||||
ucidef_set_interface_lan 'eth0'
|
|
||||||
;;
|
|
||||||
"Olimex A13-Olinuxino")
|
|
||||||
ucidef_set_interface_lan 'wlan0'
|
ucidef_set_interface_lan 'wlan0'
|
||||||
;;
|
;;
|
||||||
|
*)
|
||||||
|
ucidef_set_interface_lan 'eth0'
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
uci commit network
|
uci commit network
|
||||||
|
|
Loading…
Reference in New Issue