From 78662ef53c154e7a483ff694a2e6795db94f0ba3 Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Wed, 4 Oct 2023 14:53:38 +0200 Subject: [PATCH] iot2050-image-example: Fix Node-RED inclusion control In kas/opt/no-node-red.yml, this was already correctly spelled, but the image recipe got it wrong, effectively preventing the disabling. Reported-by: Diogo Ivo Signed-off-by: Jan Kiszka --- recipes-core/images/iot2050-image-example.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-core/images/iot2050-image-example.bb b/recipes-core/images/iot2050-image-example.bb index d3d9f28ef..7581d94c2 100644 --- a/recipes-core/images/iot2050-image-example.bb +++ b/recipes-core/images/iot2050-image-example.bb @@ -43,10 +43,10 @@ IMAGE_INSTALL += " \ tee-supplicant \ " -IOT2050_NOD_RED_SUPPORT ?= "1" +IOT2050_NODE_RED_SUPPORT ?= "1" IMAGE_INSTALL += "${@ ' \ node-red \ node-red-gpio \ node-red-preinstalled-nodes \ - ' if d.getVar('IOT2050_NOD_RED_SUPPORT') == '1' else ''}" + ' if d.getVar('IOT2050_NODE_RED_SUPPORT') == '1' else ''}"