VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Shaokun Zhang <zhangshaokun@hisilicon.com> 2020-05-09 16:33:55 +0800 committer: Jiri Kosina <jkosina@suse.cz> 2020-09-01 14:21:55 +0200 commit: 36c6aa26e9ca393b31af166965cf51536176703b parent: 2f078a0fe08d2f8a4fd030367663f808b6e21b34
Commit Summary:
bootconfig: Fix kernel message mentioning CONFIG_BOOT_CONFIG
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/init/main.c b/init/main.c
index ae78fb68d231..92773a5daf8d 100644
--- a/init/main.c
+++ b/init/main.c
@@ -467,7 +467,7 @@ static void __init setup_boot_config(const char *cmdline)
 
 static int __init warn_bootconfig(char *str)
 {
-	pr_warn("WARNING: 'bootconfig' found on the kernel command line but CONFIG_BOOTCONFIG is not set.\n");
+	pr_warn("WARNING: 'bootconfig' found on the kernel command line but CONFIG_BOOT_CONFIG is not set.\n");
 	return 0;
 }
 early_param("bootconfig", warn_bootconfig);