diff options
author | Gary Thomas <gary@mlbassoc.com> | 2015-07-15 11:07:45 -0600 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-07-16 15:01:29 -0300 |
commit | 02222424d6d8592385c603a2afc34450d46efe4e (patch) | |
tree | f8cc228f342dbd6bdc5bf6b520c39a5c560ff2af /recipes-bsp | |
parent | ca38cdc4de1143cf6b7af76e9426ecf31f0922f0 (diff) | |
download | meta-freescale-02222424d6d8592385c603a2afc34450d46efe4e.tar.gz |
u-boot-ls1: Fix 'nand' builds
Builds for 'nand' booting were failing because of an incorrect path
during compilation.
Signed-off-by: Gary Thomas <gary@mlbassoc.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-bsp')
-rw-r--r-- | recipes-bsp/u-boot/u-boot-ls1_2015.01.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/recipes-bsp/u-boot/u-boot-ls1_2015.01.bb b/recipes-bsp/u-boot/u-boot-ls1_2015.01.bb index 716105f4..0a1fb808 100644 --- a/recipes-bsp/u-boot/u-boot-ls1_2015.01.bb +++ b/recipes-bsp/u-boot/u-boot-ls1_2015.01.bb | |||
@@ -30,8 +30,7 @@ do_compile_append () { | |||
30 | case "${config}" in | 30 | case "${config}" in |
31 | *spi*) tclsh ${STAGING_BINDIR_NATIVE}/byte_swap.tcl ${S}/${config}/u-boot-dtb.bin ${S}/${config}/u-boot.swap.bin 8 | 31 | *spi*) tclsh ${STAGING_BINDIR_NATIVE}/byte_swap.tcl ${S}/${config}/u-boot-dtb.bin ${S}/${config}/u-boot.swap.bin 8 |
32 | mv ${S}/${config}/u-boot.swap.bin ${S}/u-boot-${type}.${UBOOT_SUFFIX};; | 32 | mv ${S}/${config}/u-boot.swap.bin ${S}/u-boot-${type}.${UBOOT_SUFFIX};; |
33 | *sdcard*) mv ${S}/${config}/u-boot-with-spl-pbl.bin ${S}/${config}/u-boot.bin;; | 33 | *nand* | *sdcard*) mv ${S}/${config}/u-boot-with-spl-pbl.bin ${S}/${config}/u-boot.bin;; |
34 | *nand*) mv ${S}/u-boot-with-spl-pbl.bin ${S}/u-boot.bin;; | ||
35 | esac | 34 | esac |
36 | done | 35 | done |
37 | fi | 36 | fi |