diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-11-04 13:10:55 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-11-04 13:51:12 +0100 |
commit | 6ce251680874007fe52074f0b3bc02c20b856573 (patch) | |
tree | 5bac06f119739541fbe6ceaa53111765e705eba7 /classes | |
parent | 32baba2ef47e2d4e3b331f9b793d541e5f152da7 (diff) | |
download | meta-ti-6ce251680874007fe52074f0b3bc02c20b856573.tar.gz |
sdcard_image bbclass: fix payload logic
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'classes')
-rw-r--r-- | classes/sdcard_image.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/sdcard_image.bbclass b/classes/sdcard_image.bbclass index 9d582bdc..281aaddf 100644 --- a/classes/sdcard_image.bbclass +++ b/classes/sdcard_image.bbclass | |||
@@ -109,7 +109,7 @@ IMAGE_CMD_sdimg () { | |||
109 | if [ -n ${FATPAYLOAD} ] ; then | 109 | if [ -n ${FATPAYLOAD} ] ; then |
110 | echo "Copying payload into VFAT" | 110 | echo "Copying payload into VFAT" |
111 | for entry in ${FATPAYLOAD} ; do | 111 | for entry in ${FATPAYLOAD} ; do |
112 | cp -av $entry ${WORKDIR}/tmp-mnt-boot | 112 | cp -av ${IMAGE_ROOTFS}$entry ${WORKDIR}/tmp-mnt-boot |
113 | done | 113 | done |
114 | fi | 114 | fi |
115 | 115 | ||