mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 21:22:48 +02:00
[package] broadcom-diag: add missing brackets breakign the detection logic (#10836)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30610 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
e01799a285
commit
7adfa6c810
@ -1142,16 +1142,18 @@ static struct platform_t __init *platform_detect(void)
|
||||
return &platforms[WRTSL54GS];
|
||||
|
||||
if (!strcmp(boardtype, "0x0472")) {
|
||||
if(!strcmp(getvar("boot_hw_model"), "WRT150N"))
|
||||
if(!strcmp(getvar("boot_hw_model"), "WRT150N")) {
|
||||
if(!strcmp(getvar("boot_hw_ver"), "1"))
|
||||
return &platforms[WRT150NV1];
|
||||
else if(!strcmp(getvar("boot_hw_ver"), "1.1"))
|
||||
return &platforms[WRT150NV11];
|
||||
else if(!strcmp(getvar("boot_hw_model"), "WRT160N"))
|
||||
}
|
||||
else if(!strcmp(getvar("boot_hw_model"), "WRT160N")) {
|
||||
if(!strcmp(getvar("boot_hw_ver"), "1.0"))
|
||||
return &platforms[WRT160NV1];
|
||||
else if(!strcmp(getvar("boot_hw_ver"), "3.0"))
|
||||
return &platforms[WRT160NV3];
|
||||
}
|
||||
}
|
||||
|
||||
/* default to WRT54G */
|
||||
|
Loading…
Reference in New Issue
Block a user