diff options
author | wdenk <wdenk> | 2005-04-03 14:26:46 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-04-03 14:26:46 +0000 |
commit | 86c9888207b0d5b9632c4ed7a61fd09b81bb618c (patch) | |
tree | 7fac14580807776783cc27c9b738ebfdc2d71f32 | |
parent | 59acc296d97b7262b64be8bc23b12c47b4fdd7e6 (diff) | |
download | u-boot-imx-86c9888207b0d5b9632c4ed7a61fd09b81bb618c.zip u-boot-imx-86c9888207b0d5b9632c4ed7a61fd09b81bb618c.tar.gz u-boot-imx-86c9888207b0d5b9632c4ed7a61fd09b81bb618c.tar.bz2 |
Patch by Steven Scholz, 03 Apr 2005:
- create SoC specific directories include/asm-arm/arch-imx and
include/asm-arm/arch-s3c24x0
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | board/mx1ads/mx1ads.c | 2 | ||||
-rw-r--r-- | include/asm-arm/arch-imx/imx-regs.h (renamed from include/asm-arm/arch-arm920t/imx-regs.h) | 0 | ||||
-rw-r--r-- | include/asm-arm/arch-s3c24x0/memory.h (renamed from include/asm-arm/arch-arm920t/memory.h) | 0 | ||||
-rw-r--r-- | mkconfig | 7 |
5 files changed, 10 insertions, 2 deletions
@@ -5,6 +5,9 @@ Changes for U-Boot 1.1.3: * Prepare for SoC rework of ARM code: - rename CONFIG_BOOTBINFUNC into CONFIG_INIT_CRITICAL - rename memsetup into lowlevel_init (function name and source files) + Patch by Steven Scholz, 03 Apr 2005: + - create SoC specific directories include/asm-arm/arch-imx and + include/asm-arm/arch-s3c24x0 * Fix problems with SNTP support; enable SNTP support in some boards. diff --git a/board/mx1ads/mx1ads.c b/board/mx1ads/mx1ads.c index 332f0a2..5c33ba3 100644 --- a/board/mx1ads/mx1ads.c +++ b/board/mx1ads/mx1ads.c @@ -25,7 +25,7 @@ #include <common.h> /*#include <mc9328.h>*/ -#include <asm/arch-arm920t/imx-regs.h> +#include <asm/arch/imx-regs.h> /* ------------------------------------------------------------------------- */ diff --git a/include/asm-arm/arch-arm920t/imx-regs.h b/include/asm-arm/arch-imx/imx-regs.h index 1486b74..1486b74 100644 --- a/include/asm-arm/arch-arm920t/imx-regs.h +++ b/include/asm-arm/arch-imx/imx-regs.h diff --git a/include/asm-arm/arch-arm920t/memory.h b/include/asm-arm/arch-s3c24x0/memory.h index 333f218..333f218 100644 --- a/include/asm-arm/arch-arm920t/memory.h +++ b/include/asm-arm/arch-s3c24x0/memory.h @@ -31,7 +31,12 @@ cd ./include rm -f asm ln -s asm-$2 asm rm -f asm-$2/arch -ln -s arch-$3 asm-$2/arch + +if [ -z "$6" -o "$6" == "NULL" ] ; then + ln -s arch-$3 asm-$2/arch +else + ln -s arch-$6 asm-$2/arch +fi if [ "$2" = "arm" ] ; then rm -f asm-$2/proc |