diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/km/keymile-common.h | 10 | ||||
| -rw-r--r-- | include/configs/km/km-powerpc.h | 2 | ||||
| -rw-r--r-- | include/configs/km/km82xx-common.h | 2 | ||||
| -rw-r--r-- | include/configs/km/km8321-common.h | 3 | ||||
| -rw-r--r-- | include/configs/km/km83xx-common.h | 7 | ||||
| -rw-r--r-- | include/configs/km/km_arm.h | 4 | 
6 files changed, 13 insertions, 15 deletions
| diff --git a/include/configs/km/keymile-common.h b/include/configs/km/keymile-common.h index c40a5417b..c0df6d81b 100644 --- a/include/configs/km/keymile-common.h +++ b/include/configs/km/keymile-common.h @@ -159,10 +159,14 @@  #define CONFIG_KM_DEF_ENV_BOOTTARGETS					\  	"subbootcmds=ubiattach ubicopy cramfsloadfdt cramfsloadkernel "	\  		"flashargs add_default addpanic boot\0"			\ -	"debug_env="							\ -		"tftp 200000 " CONFIG_KM_ARCH_DBG_FILE " && "		\ +	"develop="							\ +		"tftp 200000 scripts/develop-${arch}.txt && "		\  		"env import -t 200000 ${filesize} && "			\ -		"run debug_env_common\0"				\ +		"run setup_debug_env\0"					\ +	"ramfs="							\ +		"tftp 200000 scripts/ramfs-${arch}.txt && "		\ +		"env import -t 200000 ${filesize} && "			\ +		"run setup_debug_env\0"					\  	""  /* diff --git a/include/configs/km/km-powerpc.h b/include/configs/km/km-powerpc.h index 7aaa8d21e..4cec57cf3 100644 --- a/include/configs/km/km-powerpc.h +++ b/include/configs/km/km-powerpc.h @@ -83,6 +83,4 @@  		"protect on " xstr(BOOTFLASH_START) "  +${filesize}\0"  \  	"" -#define CONFIG_KM_ARCH_DBG_FILE		"scripts/debug-ppc-env.txt" -  #endif /* __CONFIG_KEYMILE_POWERPC_H */ diff --git a/include/configs/km/km82xx-common.h b/include/configs/km/km82xx-common.h index 446c1d0b8..b89631c80 100644 --- a/include/configs/km/km82xx-common.h +++ b/include/configs/km/km82xx-common.h @@ -87,7 +87,7 @@  	"newenv="							\  		"prot off 0xFE0C0000 +0x40000 && "			\  		"era 0xFE0C0000 +0x40000\0"				\ -	"rootpath=/opt/eldk/ppc_82xx\0"					\ +	"arch=ppc_82xx\0"					\  	""  #define CONFIG_SYS_MONITOR_BASE	CONFIG_SYS_TEXT_BASE diff --git a/include/configs/km/km8321-common.h b/include/configs/km/km8321-common.h index 6fab45eb8..902ae26e5 100644 --- a/include/configs/km/km8321-common.h +++ b/include/configs/km/km8321-common.h @@ -33,8 +33,7 @@  #define CONFIG_MPC832x	/* MPC832x CPU specific */  #define CONFIG_KM8321	/* Keymile PBEC8321 board specific */ -#define CONFIG_KM_DEF_ROOTPATH		\ -	"rootpath=/opt/eldk/ppc_8xx\0" +#define CONFIG_KM_DEF_ARCH	"arch=ppc_8xx\0"  /* include common defines/options for all 83xx Keymile boards */  #include "km83xx-common.h" diff --git a/include/configs/km/km83xx-common.h b/include/configs/km/km83xx-common.h index 85b6ed200..2b1a84a5e 100644 --- a/include/configs/km/km83xx-common.h +++ b/include/configs/km/km83xx-common.h @@ -302,14 +302,13 @@  #define CONFIG_KM_DEF_ENV "km-common=empty\0"  #endif -#ifndef CONFIG_KM_DEF_ROOTPATH -#define CONFIG_KM_DEF_ROOTPATH		\ -	"rootpath=/opt/eldk/ppc_82xx\0" +#ifndef CONFIG_KM_DEF_ARCH +#define CONFIG_KM_DEF_ARCH	"arch=ppc_82xx\0"  #endif  #define CONFIG_EXTRA_ENV_SETTINGS \  	CONFIG_KM_DEF_ENV						\ -	CONFIG_KM_DEF_ROOTPATH						\ +	CONFIG_KM_DEF_ARCH						\  	"dtt_bus=pca9547:70:a\0"					\  	"EEprom_ivm=pca9547:70:9\0"					\  	"newenv="							\ diff --git a/include/configs/km/km_arm.h b/include/configs/km/km_arm.h index 7eb5cd49f..23717f4cb 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"					\  	"" |