diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-04 23:10:28 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-04 23:10:28 +0200 |
commit | 9b880bd4d86dc568221107516e6d4728c5f93a4e (patch) | |
tree | f802140e9fde0fff54cf0eb246fd35c931fc0b0f /cpu | |
parent | 1820d4c73b78ebe5d08921b0b6249c6f72e45215 (diff) | |
download | u-boot-imx-9b880bd4d86dc568221107516e6d4728c5f93a4e.zip u-boot-imx-9b880bd4d86dc568221107516e6d4728c5f93a4e.tar.gz u-boot-imx-9b880bd4d86dc568221107516e6d4728c5f93a4e.tar.bz2 |
Update ARM Integrator boards:
Correct addessing errors in platform files.
Split off common core module data from Integrator header files to
include/armcoremodule.h.
Patch by Peter Pearse, 04 Oct 2005
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/arm1136/config.mk | 1 | ||||
-rw-r--r-- | cpu/arm720t/config.mk | 1 | ||||
-rw-r--r-- | cpu/arm920t/config.mk | 1 | ||||
-rw-r--r-- | cpu/arm925t/config.mk | 1 | ||||
-rw-r--r-- | cpu/arm926ejs/config.mk | 1 | ||||
-rw-r--r-- | cpu/ixp/config.mk | 1 | ||||
-rw-r--r-- | cpu/lh7a40x/config.mk | 1 | ||||
-rw-r--r-- | cpu/pxa/config.mk | 1 | ||||
-rw-r--r-- | cpu/s3c44b0/config.mk | 1 | ||||
-rw-r--r-- | cpu/sa1100/config.mk | 1 |
10 files changed, 0 insertions, 10 deletions
diff --git a/cpu/arm1136/config.mk b/cpu/arm1136/config.mk index cbcf92b..e39e774 100644 --- a/cpu/arm1136/config.mk +++ b/cpu/arm1136/config.mk @@ -32,4 +32,3 @@ PLATFORM_CPPFLAGS += -march=armv5 # ========================================================================= PLATFORM_CPPFLAGS +=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) PLATFORM_RELFLAGS +=$(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) - diff --git a/cpu/arm720t/config.mk b/cpu/arm720t/config.mk index e5dce9d..641b91c 100644 --- a/cpu/arm720t/config.mk +++ b/cpu/arm720t/config.mk @@ -33,4 +33,3 @@ PLATFORM_CPPFLAGS += -march=armv4 -mtune=arm7tdmi # ========================================================================= PLATFORM_CPPFLAGS +=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) PLATFORM_RELFLAGS +=$(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) - diff --git a/cpu/arm920t/config.mk b/cpu/arm920t/config.mk index 3c7a279..8db4adb 100644 --- a/cpu/arm920t/config.mk +++ b/cpu/arm920t/config.mk @@ -32,4 +32,3 @@ PLATFORM_CPPFLAGS += -march=armv4 # ========================================================================= PLATFORM_CPPFLAGS +=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) PLATFORM_RELFLAGS +=$(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) - diff --git a/cpu/arm925t/config.mk b/cpu/arm925t/config.mk index 3c7a279..8db4adb 100644 --- a/cpu/arm925t/config.mk +++ b/cpu/arm925t/config.mk @@ -32,4 +32,3 @@ PLATFORM_CPPFLAGS += -march=armv4 # ========================================================================= PLATFORM_CPPFLAGS +=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) PLATFORM_RELFLAGS +=$(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) - diff --git a/cpu/arm926ejs/config.mk b/cpu/arm926ejs/config.mk index 3c7a279..8db4adb 100644 --- a/cpu/arm926ejs/config.mk +++ b/cpu/arm926ejs/config.mk @@ -32,4 +32,3 @@ PLATFORM_CPPFLAGS += -march=armv4 # ========================================================================= PLATFORM_CPPFLAGS +=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) PLATFORM_RELFLAGS +=$(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) - diff --git a/cpu/ixp/config.mk b/cpu/ixp/config.mk index 2f735c5..eddda39 100644 --- a/cpu/ixp/config.mk +++ b/cpu/ixp/config.mk @@ -35,4 +35,3 @@ PLATFORM_CPPFLAGS += -mbig-endian -march=armv4 -mtune=strongarm1100 # ========================================================================= PLATFORM_CPPFLAGS +=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) PLATFORM_RELFLAGS +=$(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) - diff --git a/cpu/lh7a40x/config.mk b/cpu/lh7a40x/config.mk index 5062ba2..10e755b 100644 --- a/cpu/lh7a40x/config.mk +++ b/cpu/lh7a40x/config.mk @@ -32,4 +32,3 @@ PLATFORM_CPPFLAGS += -march=armv4 # ======================================================================== PLATFORM_CPPFLAGS +=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) PLATFORM_RELFLAGS +=$(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) - diff --git a/cpu/pxa/config.mk b/cpu/pxa/config.mk index 0e38698..fb810ca 100644 --- a/cpu/pxa/config.mk +++ b/cpu/pxa/config.mk @@ -34,4 +34,3 @@ PLATFORM_CPPFLAGS += -march=armv5 -mtune=xscale # ======================================================================== PLATFORM_CPPFLAGS +=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) PLATFORM_RELFLAGS +=$(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) - diff --git a/cpu/s3c44b0/config.mk b/cpu/s3c44b0/config.mk index 0052ba4..6dc9c46 100644 --- a/cpu/s3c44b0/config.mk +++ b/cpu/s3c44b0/config.mk @@ -33,4 +33,3 @@ PLATFORM_CPPFLAGS += -march=armv4 -mtune=arm7tdmi -msoft-float # ======================================================================== PLATFORM_CPPFLAGS +=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) PLATFORM_RELFLAGS +=$(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) - diff --git a/cpu/sa1100/config.mk b/cpu/sa1100/config.mk index 3bed850..5be7dfb 100644 --- a/cpu/sa1100/config.mk +++ b/cpu/sa1100/config.mk @@ -33,4 +33,3 @@ PLATFORM_CPPFLAGS += -march=armv4 -mtune=strongarm1100 # ======================================================================== PLATFORM_CPPFLAGS +=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) PLATFORM_RELFLAGS +=$(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) - |