Skip to content

Commit 09c78b8

Browse files
fmoessbauerchombourger
authored andcommitted
fix(lava): correctly add lava-dispatcher
When enabling the lava override, it completely clears the IMAGE_PREINSTALL list (except for the lava-dispatcher package). This is because an incorrect append is used (we append to IMAGE_PREINSTALL:lava instead of just appending in case lava is selected). Fixes: 6bf2e42 ("meta-isar: images: make LAVA an optional feature") Signed-off-by: Felix Moessbauer <[email protected]>
1 parent a77587f commit 09c78b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meta-isar/recipes-core/images/mtda-image.bb

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ IMAGE_PREINSTALL:remove:ubuntu-noble = "pdudaemon-client"
6868
IMAGE_INSTALL += "python3-hap-python"
6969

7070
# LAVA support
71-
IMAGE_PREINSTALL:lava += "lava-dispatcher"
71+
IMAGE_PREINSTALL:append:lava = " lava-dispatcher"
7272

7373
# Expand root file-system
7474
IMAGE_INSTALL:append = " expand-on-first-boot "

0 commit comments

Comments
 (0)