Author: blueswirl Date: 2007-07-08 21:56:05 +0200 (Sun, 08 Jul 2007) New Revision: 160
Modified: openbios-devel/arch/sparc64/openbios.c Log: Fix nvram size, arch_init hack
Modified: openbios-devel/arch/sparc64/openbios.c =================================================================== --- openbios-devel/arch/sparc64/openbios.c 2007-07-08 19:53:20 UTC (rev 159) +++ openbios-devel/arch/sparc64/openbios.c 2007-07-08 19:56:05 UTC (rev 160) @@ -29,7 +29,10 @@ { }
-int arch_nvram_size; +int arch_nvram_size() +{ + return 8192; +}
void setup_timers() { @@ -128,5 +131,7 @@ #endif
enterforth((xt_t)PC); + arch_init(); // XXX + printk("falling off...\n"); return 0; }