From 3394e466cf326a517d1274c93268a3dd661fecf2 Mon Sep 17 00:00:00 2001 From: Badrikesh Prusty Date: Tue, 31 Dec 2024 02:36:42 +0530 Subject: [PATCH] refactor(packages): Remove sd-mux-ctrl build for Ubuntu Noble While the sd-mux-ctrl package is available in Ubuntu Noble's APT repository, it is not available for Debian Bookworm, necessitating a local build for that distribution. Modify the DEPENDS section to ensure that the sd-mux-ctrl package is only built for Debian Bookworm Signed-off-by: Badrikesh Prusty --- meta-isar/recipes-core/packages/mtda-packages.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-isar/recipes-core/packages/mtda-packages.bb b/meta-isar/recipes-core/packages/mtda-packages.bb index b81eef24..beb84dbc 100644 --- a/meta-isar/recipes-core/packages/mtda-packages.bb +++ b/meta-isar/recipes-core/packages/mtda-packages.bb @@ -12,6 +12,8 @@ DEPENDS = " \ mtda \ sd-mux-ctrl \ " +# Ubuntu noble ships sd-mux-ctrl package +DEPENDS:remove:noble = "sd-mux-ctrl" # Make sure packages we built were added to the isar-apt repository do_build[deptask] += "do_deploy_deb"