From 77c102667627ffe598c5f5d8bb28fbcd7efd43a7 Mon Sep 17 00:00:00 2001 From: Trevor Woerner Date: Mon, 17 Jul 2017 09:01:30 -0400 Subject: [PATCH] sdcard_image-sunxi.bbclass: fix deprecated notation The older "IMAGE_DEPENDS_*" notation has been deprecated in favour of the "do_image_...[depends]" notation. Signed-off-by: Trevor Woerner --- classes/sdcard_image-sunxi.bbclass | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/classes/sdcard_image-sunxi.bbclass b/classes/sdcard_image-sunxi.bbclass index d97200c..eef0612 100644 --- a/classes/sdcard_image-sunxi.bbclass +++ b/classes/sdcard_image-sunxi.bbclass @@ -29,10 +29,10 @@ IMAGE_ROOTFS_ALIGNMENT = "2048" SDIMG_ROOTFS_TYPE ?= "ext4" SDIMG_ROOTFS = "${IMGDEPLOYDIR}/${IMAGE_NAME}.rootfs.${SDIMG_ROOTFS_TYPE}" -IMAGE_DEPENDS_sunxi-sdimg += " \ - parted-native \ - mtools-native \ - dosfstools-native \ +do_image_sunxi_sdimg[depends] += " \ + parted-native:do_populate_sysroot \ + mtools-native:do_populate_sysroot \ + dosfstools-native:do_populate_sysroot \ virtual/kernel:do_deploy \ virtual/bootloader:do_deploy \ "