diff --git a/recipes/drivers-initfs/recipe.toml b/recipes/drivers-initfs/recipe.toml
index f84e5af72c369a8d70d0281e6753e37df6cc4568..26dfef38fefa72f612409eb7ee6251f3075a79c7 100644
--- a/recipes/drivers-initfs/recipe.toml
+++ b/recipes/drivers-initfs/recipe.toml
@@ -5,7 +5,6 @@ git = "https://gitlab.redox-os.org/redox-os/drivers.git"
 template = "custom"
 script = """
 BINS=(
-    acpid
     ahcid
     nvmed
     pcid
@@ -13,9 +12,12 @@ BINS=(
 )
 
 case "${TARGET}" in
-    i686-unknown-redox | x86_64-unknown-redox)
+    i686-unknown-redox)
         BINS+=(ps2d)
         ;;
+    x86_64-unknown-redox)
+        BINS+=(acpid ps2d)
+        ;;
     *)
         ;;
 esac