X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/437d48bef2502dc85ef8f53fa51ef08c84d9e204..6500719d9cd1b9bb7cf1cff5051c6396886b4537:/obsolete-buildroot/sources/openwrt/root/etc/nvram.overrides?ds=sidebyside diff --git a/obsolete-buildroot/sources/openwrt/root/etc/nvram.overrides b/obsolete-buildroot/sources/openwrt/root/etc/nvram.overrides index f59e78060..e3a3217ff 100644 --- a/obsolete-buildroot/sources/openwrt/root/etc/nvram.overrides +++ b/obsolete-buildroot/sources/openwrt/root/etc/nvram.overrides @@ -1,53 +1,60 @@ # NVRAM overrides -# This file handles the NVRAM quirks of various hardware. # +# This file handles the NVRAM quirks of various hardware. # THIS FILE IS NOT A REPLACEMENT FOR NVRAM -# linksys bug has lan doing dhcp; force static -lan_proto="static" +# linksys bug; remove when not using static configuration for lan +NVRAM_lan_proto="static" -# hacks for 1.x hardware +# hacks for wrt54g 1.x hardware [ "$(nvram get boardnum)" = "42" ] && \ [ "$(nvram get boardtype)" = "bcm94710dev" ] && { - debug "### 1.x hardware hack ###" - vlan1hwname="et0" - vlan2hwname="et0" - - # we remap old device names to new - # it's recommended that you continue to - # use the old names to preserve backwards - # compatibility + + # remap eth0 => vlan2, eth1 => vlan1 + # for all *_ifname(s) + + debug "### wrt54g 1.x hack ###" + NVRAM_vlan1hwname="et0" + NVRAM_vlan2hwname="et0" + remap () { - eval $1=\"$(nvram_get $1 | awk 'gsub("eth0","vlan2") gsub("eth1","vlan1")')\" + eval NVRAM_$1=\"$(nvram get $1 | awk 'gsub("eth0","vlan2") gsub("eth1","vlan1")')\" } - remap lan_ifname - remap lan_ifnames - remap wifi_ifname - remap wifi_ifnames - remap wan_ifname - remap wan_ifnames - remap pppoe_ifname + for type in lan wifi wan pppoe + do + remap ${type}_ifname + remap ${type}_ifnames + done +} + +# hacks for wap54g hardware +[ "$(nvram get boardnum)" = "2" ] || \ +[ "$(nvram get boardnum)" = "1024" ] && { + debug "### wap54g hack ###" + NVRAM_wan_ifname="none" } -[ -z "$(nvram_get lan_ifname)" ] && { - lan_ifname="br0" - lan_ifnames="vlan0 vlan2 eth1 eth2 eth3" +# defaults if lan_ifname is missing +[ -z "$(nvram get lan_ifname)" ] && { + NVRAM_lan_ifname="br0" + NVRAM_lan_ifnames="vlan0 vlan2 eth1 eth2 eth3" } -[ -z "$(nvram_get wan_ifname)" ] && { - wan_ifname="vlan1" - wan_proto="dhcp" +# defaults if wan_ifname is missing +[ -z "$(nvram get wan_ifname)" ] && { + NVRAM_wan_ifname="vlan1" + NVRAM_wan_proto="dhcp" } # failsafe if reset is held [ "$FAILSAFE" = "true" ] && { echo "### FAILSAFE MODE ####" - lan_ifname="br0" - lan_ifnames="vlan0 vlan2 eth1 eth2 eth3" - lan_ipaddr="192.168.1.1" - lan_netmask="255.255.255.0" - lan_hwaddr="00:0B:AD:0A:DD:00" - wan_ifname="none" - wifi_ifname="none" + NVRAM_lan_ifname="br0" + NVRAM_lan_ifnames="vlan0 vlan2 eth1 eth2 eth3" + NVRAM_lan_ipaddr="192.168.1.1" + NVRAM_lan_netmask="255.255.255.0" + NVRAM_lan_hwaddr="00:0B:AD:0A:DD:00" + NVRAM_wan_ifname="none" + NVRAM_wifi_ifname="none" }