Kaynağa Gözat

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 ay önce
ebeveyn
işleme
b6059271aa

+ 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