From 32f68d081f85427c4b33f475d020c8e848ba3dea Mon Sep 17 00:00:00 2001 From: Andrey Turkin Date: Wed, 18 Dec 2024 20:53:15 +0300 Subject: [PATCH] Fix bcm2835-sdhcid location It is referenced from init.rc so it should be in bin just like the other drivers ran by init. --- recipes/core/drivers-initfs/recipe.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/core/drivers-initfs/recipe.toml b/recipes/core/drivers-initfs/recipe.toml index 7f35030d1..402f9227e 100644 --- a/recipes/core/drivers-initfs/recipe.toml +++ b/recipes/core/drivers-initfs/recipe.toml @@ -28,7 +28,7 @@ x86_common_bins() aarch64_bins() { case "${BOARD}" in - raspi3b | raspi3bp) + raspi3b*) BINS+=(bcm2835-sdhcid) ;; *) @@ -61,7 +61,7 @@ export CARGO_PROFILE_RELEASE_PANIC=abort for bin in "${BINS[@]}" do case "${bin}" in - pcid | fbcond | inputd | vesad | lived | ps2d | acpid) + pcid | fbcond | inputd | vesad | lived | ps2d | acpid | bcm2835-sdhcid) cp -v "target/${TARGET}/release/${bin}" "${COOKBOOK_STAGE}/bin" ;; *)