TheWildJames 3 months ago
parent
commit
5bfe35c970
2 changed files with 3 additions and 2 deletions
  1. 1 1
      .github/actions/bbg/action.yml
  2. 2 1
      .github/actions/build-kernel/action.yml

+ 1 - 1
.github/actions/bbg/action.yml

@@ -41,5 +41,5 @@ runs:
       shell: bash
       run: |
         cat >> "${{ github.workspace }}/kernel/common/arch/arm64/configs/gki_defconfig" << 'EOF'
-        CONFIG_BBG
+        CONFIG_BBG=y
         EOF

+ 2 - 1
.github/actions/build-kernel/action.yml

@@ -35,14 +35,15 @@ runs:
       fi
 
   - name: Setup Kernel Configs
+    if: false
     uses: ./.github/actions/set-kernel-config
   
   - name: 'Build Kernel'
     shell: bash
     working-directory: ${{ github.workspace }}/kernel
     run: |
+      sed -i 's/check_defconfig//' ./common/build.config.gki
       if [ -f "build/build.sh" ]; then
-        sed -i 's/check_defconfig//' ./common/build.config.gki
         BUILD_GKI_ARTIFACTS= \
         BUILD_GKI_CERTIFICATION_TOOLS=0 \
         BUILD_SYSTEM_DLKM=0 \