summaryrefslogtreecommitdiff
path: root/recipes-bsp
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2023-02-06 14:39:55 +0100
committerMax Krummenacher <max.krummenacher@toradex.com>2023-02-27 10:05:12 +0100
commit4223840bdb7ee9ed5b30f5fb51609b73f4047621 (patch)
treed7f80af0c3ebcb71554b72aa0273acf69085280b /recipes-bsp
parentcf731ae655f7fe4c18b297655aef5cfb7675dbee (diff)
boot.cmd.in: fix setupargs fallback
When setupargs is not already set we set it using a fallback. Remove escaping of the value set as we do want variables evaluated here. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> (cherry picked from commit 66b323f88297c78eadf3e014d26aca2edf484204)
Diffstat (limited to 'recipes-bsp')
-rw-r--r--recipes-bsp/u-boot/u-boot-distro-boot/boot.cmd.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-bsp/u-boot/u-boot-distro-boot/boot.cmd.in b/recipes-bsp/u-boot/u-boot-distro-boot/boot.cmd.in
index 65542ee..8d23984 100644
--- a/recipes-bsp/u-boot/u-boot-distro-boot/boot.cmd.in
+++ b/recipes-bsp/u-boot/u-boot-distro-boot/boot.cmd.in
@@ -70,7 +70,7 @@ fi
if test -n ${setup}; then
run setup
else
- env set setupargs 'console=tty1 console=${console},${baudrate} consoleblank=0'
+ env set setupargs console=tty1 console=${console},${baudrate} consoleblank=0
fi
if test -n ${kernel_comp_addr_r}; then