diff options
author | Holger Brunck <holger.brunck@keymile.com> | 2011-07-04 21:52:52 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-07-27 23:43:33 +0200 |
commit | b648bfc212c0e62dae47b8f09a0c4e49bbd89106 (patch) | |
tree | 36a4688fbcf68ff9fde05fdc20057cc654b31701 /include/configs/km/km_arm.h | |
parent | 0333cfe618eb3ba8ce1001106bf5c3b9fe9af36e (diff) | |
download | u-boot-imx-b648bfc212c0e62dae47b8f09a0c4e49bbd89106.zip u-boot-imx-b648bfc212c0e62dae47b8f09a0c4e49bbd89106.tar.gz u-boot-imx-b648bfc212c0e62dae47b8f09a0c4e49bbd89106.tar.bz2 |
km/common: simplify debug environment
The debug environment which is stored in textfiles in the
scripts directory was reworked. Two usecase are now present
which can be executed simply from the default environment:
run develop: this configures the environment to setup the
rootfs via nfs
run ramfs: this configures the environment to setup the
rootfs in ram
Each architecture now has a "arch" variable which is used
to load the architecture specific debug scripts and to set
the rootpath for NFS.
Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
Signed-off-by: Valentin Longchamp <valentin.longchamp@keymile.com>
cc: Heiko Schocher <hs@denx.de>
cc: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'include/configs/km/km_arm.h')
-rw-r--r-- | include/configs/km/km_arm.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/configs/km/km_arm.h b/include/configs/km/km_arm.h index 7eb5cd4..23717f4 100644 --- a/include/configs/km/km_arm.h +++ b/include/configs/km/km_arm.h @@ -77,8 +77,6 @@ CONFIG_KM_DEF_ENV_UPDATE \ "" -#define CONFIG_KM_ARCH_DBG_FILE "scripts/debug-arm-env.txt" - #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ #define CONFIG_MISC_INIT_R @@ -243,7 +241,7 @@ int get_scl(void); " ${addr} " xstr(CONFIG_ENV_OFFSET) " 4 && " \ "eeprom write " xstr(CONFIG_SYS_DEF_EEPROM_ADDR) \ " ${addr} " xstr(CONFIG_ENV_OFFSET_REDUND) " 4\0" \ - "rootpath=/opt/eldk/arm\0" \ + "arch=arm\0" \ "EEprom_ivm=" KM_IVM_BUS "\0" \ "" |