From ab5172c7e0b48f69bd8848ae176f094de79fe22e Mon Sep 17 00:00:00 2001 From: vasilito Date: Fri, 19 Jun 2026 12:58:33 +0300 Subject: [PATCH] =?UTF-8?q?base:=20add=20fbcond=20to=20BINS,=20installs,?= =?UTF-8?q?=20and=20/usr/bin=20copy=20path=20=E2=80=94=20fixes=20missing?= =?UTF-8?q?=20console=20binary?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- recipes/core/base/recipe.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/recipes/core/base/recipe.toml b/recipes/core/base/recipe.toml index 28531cbc67..dd88009c32 100644 --- a/recipes/core/base/recipe.toml +++ b/recipes/core/base/recipe.toml @@ -34,6 +34,7 @@ installs = [ "/usr/bin/i2cd", "/usr/bin/i2c-gpio-expanderd", "/usr/bin/i2c-hidd", + "/usr/bin/fbcond", "/usr/bin/inputd", "/usr/bin/intel-gpiod", "/usr/bin/ipcd", @@ -65,6 +66,7 @@ installs = [ "/usr/lib/drivers/virtio-netd", "/usr/lib/drivers/xhcid", "/usr/lib/init.d/00_base.target", + "/usr/lib/init.d/00_fbcond.service", "/usr/lib/init.d/00_ipcd.service", "/usr/lib/init.d/00_pcid-spawner.service", "/usr/lib/init.d/00_ptyd.service", @@ -139,6 +141,7 @@ BINS=( xhcid i2cd inputd + fbcond redoxerd ) @@ -170,7 +173,7 @@ done $(for bin in "${EXISTING_BINS[@]}"; do echo "-p" "${bin}"; done) for bin in "${EXISTING_BINS[@]}" do - if [[ "${bin}" == "gpiod" || "${bin}" == "i2c-gpio-expanderd" || "${bin}" == "intel-gpiod" || "${bin}" == "i2cd" || "${bin}" == "dw-acpi-i2cd" || "${bin}" == "i2c-hidd" || "${bin}" == "inputd" || "${bin}" == "pcid" || "${bin}" == "pcid-spawner" || "${bin}" == "redoxerd" || "${bin}" == "ucsid" ]]; then + if [[ "${bin}" == "gpiod" || "${bin}" == "i2c-gpio-expanderd" || "${bin}" == "intel-gpiod" || "${bin}" == "i2cd" || "${bin}" == "dw-acpi-i2cd" || "${bin}" == "i2c-hidd" || "${bin}" == "inputd" || "${bin}" == "fbcond" || "${bin}" == "pcid" || "${bin}" == "pcid-spawner" || "${bin}" == "redoxerd" || "${bin}" == "ucsid" ]]; then cp -v "target/${TARGET}/${build_type}/${bin}" "${COOKBOOK_STAGE}/usr/bin" else cp -v "target/${TARGET}/${build_type}/${bin}" "${COOKBOOK_STAGE}/usr/lib/drivers"