mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
i.MX31: Fix architecture numbers for ADS and Litekit boards
Correct the Linux architecture number for i.MX31 Litekit and ADS boards. Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
This commit is contained in:

committed by
Wolfgang Denk

parent
e7ae84d6c7
commit
17c9de6bb3
@ -52,7 +52,7 @@ int board_init (void)
|
||||
mx31_gpio_mux(MUX_RTS1__UART1_RTS_B);
|
||||
mx31_gpio_mux(MUX_RTS1__UART1_CTS_B);
|
||||
|
||||
gd->bd->bi_arch_number = 447; /* board id for linux */
|
||||
gd->bd->bi_arch_number = MACH_TYPE_MX31LITE; /* board id for linux */
|
||||
gd->bd->bi_boot_params = (0x80000100); /* adress of boot parameters */
|
||||
|
||||
return 0;
|
||||
|
@ -93,7 +93,7 @@ int board_init (void)
|
||||
readb(CS4_BASE + 8);
|
||||
readb(CS4_BASE + 7);
|
||||
|
||||
gd->bd->bi_arch_number = 447; /* board id for linux */
|
||||
gd->bd->bi_arch_number = MACH_TYPE_MX31ADS; /* board id for linux */
|
||||
gd->bd->bi_boot_params = 0x80000100; /* adress of boot parameters */
|
||||
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user