diff options
author | Robert Marko <robimarko@gmail.com> | 2024-03-12 00:06:14 -0400 |
---|---|---|
committer | Robert Marko <robimarko@gmail.com> | 2024-03-12 19:49:56 +0100 |
commit | 532de62e4cd4def2ec261fa7d5fba968cfd8c97f (patch) | |
tree | 908c6f8f57d1bb4815c9e12b9c8ce4e06c33a1bf /target/linux/generic/config-6.6 | |
parent | 65df33fc76f722701f161dd88828f61c9e31f1d1 (diff) |
kernel: config: 6.6: disable ZSTD debug info compression by default
When kernel 6.6 is being compiled with GCC13 it will prompt for:
Compressed Debug information
> 1. Don't compress debug information (DEBUG_INFO_COMPRESSED_NONE)
2. Compress debugging information with zlib (DEBUG_INFO_COMPRESSED_ZLIB)
3. Compress debugging information with zstd (DEBUG_INFO_COMPRESSED_ZSTD) (NEW)
This is because kernel now also has support for compressing debug info
with ZSTD, so add the missing symbol and disable it by default.
Signed-off-by: Robert Marko <robimarko@gmail.com>
Diffstat (limited to 'target/linux/generic/config-6.6')
-rw-r--r-- | target/linux/generic/config-6.6 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/generic/config-6.6 b/target/linux/generic/config-6.6 index 4f3d7f2e23..3cb50bc274 100644 --- a/target/linux/generic/config-6.6 +++ b/target/linux/generic/config-6.6 @@ -1412,6 +1412,7 @@ CONFIG_DEBUG_FS_ALLOW_ALL=y # CONFIG_DEBUG_INFO_BTF is not set CONFIG_DEBUG_INFO_COMPRESSED_NONE=y # CONFIG_DEBUG_INFO_COMPRESSED_ZLIB is not set +# CONFIG_DEBUG_INFO_COMPRESSED_ZSTD is not set # CONFIG_DEBUG_INFO_DWARF4 is not set # CONFIG_DEBUG_INFO_DWARF5 is not set CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT=y |