summaryrefslogtreecommitdiffstats
path: root/root/etc/nvram.overrides
blob: e155df15a26a04c0c340ff6c297797af5a7c83f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# NVRAM overrides
# This file handles the NVRAM quirks of various hardware

# linksys bug has lan doing dhcp; force static
lan_proto="static"

# 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"
}

# hacks for 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 () {
    eval $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
}

[ -z "$(nvram_get lan_ifname)" ] && {
  lan_ifname="br0"
  lan_ifnames="vlan0 vlan2 eth1 eth2 eth3"
}

[ -z "$(nvram_get wan_ifname)" ] && {
   wan_ifname="vlan1"
   wan_proto="dhcp"
}