mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
kirkwood: use uci-defaults to configure different boards
Signed-off-by: Luka Perkov <openwrt@lukaperkov.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31990 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
42
target/linux/kirkwood/base-files/etc/uci-defaults/network
Normal file
42
target/linux/kirkwood/base-files/etc/uci-defaults/network
Normal file
@@ -0,0 +1,42 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2012 OpenWrt.org
|
||||
#
|
||||
|
||||
[ -e /etc/config/network ] && exit 0
|
||||
|
||||
set_lan_dhcp() {
|
||||
local ifname=$1
|
||||
uci batch <<EOF
|
||||
set network.lan='interface'
|
||||
set network.lan.ifname='$ifname'
|
||||
set network.lan.proto='dhcp'
|
||||
EOF
|
||||
}
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
. /lib/kirkwood.sh
|
||||
|
||||
touch /etc/config/network
|
||||
|
||||
ucidef_set_interface_loopback
|
||||
|
||||
hardware=$(kirkwood_hardware_name)
|
||||
|
||||
case "$hardware" in
|
||||
"Seagate FreeAgent DockStar")
|
||||
set_lan_dhcp "eth0"
|
||||
;;
|
||||
|
||||
"RaidSonic ICY BOX IB-NAS6210")
|
||||
set_lan_dhcp "eth0"
|
||||
;;
|
||||
|
||||
*)
|
||||
ucidef_set_interface_lan "eth0"
|
||||
;;
|
||||
esac
|
||||
|
||||
uci commit network
|
||||
|
||||
exit 0
|
||||
Reference in New Issue
Block a user