Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

meta-lxatac-bsp: barebox: increase boot timeout when serial booting #133

Merged
merged 2 commits into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions meta-lxatac-bsp/recipes-bsp/barebox/files/.shellcheckrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Barebox scripts use variables defined outside of the script and they
# assign values to variables with dots in their name.
disable=SC2154,SC2276
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
# Turn the LCD on with a splash screen
splash /env/data/splash.png

# shellcheck disable=SC2276
fb0.enable=1
Loading