diff options
| -rw-r--r-- | board/karo/tx25/tx25.c | 1 | ||||
| -rw-r--r-- | include/configs/tx25.h | 6 | 
2 files changed, 6 insertions, 1 deletions
| diff --git a/board/karo/tx25/tx25.c b/board/karo/tx25/tx25.c index d3d8ea51f..2a2994373 100644 --- a/board/karo/tx25/tx25.c +++ b/board/karo/tx25/tx25.c @@ -140,7 +140,6 @@ int board_init()  	mx25_uart1_init_pins();  #endif  	/* board id for linux */ -	gd->bd->bi_arch_number = MACH_TYPE_TX25;  	gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;  	return 0;  } diff --git a/include/configs/tx25.h b/include/configs/tx25.h index 8cb57ffc1..f77c54668 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 |