openwrtv4/target/linux/sunxi/base-files/etc/uci-defaults/02_network
Zoltan Herpai 1e0c22507a sunxi: bump kernel to 3.18 - refresh patches - add bananapro, cubietruck, mele_m9 support
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>

SVN-Revision: 43900
2015-01-09 19:35:14 +00:00

35 lines
645 B
Bash

#!/bin/sh
#
# Copyright (C) 2013-2014 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" |\
"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'
;;
esac
uci commit network
exit 0