mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-31 00:24:12 +00:00
fix detection of admboot based boards
SVN-Revision: 7926
This commit is contained in:
parent
9118d7fec9
commit
b1d970fd1d
@ -110,7 +110,7 @@ static unsigned long __init detect_machtype_generic(void)
|
|||||||
{
|
{
|
||||||
char *name;
|
char *name;
|
||||||
|
|
||||||
name = generic_prom_getenv("board");
|
name = generic_prom_getenv("board_name");
|
||||||
return find_machtype_byname(name);
|
return find_machtype_byname(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -228,8 +228,13 @@ static void __init prom_detect_machtype(void)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
adm5120_prom_type = ADM5120_PROM_GENERIC;
|
if (generic_prom_present()) {
|
||||||
mips_machtype = detect_machtype_generic();
|
adm5120_prom_type = ADM5120_PROM_GENERIC;
|
||||||
|
mips_machtype = detect_machtype_generic();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
mips_machtype = MACH_ADM5120_GENERIC;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO: this is an ugly hack for RouterBOARDS */
|
/* TODO: this is an ugly hack for RouterBOARDS */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user