Add ACPI I2C-HID quirk carriers

This commit is contained in:
2026-04-22 12:41:39 +01:00
parent b5ae8b2760
commit fdc670d852
5 changed files with 194 additions and 1 deletions
+7 -1
View File
@@ -29,9 +29,14 @@ cp -v \
# Drivers that are built on all architectures, and NOT in drivers-initfs
BINS=(
gpiod
intel-gpiod
amd-mp2-i2cd
e1000d
ihdad
ihdgd
i2c-hidd
intel-lpss-i2cd
ixgbed
pcid
pcid-spawner
@@ -47,6 +52,7 @@ BINS=(
virtio-gpud
virtio-netd
xhcid
i2cd
inputd
redoxerd
)
@@ -71,7 +77,7 @@ export CARGO_PROFILE_RELEASE_PANIC=abort
$(for bin in "${BINS[@]}"; do echo "-p" "${bin}"; done)
for bin in "${BINS[@]}"
do
if [[ "${bin}" == "inputd" || "${bin}" == "pcid" || "${bin}" == "pcid-spawner" || "${bin}" == "redoxerd" ]]; then
if [[ "${bin}" == "gpiod" || "${bin}" == "intel-gpiod" || "${bin}" == "i2cd" || "${bin}" == "inputd" || "${bin}" == "pcid" || "${bin}" == "pcid-spawner" || "${bin}" == "redoxerd" ]]; 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"