All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-fsl-arm-extra][PATCH] u-boot-script-boundary: Fix paths for bootscript and upgrade script
@ 2016-07-20  1:28 Ian Coolidge
  0 siblings, 0 replies; only message in thread
From: Ian Coolidge @ 2016-07-20  1:28 UTC (permalink / raw)
  To: meta-freescale

Signed-off-by: Ian Coolidge <ian@boundarydevices.com>
---
 recipes-bsp/u-boot/u-boot-script-boundary_git.bb | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
index 3ad140b..ffe124e 100644
--- a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
+++ b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
@@ -18,17 +18,17 @@ UPGRADESCRIPT = "${S}/board/boundary/nitrogen6x/6x_upgrade.txt"
 
 do_mkimage () {
     # allow deploy to use the ${MACHINE} name to simplify things
-    if [ ! -d board/boundary/${MACHINE} ]; then
-        mkdir board/boundary/${MACHINE}
+    if [ ! -d ${S}/board/boundary/${MACHINE} ]; then
+        mkdir ${S}/board/boundary/${MACHINE}
     fi
 
     uboot-mkimage -A arm -O linux -T script -C none -a 0 -e 0 \
                   -n "boot script" -d ${BOOTSCRIPT} \
-                  board/boundary/${MACHINE}/6x_bootscript
+                  ${S}/board/boundary/${MACHINE}/6x_bootscript
 
     uboot-mkimage -A arm -O linux -T script -C none -a 0 -e 0 \
                   -n "upgrade script" -d ${UPGRADESCRIPT} \
-                  board/boundary/${MACHINE}/6x_upgrade
+                  ${S}/board/boundary/${MACHINE}/6x_upgrade
 }
 
 addtask mkimage after do_compile before do_install
-- 
1.9.1



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-07-20  1:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-20  1:28 [meta-fsl-arm-extra][PATCH] u-boot-script-boundary: Fix paths for bootscript and upgrade script Ian Coolidge

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.