Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 14922
b: refs/heads/master
c: ecd5a73
h: refs/heads/master
v: v3
  • Loading branch information
Ralf Baechle committed Dec 1, 2005
1 parent cf2efc5 commit 5a56b88
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: dea91002d45e4f0fe83768703288e1cde917371c
refs/heads/master: ecd5a739048b4d94e4ae3545196eb752d6776c97
12 changes: 11 additions & 1 deletion trunk/arch/mips/au1000/db1x00/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,17 @@ void __init prom_init(void)
prom_envp = (char **) fw_arg2;

mips_machgroup = MACH_GROUP_ALCHEMY;
mips_machtype = MACH_DB1000; /* set the platform # */

/* Set the platform # */
#if defined (CONFIG_MIPS_DB1550)
mips_machtype = MACH_DB1550;
#elif defined (CONFIG_MIPS_DB1500)
mips_machtype = MACH_DB1500;
#elif defined (CONFIG_MIPS_DB1100)
mips_machtype = MACH_DB1100;
#else
mips_machtype = MACH_DB1000;
#endif

prom_init_cmdline();

Expand Down

0 comments on commit 5a56b88

Please sign in to comment.