diff options
author | 谢致邦 (XIE Zhibang) <Yeking@Red54.com> | 2025-03-30 16:31:09 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-04-10 14:41:51 +0200 |
commit | 7e75c9ddcb61022770a87fcae10e47ec9041254c (patch) | |
tree | cd9829879741ad9f03d407d883fed703163a5564 | |
parent | 085498a28743309254a3ac7cec4002cd13ebd407 (diff) |
LoongArch: Fix help text of CMDLINE_EXTEND in Kconfig
[ Upstream commit be216cbc1ddf99a51915414ce147311c0dfd50a2 ]
It is the built-in command line appended to the bootloader command line,
not the bootloader command line appended to the built-in command line.
Fixes: fa96b57c1490 ("LoongArch: Add build infrastructure")
Signed-off-by: 谢致邦 (XIE Zhibang) <Yeking@Red54.com>
Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | arch/loongarch/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/loongarch/Kconfig b/arch/loongarch/Kconfig index dae3a9104ca6..bcd22ce00af2 100644 --- a/arch/loongarch/Kconfig +++ b/arch/loongarch/Kconfig @@ -378,8 +378,8 @@ config CMDLINE_BOOTLOADER config CMDLINE_EXTEND bool "Use built-in to extend bootloader kernel arguments" help - The command-line arguments provided during boot will be - appended to the built-in command line. This is useful in + The built-in command line will be appended to the command- + line arguments provided during boot. This is useful in cases where the provided arguments are insufficient and you don't want to or cannot modify them. |