2014-02-19 20:10:21 +01:00
|
|
|
#!/bin/sh
|
2016-04-15 17:56:05 +02:00
|
|
|
|
2017-03-01 09:30:43 +01:00
|
|
|
cp -v board/minnowboard/grub.cfg ${BINARIES_DIR}/efi-part/EFI/BOOT/grub.cfg
|
2016-06-21 07:35:01 +02:00
|
|
|
|
|
|
|
# Add a console on tty1
|
2016-08-26 11:52:19 +02:00
|
|
|
if [ -e ${TARGET_DIR}/etc/inittab ]; then
|
|
|
|
grep -qE '^tty1::' ${TARGET_DIR}/etc/inittab || \
|
|
|
|
sed -i '/GENERIC_SERIAL/a\
|
2016-06-21 07:35:01 +02:00
|
|
|
tty1::respawn:/sbin/getty -L tty1 0 vt100 # HDMI console' ${TARGET_DIR}/etc/inittab
|
2016-08-26 11:52:19 +02:00
|
|
|
fi
|