diff options
author | 谢致邦 (XIE Zhibang) <Yeking@Red54.com> | 2025-03-30 11:31:09 +0300 |
---|---|---|
committer | Huacai Chen <chenhuacai@loongson.cn> | 2025-03-30 11:31:09 +0300 |
commit | be216cbc1ddf99a51915414ce147311c0dfd50a2 (patch) | |
tree | cdfb45a40b727f055e690a1461b72f83503aeb20 | |
parent | 892a79634196d2729b81bb8e5b029d095704df63 (diff) | |
download | linux-be216cbc1ddf99a51915414ce147311c0dfd50a2.tar.xz |
LoongArch: Fix help text of CMDLINE_EXTEND in Kconfig
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>
-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 5e009126eaa1..02fc28020ddd 100644 --- a/arch/loongarch/Kconfig +++ b/arch/loongarch/Kconfig @@ -386,8 +386,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. |