diff options
author | Trevor Woerner <twoerner@gmail.com> | 2017-06-30 08:42:48 -0400 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2017-07-01 15:38:18 -0300 |
commit | 15ceec526f973f5b270c390b8130d032cde3526e (patch) | |
tree | fd5773a38808dfd0122d71e4e85d6408ba935617 | |
parent | a1c88d1b14e12eda0cfae3a516b3b20244cd6d4d (diff) | |
download | meta-freescale-15ceec526f973f5b270c390b8130d032cde3526e.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.bbclass | 10 |
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] |
78 | IMAGE_ROOTFS_ALIGNMENT = "4096" | 78 | IMAGE_ROOTFS_ALIGNMENT = "4096" |
79 | 79 | ||
80 | IMAGE_DEPENDS_sdcard = "parted-native:do_populate_sysroot \ | 80 | do_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 | ||
86 | SDCARD = "${IMGDEPLOYDIR}/${IMAGE_NAME}.rootfs.sdcard" | 86 | SDCARD = "${IMGDEPLOYDIR}/${IMAGE_NAME}.rootfs.sdcard" |
87 | 87 | ||