diff options
author | wdenk <wdenk> | 2003-10-30 21:49:38 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-10-30 21:49:38 +0000 |
commit | b13fb01a62708492cae4b33c4d6fa9ae127905f4 (patch) | |
tree | 66ae0d558907465ecbebb815f8be02a4257e5c55 /include/configs | |
parent | 5fa66df63afe2841ce27596996811469903373a7 (diff) | |
download | u-boot-imx-b13fb01a62708492cae4b33c4d6fa9ae127905f4.zip u-boot-imx-b13fb01a62708492cae4b33c4d6fa9ae127905f4.tar.gz u-boot-imx-b13fb01a62708492cae4b33c4d6fa9ae127905f4.tar.bz2 |
* Fix parameter passing to standalone images with bootm command
* Patch by Kyle Harris, 30 Oct 2003:
Fix build errors for ixdp425 board
* Patch by David M. Horn, 29 Oct 2003:
Fixes to build under CYGWIN
* Get IceCube MGT5100 working (again)
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/IceCube.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/configs/IceCube.h b/include/configs/IceCube.h index 49abede..821d3b9 100644 --- a/include/configs/IceCube.h +++ b/include/configs/IceCube.h @@ -213,8 +213,13 @@ /* * Various low-level settings */ +#if defined(CONFIG_MPC5200) #define CFG_HID0_INIT HID0_ICE | HID0_ICFI #define CFG_HID0_FINAL HID0_ICE +#else +#define CFG_HID0_INIT 0 +#define CFG_HID0_FINAL 0 +#endif #define CFG_BOOTCS_START CFG_FLASH_BASE #define CFG_BOOTCS_SIZE CFG_FLASH_SIZE |