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"