Author: stepan Date: 2009-10-24 05:55:24 +0200 (Sat, 24 Oct 2009) New Revision: 4834
Modified: trunk/coreboot-v2/src/southbridge/intel/i82801gx/Makefile.inc trunk/coreboot-v2/src/southbridge/intel/i82801xx/Makefile.inc Log: s/object-y/obj-y/ in two southbridges, since otherwise kbuild will not pick up the files Signed-off-by: Stefan Reinauer <[email protected]> Acked-by: Stefan Reinauer <[email protected]> Modified: trunk/coreboot-v2/src/southbridge/intel/i82801gx/Makefile.inc =================================================================== --- trunk/coreboot-v2/src/southbridge/intel/i82801gx/Makefile.inc 2009-10-24 03:33:44 UTC (rev 4833) +++ trunk/coreboot-v2/src/southbridge/intel/i82801gx/Makefile.inc 2009-10-24 03:55:24 UTC (rev 4834) @@ -30,8 +30,8 @@ driver-y += i82801gx_usb.o driver-y += i82801gx_usb_ehci.o -object-y += i82801gx_reset.o -object-y += i82801gx_watchdog.o +obj-y += i82801gx_reset.o +obj-y += i82801gx_watchdog.o -object-$(CONFIG_HAVE_SMI_HANDLER) += i82801gx_smi.o +obj-$(CONFIG_HAVE_SMI_HANDLER) += i82801gx_smi.o smmobj-$(CONFIG_HAVE_SMI_HANDLER) += i82801gx_smihandler.o Modified: trunk/coreboot-v2/src/southbridge/intel/i82801xx/Makefile.inc =================================================================== --- trunk/coreboot-v2/src/southbridge/intel/i82801xx/Makefile.inc 2009-10-24 03:33:44 UTC (rev 4833) +++ trunk/coreboot-v2/src/southbridge/intel/i82801xx/Makefile.inc 2009-10-24 03:55:24 UTC (rev 4834) @@ -29,8 +29,8 @@ driver-y += i82801xx_usb.o driver-y += i82801xx_usb_ehci.o -object-y += i82801xx_reset.o -object-y += i82801xx_watchdog.o +obj-y += i82801xx_reset.o +obj-y += i82801xx_watchdog.o # TODO: What about cmos_failover.c? -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

