Author: laurent Date: 2009-09-19 01:32:59 +0200 (Sat, 19 Sep 2009) New Revision: 580
Modified: trunk/openbios-devel/modules/init.c Log: call elf_loader_init() only for PPC
Modified: trunk/openbios-devel/modules/init.c =================================================================== --- trunk/openbios-devel/modules/init.c 2009-09-18 23:01:28 UTC (rev 579) +++ trunk/openbios-devel/modules/init.c 2009-09-18 23:32:59 UTC (rev 580) @@ -42,5 +42,7 @@ #ifdef CONFIG_SUN_PARTS sunparts_init(); #endif +#ifdef CONFIG_PPC elf_loader_init(); +#endif }