Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1297809 > unrolled thread

[PATCH 1/1] first line in booting the kernel

Started byAlexandru GOIA <alexandru.goia@cti.pub.ro>
First post2015-12-24 11:20 +0100
Last post2015-12-24 11:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 1/1] first line in booting the kernel Alexandru GOIA <alexandru.goia@cti.pub.ro> - 2015-12-24 11:20 +0100

#1297809 — [PATCH 1/1] first line in booting the kernel

FromAlexandru GOIA <alexandru.goia@cti.pub.ro>
Date2015-12-24 11:20 +0100
Subject[PATCH 1/1] first line in booting the kernel
Message-ID<qJba2-5to-19@gated-at.bofh.it>
What it does : first line of booting kernel, as seen in dmesg(1), will be the Linux kernel signature
(version, compiler, compiler hostname).

What it solves : it appers ahead of cgroup messages at booting.


So, instead of the unaesthetic lines :

Initializing cgroup subsys cpuset
Initializing cgroup subsys cpu
Initializing cgroup subsys cpuacct
Linux version 4 ....

... We will have :

Linux version 4 ...
Initializing cgroup subsys cpuset
Initializing cgroup subsys cpu
Initializing cgroup subsys cpuacct

As normal .


<code>
--- linux-4.4-rc6/init/main.c.original	2015-12-24 09:55:58.208811356 +0200
+++ linux-4.4-rc6/init/main.c	2015-12-24 09:57:06.364813237 +0200
@@ -513,6 +513,8 @@
 	 */
 	boot_init_stack_canary();
 
+	pr_notice("%s", linux_banner);
+
 	cgroup_init_early();
 
 	local_irq_disable();
@@ -524,7 +526,6 @@
  */
 	boot_cpu_init();
 	page_address_init();
-	pr_notice("%s", linux_banner);
 	setup_arch(&command_line);
 	mm_init_cpumask(&init_mm);
 	setup_command_line(command_line);

</code>--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web