You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
339 B
Bash

#!/bin/sh
#
# Copyright (C) 2013 OpenWrt.org
#
[ -e /etc/config/network ] && exit 0
. /lib/functions/uci-defaults.sh
touch /etc/config/network
ucidef_set_interface_loopback
board=$(cat /proc/device-tree/model)
case "$board" in
"Wandboard i.MX6 Dual Lite Board")
ucidef_set_interface_wan 'eth0'
;;
esac
uci commit network
exit 0