From f358c0c55510e4272ace99e192b9494e64f89697 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Fri, 9 Apr 2010 13:49:48 +0000 Subject: drop now unussed cpu_reset.inc make it more clear if coreboot is building without payload. Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5395 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/arch/i386/Makefile.inc | 5 +---- src/arch/i386/lib/cpu_reset.inc | 12 ------------ 2 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 src/arch/i386/lib/cpu_reset.inc (limited to 'src/arch') diff --git a/src/arch/i386/Makefile.inc b/src/arch/i386/Makefile.inc index 8af631a73c..a403b9bab7 100644 --- a/src/arch/i386/Makefile.inc +++ b/src/arch/i386/Makefile.inc @@ -35,7 +35,7 @@ $(obj)/coreboot.rom: $(obj)/coreboot.pre $(obj)/coreboot_ram $(CBFSTOOL) $(call fi $(CBFSTOOL) $@.tmp add-stage $(obj)/coreboot_ram $(CONFIG_CBFS_PREFIX)/coreboot_ram $(CBFS_COMPRESS_FLAG) ifeq ($(CONFIG_PAYLOAD_NONE),y) - printf " PAYLOAD none (as specified by user)\n" + printf " PAYLOAD \e[1;31mnone (as specified by user)\e[0m\n" else printf " PAYLOAD $(CONFIG_FALLBACK_PAYLOAD_FILE) $(CBFS_PAYLOAD_COMPRESS_FLAG)\n" $(CBFSTOOL) $@.tmp add-payload $(CONFIG_FALLBACK_PAYLOAD_FILE) $(CONFIG_CBFS_PREFIX)/payload $(CBFS_PAYLOAD_COMPRESS_FLAG) @@ -112,9 +112,6 @@ ldscripts += $(src)/cpu/x86/32bit/entry32.lds ifeq ($(CONFIG_BIG_BOOTBLOCK),y) crt0s += $(src)/cpu/x86/16bit/reset16.inc ldscripts += $(src)/cpu/x86/16bit/reset16.lds -ifeq ($(CONFIG_ROMCC),y) -crt0s += $(src)/arch/i386/lib/cpu_reset.inc -endif crt0s += $(src)/arch/i386/lib/id.inc ldscripts += $(src)/arch/i386/lib/id.lds endif diff --git a/src/arch/i386/lib/cpu_reset.inc b/src/arch/i386/lib/cpu_reset.inc deleted file mode 100644 index fcddd6b027..0000000000 --- a/src/arch/i386/lib/cpu_reset.inc +++ /dev/null @@ -1,12 +0,0 @@ -/* -*- asm -*- */ - -jmp cpu_reset_out - -__cpu_reset: - /* set the boot_complete flag */ - movl $0xffffffff, %ebp - jmp __main - -cpu_reset_out: - - -- cgit v1.2.3