Skip to content

Commit

Permalink
meta-lxatac-bsp: barebox: increase boot timeout when serial booting
Browse files Browse the repository at this point in the history
When someone loads barebox via serial download instead of e.g. from the
eMMC it is very likely that they want to upload an image via fastboot
next and do not want to autoboot into linux right away.

Give them a bit more time to interrupt the boot process.

Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
  • Loading branch information
hnez committed Jul 29, 2024
1 parent ad6694c commit 2ffd579
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh

if [ "${bootsource}" = serial ]; then
global.autoboot_timeout=30
fi

0 comments on commit 2ffd579

Please sign in to comment.