1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-25 03:01:09 +02:00

[ar71xx] parse the board parameter from the command line first

Signed-off-by: Andrea Tassi <andrea.tassi at gmail.com> and WiFi(ed) - The Embedded Development Team (of Riccardo Coppola <coppola.riccardo at gmail.com>, Andrea Tassi <andrea.tassi at gmail.com> and Massimiliano Toce <massimiliano.toce at gmail.com>) 

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14482 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2009-02-12 08:08:14 +00:00
parent 28429ebb2a
commit eed3d11b5e

View File

@ -168,9 +168,9 @@ static void ar71xx_prom_init_generic(void)
ar71xx_prom_argv = (char **)fw_arg1;
ar71xx_prom_envp = (char **)fw_arg2;
p = ar71xx_prom_getenv("board");
p = ar71xx_prom_getargv("board");
if (!p)
p = ar71xx_prom_getargv("board");
p = ar71xx_prom_getenv("board");
if (p)
ar71xx_mach_type = find_board_byname(p);