From c3c5a17a96e748cb5c904dec8eade198ecebb293 Mon Sep 17 00:00:00 2001 From: Javier Viguera Date: Wed, 1 Mar 2023 10:51:43 +0100 Subject: [PATCH] dey-image-qt: fix adding new functions to ROOTFS_POSTPROCESS_COMMAND With platform overrides we need to use ':append' operand. Otherwise, we are overriding the previous content of the variable and not adding to it. In this case, for example, we removed some postprocessing functions that allow SSH into the device with an empty password. Signed-off-by: Javier Viguera --- meta-digi-dey/recipes-core/images/dey-image-qt.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-digi-dey/recipes-core/images/dey-image-qt.bb b/meta-digi-dey/recipes-core/images/dey-image-qt.bb index b1e9f4e71..15e0a1bbf 100644 --- a/meta-digi-dey/recipes-core/images/dey-image-qt.bb +++ b/meta-digi-dey/recipes-core/images/dey-image-qt.bb @@ -12,6 +12,6 @@ add_cinematicexperience_shortcut() { printf "\n[launcher]\nicon=${datadir}/icons/hicolor/24x24/icon_qt.png\npath=${bindir}/cinematic-experience\n" >> ${IMAGE_ROOTFS}${sysconfdir}/xdg/weston/weston.ini fi } -ROOTFS_POSTPROCESS_COMMAND:imxgpu += "add_cinematicexperience_shortcut; " -ROOTFS_POSTPROCESS_COMMAND:ccmp15 += "add_cinematicexperience_shortcut; " -ROOTFS_POSTPROCESS_COMMAND:ccimx93 += "add_cinematicexperience_shortcut; " +ROOTFS_POSTPROCESS_COMMAND:append:imxgpu = " add_cinematicexperience_shortcut;" +ROOTFS_POSTPROCESS_COMMAND:append:ccmp15 = " add_cinematicexperience_shortcut;" +ROOTFS_POSTPROCESS_COMMAND:append:ccimx93 = " add_cinematicexperience_shortcut;"