From 24a411a17f389650c4cea38bef1f9279117fab8e Mon Sep 17 00:00:00 2001 From: Trevor Woerner Date: Tue, 17 Sep 2024 03:21:49 -0400 Subject: [PATCH] abd-partition: add runtime dependency The rauc demo implementation provided by this layer uses ext4-formatted partitions. Therefore the tool required to format ext4 partitions is required otherwise the repartitioning will fail. Signed-off-by: Trevor Woerner --- .../rk-rauc-demo/recipes-core/systemd/abd-partition.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dynamic-layers/rk-rauc-demo/recipes-core/systemd/abd-partition.bb b/dynamic-layers/rk-rauc-demo/recipes-core/systemd/abd-partition.bb index 1952805..d5cb427 100644 --- a/dynamic-layers/rk-rauc-demo/recipes-core/systemd/abd-partition.bb +++ b/dynamic-layers/rk-rauc-demo/recipes-core/systemd/abd-partition.bb @@ -24,3 +24,5 @@ do_install() { install -d ${D}${sysconfdir}/systemd/system install -m 0644 ${UNPACKDIR}/data.mount ${D}${sysconfdir}/systemd/system/ } + +RDEPENDS:${PN} += "e2fsprogs-mke2fs"