X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/0c608fa18a54578937c9303f9b48ea318ee048f0..88c727bd85b9fb066187a015f11f089aeb9bfc55:/target/linux/ramips/base-files/etc/uci-defaults/network?ds=inline diff --git a/target/linux/ramips/base-files/etc/uci-defaults/network b/target/linux/ramips/base-files/etc/uci-defaults/network index 9d464cd01..137f8c3f4 100755 --- a/target/linux/ramips/base-files/etc/uci-defaults/network +++ b/target/linux/ramips/base-files/etc/uci-defaults/network @@ -2,82 +2,90 @@ . /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) + ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" + ucidef_add_switch "rtl8366s" "1" "1" + ucidef_add_switch_vlan "rtl8366s" "1" "1 2 3 4 5t" + ucidef_add_switch_vlan "rtl8366s" "2" "0 5t" + ;; -set_interface_mac() -{ - local iface="$1" - local mac="$2" + f5d8235-v2) + ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" + ucidef_add_switch "rtl8366rb" "1" "1" + ucidef_add_switch_vlan "rtl8366rb" "1" "1 2 3 4 5t" + ucidef_add_switch_vlan "rtl8366rb" "2" "0 5t" + ;; - uci batch <