mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-25 03:01:09 +02:00
[ar71xx] fix AP83 boot failure
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13356 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
61f88f1d0a
commit
878a707c0f
@ -46,6 +46,9 @@ static struct board_rec boards[] __initdata = {
|
||||
}, {
|
||||
.name = "AW-NR580",
|
||||
.mach_type = MACH_AR71XX_AW_NR580,
|
||||
}, {
|
||||
.name = "AP83",
|
||||
.mach_type = MACH_AR71XX_AP83,
|
||||
}
|
||||
};
|
||||
|
||||
@ -59,6 +62,10 @@ static __init char *ar71xx_prom_getargv(const char *name)
|
||||
|
||||
for (i = 0; i < ar71xx_prom_argc; i++) {
|
||||
char *argv = ar71xx_prom_argv[i];
|
||||
|
||||
if (!argv)
|
||||
continue;
|
||||
|
||||
if (strncmp(name, argv, len) == 0 && (argv)[len] == '=')
|
||||
return argv + len + 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user