mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-25 06:53:21 +02:00
brcm47xx: do not read from CFE
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24267 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
2308d83efb
commit
4b7e8fd5aa
@ -398,23 +398,17 @@ static int get_router(void)
|
||||
u16 sdram_init = 0;
|
||||
u16 cardbus = 0;
|
||||
|
||||
if (nvram_getenv("boardnum", buf, sizeof(buf)) >= 0 ||
|
||||
cfe_getenv("boardnum", buf, sizeof(buf)) >= 0)
|
||||
if (nvram_getenv("boardnum", buf, sizeof(buf)) >= 0)
|
||||
boardnum = simple_strtoul(buf, NULL, 0);
|
||||
if (nvram_getenv("boardtype", buf, sizeof(buf)) >= 0 ||
|
||||
cfe_getenv("boardtype", buf, sizeof(buf)) >= 0)
|
||||
if (nvram_getenv("boardtype", buf, sizeof(buf)) >= 0)
|
||||
boardtype = simple_strtoul(buf, NULL, 0);
|
||||
if (nvram_getenv("boardrev", buf, sizeof(buf)) >= 0 ||
|
||||
cfe_getenv("boardrev", buf, sizeof(buf)) >= 0)
|
||||
if (nvram_getenv("boardrev", buf, sizeof(buf)) >= 0)
|
||||
boardrev = simple_strtoul(buf, NULL, 0);
|
||||
if (nvram_getenv("boardflags", buf, sizeof(buf)) >= 0 ||
|
||||
cfe_getenv("boardflags", buf, sizeof(buf)) >= 0)
|
||||
if (nvram_getenv("boardflags", buf, sizeof(buf)) >= 0)
|
||||
boardflags = simple_strtoul(buf, NULL, 0);
|
||||
if (nvram_getenv("sdram_init", buf, sizeof(buf)) >= 0 ||
|
||||
cfe_getenv("sdram_init", buf, sizeof(buf)) >= 0)
|
||||
if (nvram_getenv("sdram_init", buf, sizeof(buf)) >= 0)
|
||||
sdram_init = simple_strtoul(buf, NULL, 0);
|
||||
if (nvram_getenv("cardbus", buf, sizeof(buf)) >= 0 ||
|
||||
cfe_getenv("cardbus", buf, sizeof(buf)) >= 0)
|
||||
if (nvram_getenv("cardbus", buf, sizeof(buf)) >= 0)
|
||||
cardbus = simple_strtoul(buf, NULL, 0);
|
||||
|
||||
if ((boardnum == 8 || boardnum == 01)
|
||||
|
Loading…
Reference in New Issue
Block a user