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 <[email protected]>
  • Loading branch information
hnez committed Jul 26, 2024
1 parent a3a80ae commit d9f330a
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 d9f330a

Please sign in to comment.