X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/0c608fa18a54578937c9303f9b48ea318ee048f0..bc46e3f21c94305023d63d58daca55a06ec3bbd9:/target/linux/ramips/base-files/etc/uci-defaults/network diff --git a/target/linux/ramips/base-files/etc/uci-defaults/network b/target/linux/ramips/base-files/etc/uci-defaults/network index 9d464cd01..77b65cb3a 100755 --- a/target/linux/ramips/base-files/etc/uci-defaults/network +++ b/target/linux/ramips/base-files/etc/uci-defaults/network @@ -2,82 +2,72 @@ . /etc/functions.sh . /lib/ramips.sh +. /lib/functions/uci-defaults.sh if [ ! -x /usr/sbin/maccalc ]; then echo "$0: maccalc not found!" return fi -create_lan_wan() +ramips_setup_interfaces() { - uci batch <&2 - return - fi + case $board in + all0256n) + ucidef_set_interface_lan "eth0.1" + ;; - dd bs=1 skip=$seek count=6 if=$part 2>/dev/null | /usr/sbin/maccalc bin2mac -} + argus-atp52b | \ + b2c | \ + nw718 | \ + sl-r7205 | \ + w502u | \ + wr6202) + ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" + ;; -get_mac_nvram() -{ - local mtdname="$1" - local key="$2" - local part - local mac_dirty - - part=$(find_mtd_part "$mtdname") - if [ -z "$part" ]; then - echo "get_mac_nvram: partition $mtdname not found!" >&2 - return - fi - - mac_dirty=$(strings "$part" | sed -n 's/'"$key"'=//p') - # "canonicalize" mac - maccalc add "$mac_dirty" 0 -} + f5d8235-v1 | \ + f5d8235-v2 | \ + v11st-fe) + ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5t" + ucidef_add_switch_vlan "switch0" "2" "0 5t" + ;; -set_interface_mac() -{ - local iface="$1" - local mac="$2" + rt-n15 | \ + wl-351) + ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t" + ucidef_add_switch_vlan "switch0" "2" "4 5t" + ;; - uci batch <