[DNM] [TMP] HACK: Disable log level from being set
authordeadman96385 <seanhoyt963@gmail.com>
Thu, 1 Jul 2021 20:46:58 +0000 (13:46 -0700)
committerNolen Johnson <johnsonnolen@gmail.com>
Sat, 8 Jul 2023 22:39:08 +0000 (18:39 -0400)
* This allows the kernel log to be piped to uart by default.

Change-Id: I7c19a152daea7b920b247a2cce608abf13183f93

init/main.c

index cc8df92d7206c78d3b2be6b7e144aebab48f561e..0adbbf79d961271fe40badb67087e6387911b2da 100644 (file)
@@ -216,25 +216,6 @@ static int __init quiet_kernel(char *str)
 early_param("debug", debug_kernel);
 early_param("quiet", quiet_kernel);
 
-static int __init loglevel(char *str)
-{
-       int newlevel;
-
-       /*
-        * Only update loglevel value when a correct setting was passed,
-        * to prevent blind crashes (when loglevel being set to 0) that
-        * are quite hard to debug
-        */
-       if (get_option(&str, &newlevel)) {
-               console_loglevel = newlevel;
-               return 0;
-       }
-
-       return -EINVAL;
-}
-
-early_param("loglevel", loglevel);
-
 /* Change NUL term back to "=", to make "param" the whole string. */
 static int __init repair_env_string(char *param, char *val,
                                    const char *unused, void *arg)