244ffaafd1
Following what's done in Raspberry Pi's defconfigs, let's unify the consoles in Minnowboard Max defconfigs, providing consoles on HDMI and serial port. [Peter: use tty1 like on rpi] Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
11 lines
338 B
Bash
Executable File
11 lines
338 B
Bash
Executable File
#!/bin/sh
|
|
# args from BR2_ROOTFS_POST_SCRIPT_ARGS
|
|
# $2 board name
|
|
|
|
cp -v board/minnowboard/grub-${2}.cfg ${BINARIES_DIR}/efi-part/EFI/BOOT/grub.cfg
|
|
|
|
# Add a console on tty1
|
|
grep -qE '^tty1::' ${TARGET_DIR}/etc/inittab || \
|
|
sed -i '/GENERIC_SERIAL/a\
|
|
tty1::respawn:/sbin/getty -L tty1 0 vt100 # HDMI console' ${TARGET_DIR}/etc/inittab
|