Parcourir la source

ci(build): enable sound configuration in kernel build

The sound configuration options were previously commented out. Uncomment them to include sound support in the kernel build.
TheWildJames il y a 10 mois
Parent
commit
9df0e9a931
1 fichiers modifiés avec 7 ajouts et 7 suppressions
  1. 7 7
      .github/workflows/build.yml

+ 7 - 7
.github/workflows/build.yml

@@ -447,13 +447,13 @@ jobs:
           echo "CONFIG_KSU_SUSFS_SUS_SU=n" >> "$defconfig"
           echo "CONFIG_KSU_SUSFS_SUS_SU=n" >> "$defconfig"
           
           
           # Sound Configuration
           # Sound Configuration
-          #echo "CONFIG_SND=y" >> "$defconfig"
-          #echo "CONFIG_SND_DRIVERS=y" >> "$defconfig"
-          #echo "CONFIG_SND_PCM=y" >> "$defconfig"
-          #echo "CONFIG_SND_TIMER=y" >> "$defconfig"
-          #echo "CONFIG_SND_DYNAMIC_MINORS=y" >> "$defconfig"
-          #echo "CONFIG_SND_PROC_FS=y" >> "$defconfig"
-          #echo "CONFIG_SND_ALOOP=m" >> "$defconfig"
+          echo "CONFIG_SND=y" >> "$defconfig"
+          echo "CONFIG_SND_DRIVERS=y" >> "$defconfig"
+          echo "CONFIG_SND_PCM=y" >> "$defconfig"
+          echo "CONFIG_SND_TIMER=y" >> "$defconfig"
+          echo "CONFIG_SND_DYNAMIC_MINORS=y" >> "$defconfig"
+          echo "CONFIG_SND_PROC_FS=y" >> "$defconfig"
+          echo "CONFIG_SND_ALOOP=m" >> "$defconfig"
           
           
           # Build Optimization Configuration
           # Build Optimization Configuration
           echo "CONFIG_LTO_CLANG_THIN=y" >> "$defconfig"
           echo "CONFIG_LTO_CLANG_THIN=y" >> "$defconfig"