j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
Author: blueswirl Date: 2009-01-26 18:09:21 +0100 (Mon, 26 Jan 2009) New Revision: 428
Modified: openbios-devel/config/examples/sparc32_config.xml openbios-devel/include/openbios/drivers.h Log: Fix native Sparc32 compile
Modified: openbios-devel/config/examples/sparc32_config.xml =================================================================== --- openbios-devel/config/examples/sparc32_config.xml 2009-01-25 20:37:01 UTC (rev 427) +++ openbios-devel/config/examples/sparc32_config.xml 2009-01-26 17:09:21 UTC (rev 428) @@ -75,5 +75,6 @@ <option name="CONFIG_DRIVER_FLOPPY" type="boolean" value="true"/> <option name="CONFIG_DEBUG_FLOPPY" type="boolean" value="false"/> <option name="CONFIG_DRIVER_ESCC" type="boolean" value="true"/> + <option name="CONFIG_DRIVER_ESCC_SUN" type="boolean" value="true"/>
</config>
Modified: openbios-devel/include/openbios/drivers.h =================================================================== --- openbios-devel/include/openbios/drivers.h 2009-01-25 20:37:01 UTC (rev 427) +++ openbios-devel/include/openbios/drivers.h 2009-01-26 17:09:21 UTC (rev 428) @@ -16,6 +16,9 @@ #ifdef CONFIG_DRIVER_PCI /* drivers/pci.c */ int ob_pci_init(void); +#endif + +#if defined(CONFIG_DRIVER_PCI) || defined(CONFIG_DRIVER_ESCC) #ifdef CONFIG_PPC extern int is_apple(void); extern int is_oldworld(void);