summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrevor Woerner <twoerner@gmail.com>2017-06-30 08:42:48 -0400
committerOtavio Salvador <otavio@ossystems.com.br>2017-07-05 14:27:55 -0300
commit66f49f82aead5ca01834e958164a7cb7310a6c09 (patch)
treef2ff8ae3c7c55c227804e29e0faab55bb7844f35
parent84f328ebc6fdb632f47b2a971a136aabec0f798a (diff)
downloadmeta-freescale-66f49f82aead5ca01834e958164a7cb7310a6c09.tar.gz
image_types_fsl: fix deprecated notation
The old "IMAGE_DEPENDS..." notation has been deprecated in favour of the newer "do_image...[depends]" notation. Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--classes/image_types_fsl.bbclass10
1 files changed, 5 insertions, 5 deletions
diff --git a/classes/image_types_fsl.bbclass b/classes/image_types_fsl.bbclass
index 075b18cf..58c1972e 100644
--- a/classes/image_types_fsl.bbclass
+++ b/classes/image_types_fsl.bbclass
@@ -77,11 +77,11 @@ BAREBOX_ENV_SPACE ?= "512"
77# Set alignment to 4MB [in KiB] 77# Set alignment to 4MB [in KiB]
78IMAGE_ROOTFS_ALIGNMENT = "4096" 78IMAGE_ROOTFS_ALIGNMENT = "4096"
79 79
80IMAGE_DEPENDS_sdcard = "parted-native:do_populate_sysroot \ 80do_image_sdcard[depends] = "parted-native:do_populate_sysroot \
81 dosfstools-native:do_populate_sysroot \ 81 dosfstools-native:do_populate_sysroot \
82 mtools-native:do_populate_sysroot \ 82 mtools-native:do_populate_sysroot \
83 virtual/kernel:do_deploy \ 83 virtual/kernel:do_deploy \
84 ${@d.getVar('IMAGE_BOOTLOADER', True) and d.getVar('IMAGE_BOOTLOADER', True) + ':do_deploy' or ''}" 84 ${@d.getVar('IMAGE_BOOTLOADER', True) and d.getVar('IMAGE_BOOTLOADER', True) + ':do_deploy' or ''}"
85 85
86SDCARD = "${IMGDEPLOYDIR}/${IMAGE_NAME}.rootfs.sdcard" 86SDCARD = "${IMGDEPLOYDIR}/${IMAGE_NAME}.rootfs.sdcard"
87 87