Skip to content

Commit b0f2697

Browse files
masahir0yIngo Molnar
authored andcommitted
x86/config: Fix warning for 'make ARCH=x86_64 tinyconfig'
Kconfig emits a warning for the following command: $ make ARCH=x86_64 tinyconfig ... .config:1380:warning: override: UNWINDER_GUESS changes choice state When X86_64=y, the unwinder is exclusively selected from the following three options: - UNWINDER_ORC - UNWINDER_FRAME_POINTER - UNWINDER_GUESS However, arch/x86/configs/tiny.config only specifies the values of the last two. UNWINDER_ORC must be explicitly disabled. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Signed-off-by: Ingo Molnar <mingo@kernel.org> Link: https://lore.kernel.org/r/20240320154313.612342-1-masahiroy@kernel.org
1 parent 4ae3dc8 commit b0f2697

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

arch/x86/configs/tiny.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
CONFIG_NOHIGHMEM=y
22
# CONFIG_HIGHMEM4G is not set
33
# CONFIG_HIGHMEM64G is not set
4+
# CONFIG_UNWINDER_ORC is not set
45
CONFIG_UNWINDER_GUESS=y
56
# CONFIG_UNWINDER_FRAME_POINTER is not set

0 commit comments

Comments
 (0)