diff options
author | Ćukasz Majewski <l.majewski@samsung.com> | 2015-06-17 12:49:23 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-06-18 16:11:41 -0400 |
commit | 7eee2b500da1af93981c8117dff1d8a135ce30e7 (patch) | |
tree | 62c284c21f2c8a4b37eadaf69d05b21f169caeca /board/samsung/common/bootscripts/autoboot.cmd | |
parent | 180f87fcc58936fb8d9e5a6babce739666c50b13 (diff) | |
download | u-boot-imx-7eee2b500da1af93981c8117dff1d8a135ce30e7.zip u-boot-imx-7eee2b500da1af93981c8117dff1d8a135ce30e7.tar.gz u-boot-imx-7eee2b500da1af93981c8117dff1d8a135ce30e7.tar.bz2 |
fix: samsung: common: autoboot.cmd: Correct itbcfg definition
This fix is necessary to avoid booting the default ITB configuration.
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Diffstat (limited to 'board/samsung/common/bootscripts/autoboot.cmd')
-rw-r--r-- | board/samsung/common/bootscripts/autoboot.cmd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/samsung/common/bootscripts/autoboot.cmd b/board/samsung/common/bootscripts/autoboot.cmd index 3b40156..1faed8b 100644 --- a/board/samsung/common/bootscripts/autoboot.cmd +++ b/board/samsung/common/bootscripts/autoboot.cmd @@ -42,7 +42,7 @@ if test -e '${boardname}'; then setenv initrd_addr ; setenv kerneladdr 0x42000000; setenv kernelname Image.itb; - setenv itbcfg \#'${boardname}'; + setenv itbcfg "\"#${boardname}\""; setenv imgbootcmd bootm; else echo Warning! Variable: \$boardname is undefined!; |