These functions are no longer different than the image base class we inherit from, and in fact have been updated in recent patches upstream that are causing build errors due to the missing code. Simple fix is just remove our no longer needed versions of these functions.
Signed-off-by: Ryan Eatmon <[email protected]> --- meta-arago-distro/classes/tisdk-bundle.bbclass | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/meta-arago-distro/classes/tisdk-bundle.bbclass b/meta-arago-distro/classes/tisdk-bundle.bbclass index c2abc056..83fe31a0 100644 --- a/meta-arago-distro/classes/tisdk-bundle.bbclass +++ b/meta-arago-distro/classes/tisdk-bundle.bbclass @@ -121,22 +121,6 @@ fakeroot python do_rootfs () { create_rootfs(d) } -fakeroot python do_image () { - from oe.utils import execute_pre_post_process - - pre_process_cmds = d.getVar("IMAGE_PREPROCESS_COMMAND") - - execute_pre_post_process(d, pre_process_cmds) -} - -fakeroot python do_image_complete () { - from oe.utils import execute_pre_post_process - - post_process_cmds = d.getVar("IMAGE_POSTPROCESS_COMMAND") - - execute_pre_post_process(d, post_process_cmds) -} - tisdk_image_setup () { set -x rm -rf ${IMAGE_ROOTFS} -- 2.17.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#15468): https://lists.yoctoproject.org/g/meta-arago/message/15468 Mute This Topic: https://lists.yoctoproject.org/mt/107524599/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
