mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
MIMC200 board now uses CONFIG_DISABLE_CONSOLE
Changed MIMC200 board setup and config to use CONFIG_DISABLE_CONSOLE. Also fixed default uImage location. Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
This commit is contained in:
parent
8fd4166c46
commit
a69a42338d
2 changed files with 4 additions and 4 deletions
|
@ -82,7 +82,7 @@ int board_early_init_f(void)
|
|||
|
||||
/* are we suppressing the console ? */
|
||||
if (gpio_get_value(GPIO_PIN_PE21) == 1)
|
||||
gd->flags |= GD_FLG_SILENT;
|
||||
gd->flags |= (GD_FLG_SILENT | GD_FLG_DISABLE_CONSOLE);
|
||||
|
||||
/* reset phys */
|
||||
gpio_select_pio(GPIO_PIN_PE24, 0);
|
||||
|
|
|
@ -74,12 +74,12 @@
|
|||
|
||||
#define CONFIG_BAUDRATE 115200
|
||||
#define CONFIG_BOOTARGS \
|
||||
"console=ttyS0 root=/dev/mtdblock1 fbmem=600k rootfstype=jffs2"
|
||||
"root=/dev/mtdblock1 rootfstype=jffs2 console=ttyS1"
|
||||
#define CONFIG_BOOTCOMMAND \
|
||||
"fsload; bootm"
|
||||
"fsload boot/uImage; bootm"
|
||||
|
||||
#define CONFIG_SILENT_CONSOLE 1 /* enable silent startup */
|
||||
#define CONFIG_SILENT_CONSOLE_INPUT 1 /* disable console inputs */
|
||||
#define CONFIG_DISABLE_CONSOLE 1 /* disable console */
|
||||
#define CFG_DEVICE_NULLDEV 1 /* include nulldev device */
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue