diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-02-25 21:50:26 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-02-25 21:50:26 +0000 |
commit | 31b0bea940e73583d66435383cceed58e43e477a (patch) | |
tree | 1bdc68bc9d2df1388332766bd2cd22bfc6dd84d0 /src/arch/i386/Makefile.inc | |
parent | 2e694eda333df2e9a2855d27b0548ec255b9e1a3 (diff) |
Move the ldscripts logic to src/arch/i386/Makefile.inc
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Joseph Smith <joe@settoplinux.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5164 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/i386/Makefile.inc')
-rw-r--r-- | src/arch/i386/Makefile.inc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/arch/i386/Makefile.inc b/src/arch/i386/Makefile.inc index 2b17671ee1..af9e4b17d4 100644 --- a/src/arch/i386/Makefile.inc +++ b/src/arch/i386/Makefile.inc @@ -63,16 +63,23 @@ $(obj)/coreboot.a: $(objs) # done crt0s := +ldscripts := +ldscripts += $(src)/arch/i386/init/ldscript_fallback_cbfs.lb +ldscripts += $(src)/arch/i386/lib/failover.lds ifeq ($(CONFIG_BIG_BOOTBLOCK),y) crt0s += $(src)/cpu/x86/16bit/entry16.inc +ldscripts += $(src)/cpu/x86/16bit/entry16.lds endif crt0s += $(src)/cpu/x86/32bit/entry32.inc +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 crt0s += $(src)/cpu/x86/fpu_enable.inc @@ -125,6 +132,7 @@ endif # who else could use this? ifeq ($(CONFIG_BOARD_TYAN_S2735),y) crt0s += $(src)/cpu/x86/car/cache_as_ram.inc +ldscripts += $(src)/cpu/x86/car/cache_as_ram.lds endif ifeq ($(CONFIG_BIG_BOOTBLOCK),y) @@ -141,18 +149,26 @@ ifeq ($(CONFIG_MMX),y) crt0s += $(src)/cpu/x86/mmx_disable.inc endif +ifeq ($(CONFIG_AP_CODE_IN_CAR),y) +ldscripts += $(src)/arch/i386/init/ldscript_apc.lb +endif + ifeq ($(CONFIG_BIG_BOOTBLOCK),y) ifeq ($(CONFIG_SOUTHBRIDGE_NVIDIA_CK804),y) crt0s += $(src)/southbridge/nvidia/ck804/romstrap.inc +ldscripts += $(src)/southbridge/nvidia/ck804/romstrap.lds endif ifeq ($(CONFIG_SOUTHBRIDGE_NVIDIA_MCP55),y) crt0s += $(src)/southbridge/nvidia/mcp55/romstrap.inc +ldscripts += $(src)/southbridge/nvidia/mcp55/romstrap.lds endif ifeq ($(CONFIG_SOUTHBRIDGE_VIA_K8T890),y) crt0s += $(src)/southbridge/via/k8t890/romstrap.inc +ldscripts += $(src)/southbridge/via/k8t890/romstrap.lds endif ifeq ($(CONFIG_NORTHBRIDGE_VIA_VX800),y) crt0s += $(src)/northbridge/via/vx800/romstrap.inc +ldscripts += $(src)/northbridge/via/vx800/romstrap.lds endif endif |