浏览代码

ci(kernel): comment out CONFIG_TRIM_UNUSED_KSYMS

The CONFIG_TRIM_UNUSED_KSYMS option should be commented out with 'is not set' instead of explicitly setting it to 'n'. This aligns with the standard kernel configuration syntax used in the surrounding lines.
TheWildJames 4 月之前
父节点
当前提交
b6059271aa
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      .github/actions/build-kernel/action.yml
  2. 1 1
      .github/actions/misc/action.yml

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

@@ -12,5 +12,5 @@ runs:
           SKIP_DEFCONFIG=1 GKI_DEFCONFIG_FRAGMENT="$GITHUB_WORKSPACE/wild_gki.fragment" BUILD_CONFIG=common/build.config.gki.aarch64 build/build.sh
         else
           cp "$GITHUB_WORKSPACE/wild_gki.fragment" common/arch/arm64/configs/wild_gki.fragment
-          tools/bazel build --config=release --stamp --defconfig_fragment=//common:arch/arm64/configs/wild_gki.fragment //common:kernel_aarch64_dist
+          tools/bazel build --config=release --stamp --notrim --defconfig_fragment=//common:arch/arm64/configs/wild_gki.fragment //common:kernel_aarch64_dist
         fi

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

@@ -24,5 +24,5 @@ runs:
         CONFIG_KALLSYMS=y
         CONFIG_KALLSYMS_ALL=y
 
-        CONFIG_TRIM_UNUSED_KSYMS=n
+        # CONFIG_TRIM_UNUSED_KSYMS is not set
         EOF