Commit 6971881f authored by Vineet Gupta's avatar Vineet Gupta

ARC: [cmdline] Remove CONFIG_CMDLINE

Given that DeviceTree /bootargs can provide similar functionality,
no point in providing duplicate infrastructure.
Signed-off-by: default avatarVineet Gupta <vgupta@synopsys.com>
parent 330db333
...@@ -408,13 +408,6 @@ config ARC_DBG_TLB_MISS_COUNT ...@@ -408,13 +408,6 @@ config ARC_DBG_TLB_MISS_COUNT
Counts number of I and D TLB Misses and exports them via Debugfs Counts number of I and D TLB Misses and exports them via Debugfs
The counters can be cleared via Debugfs as well The counters can be cleared via Debugfs as well
config CMDLINE
string "Kernel command line to built-in"
default "print-fatal-signals=1"
help
The default command line which will be appended to the optional
u-boot provided command line (see below)
config CMDLINE_UBOOT config CMDLINE_UBOOT
bool "Support U-boot kernel command line passing" bool "Support U-boot kernel command line passing"
default n default n
...@@ -423,8 +416,8 @@ config CMDLINE_UBOOT ...@@ -423,8 +416,8 @@ config CMDLINE_UBOOT
command line from the U-boot environment to the Linux kernel then command line from the U-boot environment to the Linux kernel then
switch this option on. switch this option on.
ARC U-boot will setup the cmdline in RAM/flash and set r2 to point ARC U-boot will setup the cmdline in RAM/flash and set r2 to point
to it. kernel startup code will copy the string into cmdline buffer to it. kernel startup code will append this to DeviceTree
and also append CONFIG_CMDLINE. /bootargs provided cmdline args.
config ARC_BUILTIN_DTB_NAME config ARC_BUILTIN_DTB_NAME
string "Built in DTB" string "Built in DTB"
......
...@@ -322,11 +322,6 @@ void __init setup_arch(char **cmdline_p) ...@@ -322,11 +322,6 @@ void __init setup_arch(char **cmdline_p)
/* Make sure that a whitespace is inserted before */ /* Make sure that a whitespace is inserted before */
strlcat(command_line, " ", sizeof(command_line)); strlcat(command_line, " ", sizeof(command_line));
#endif #endif
/*
* Append .config cmdline to base command line, which might already
* contain u-boot "bootargs" (handled by head.S, if so configured)
*/
strlcat(command_line, CONFIG_CMDLINE, sizeof(command_line));
/* Save unparsed command line copy for /proc/cmdline */ /* Save unparsed command line copy for /proc/cmdline */
strlcpy(boot_command_line, command_line, COMMAND_LINE_SIZE); strlcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment