diff options
author | Stefano Babic <sbabic@denx.de> | 2011-10-28 10:23:02 +0200 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-11-03 22:56:20 +0100 |
commit | 0e0a5366f1bfa20e7378d7a8431da88f33637d2b (patch) | |
tree | c3559b4a93a549d886c980bc63618af48aa48c07 /include | |
parent | 4d86dd022e771d7bb5f3a8ba9a8cb6954678bd7f (diff) | |
download | u-boot-imx-0e0a5366f1bfa20e7378d7a8431da88f33637d2b.zip u-boot-imx-0e0a5366f1bfa20e7378d7a8431da88f33637d2b.tar.gz u-boot-imx-0e0a5366f1bfa20e7378d7a8431da88f33637d2b.tar.bz2 |
MX25: tx25: Fix building due to missing MACH_TYPE
Added MACH_TYPE for the tx25 to the configuration file.
The MACH_TYPE is dropped from mach-types.h after last sync
with kernel.
Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/tx25.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/configs/tx25.h b/include/configs/tx25.h index 8cb57ff..f77c546 100644 --- a/include/configs/tx25.h +++ b/include/configs/tx25.h @@ -34,6 +34,12 @@ /* NAND BOOT is the only boot method */ #define CONFIG_NAND_U_BOOT +#ifndef MACH_TYPE_TX25 +#define MACH_TYPE_TX25 2177 +#endif + +#define CONFIG_MACH_TYPE MACH_TYPE_TX25 + #ifdef CONFIG_NAND_SPL /* Start copying real U-boot from the second page */ #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x800 |