7f707a5216
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> SVN-Revision: 43149
32 lines
562 B
Bash
32 lines
562 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2013 OpenWrt.org
|
|
#
|
|
|
|
[ -e /etc/config/network ] && exit 0
|
|
|
|
touch /etc/config/network
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
ucidef_set_interface_loopback
|
|
|
|
case "`cat /proc/device-tree/model`" in
|
|
"Cubietech Cubieboard" |\
|
|
"Cubietech Cubieboard2" |\
|
|
"Lemaker bananaPi" |\
|
|
"LinkSprite pcDuino" |\
|
|
"LinkSprite pcDuino V3" |\
|
|
"LinkSprite pcDuino3" |\
|
|
"Olimex A10-OLinuXino-LIME" |\
|
|
"Olimex A20-Olinuxino Micro")
|
|
ucidef_set_interface_lan 'eth0'
|
|
;;
|
|
"Olimex A13-Olinuxino")
|
|
ucidef_set_interface_lan 'wlan0'
|
|
;;
|
|
esac
|
|
|
|
uci commit network
|
|
|
|
exit 0
|