Root/package/nvram/files/nvram.init

1#!/bin/sh /etc/rc.common
2# NVRAM setup
3#
4# This file handles the NVRAM quirks of various hardware.
5
6START=02
7alias debug=${DEBUG:-:}
8
9nvram_default() {
10    [ -z "$(nvram get $1)" ] && nvram set "$1=$2"
11}
12
13nvram_set() { # for the linksys fixup part
14    [ "$(nvram get "$1")" = "$2" -a "$2" != "" ] || {
15        COMMIT=1
16        /usr/sbin/nvram set "$1=$2"
17    }
18}
19
20fixup_linksys() {
21    # work around braindead CFE defaults in linksys routers
22    boardtype=$(nvram get boardtype)
23    boardnum=$(nvram get boardnum)
24    boardflags=$(($(nvram get boardflags)))
25    adm_switch="$(( ($boardflags & 0x80) >> 7 ))"
26
27    [ -n "$(nvram get vxkilled)" ] && boardtype=0 # don't mess with the ram settings on the hacked cfe
28    case "$(( $boardtype ))" in
29        "1800") #0x708
30            if [ "$adm_switch" = 0 ]; then
31                nvram_set sdram_init "$(printf 0x%04x $(( $(/usr/sbin/nvram get sdram_init) | 0x0100 )))"
32                [ "$COMMIT" = 1 ] && {
33                    nvram_set clkfreq 216
34                    nvram_set sdram_ncdl 0x0
35                    nvram_set pa0itssit 62
36                    nvram_set pa0b0 0x15eb
37                    nvram_set pa0b1 0xfa82
38                    nvram_set pa0b2 0xfe66
39                    nvram_set pa0maxpwr 0x4e
40                }
41            fi
42        ;;
43        "1127") #0x467
44            nvram_set sdram_init "$(printf 0x%04x $(( $(/usr/sbin/nvram get sdram_init) | 0x0100 )))"
45            [ "$COMMIT" = 1 ] && {
46                nvram_set sdram_ncdl 0x0
47                nvram_set pa0itssit 62
48                nvram_set pa0b0 0x168b
49                nvram_set pa0b1 0xfabf
50                nvram_set pa0b2 0xfeaf
51                nvram_set pa0maxpwr 0x4e
52            }
53        ;;
54        "1071") #0x042f
55            # do sanity check first! max 0x0011 = 128mb
56            SDRAM_INIT=$(printf %d $(/usr/sbin/nvram get sdram_init))
57            [ "$SDRAM_INIT" -lt "9" -o "$SDRAM_INIT" -gt "17" ] && {
58                # set this to default: 0x09 only if value is invaild like 16MB on Asus WL-500GP
59                echo "sdram_init is invaild: $(printf 0x%04x $SDRAM_INIT), force to default!"
60                nvram_set sdram_init 0x0009
61            }
62            [ "$COMMIT" = 1 ] && {
63                nvram_set sdram_ncdl 0x0
64            }
65    esac
66}
67
68start() {
69    # Don't do any fixups on the WGT634U
70    [ "$(cat /proc/diag/model)" = "Netgear WGT634U" ] && return
71
72    fixup_linksys
73
74    # OFDM Power Offset is set incorrectly on many boards.
75    # Setting it to 0 will increase the tx power to normal levels.
76    nvram_set opo 0x0
77
78    [ "$(nvram get il0macaddr)" = "00:90:4c:5f:00:2a" ] && {
79        # if default wifi mac, set two higher than the lan mac
80        nvram set il0macaddr=$(nvram get et0macaddr|
81        awk '{OFS=FS=":";for(x=7,y=2;--x;){$x=sprintf("%02x",(y+="0x"$x)%256);y/=256}print}')
82    }
83
84    [ "$(nvram get et0macaddr)" = "00:90:4c:c0:00:08" ] && {
85        # OvisLink WL-1600GL mac workaround
86        nvram set et0macaddr=$(hexdump -n 6 -s 130976 -e '5/1 "%02x:" "%02x" ' /dev/mtd/0)
87        nvram set il0macaddr=$(nvram get et0macaddr|
88        awk '{OFS=FS=":";for(x=7,y=2;--x;){$x=sprintf("%02x",(y+="0x"$x)%256);y/=256}print}')
89    }
90
91    [ "$COMMIT" = "1" ] && nvram commit
92}
93

Archive Download this file



interactive