diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-08-03 10:38:26 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-08-03 10:38:26 +0000 |
commit | 9ecf8fb1cf39ac093bfd38125f6048dc0e9554d8 (patch) | |
tree | a07cb75fed9a13b0e32561610e15a242b50e8058 | |
parent | 912857ec6c0995281460260de8da9f19277eb2f3 (diff) | |
download | coreboot-9ecf8fb1cf39ac093bfd38125f6048dc0e9554d8.tar.xz |
Remove welcome message from elfboot. None of the other subsystems have their
own welcome message.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3468 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/boot/elfboot.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/boot/elfboot.c b/src/boot/elfboot.c index 03e9561d61..71ecddf8ab 100644 --- a/src/boot/elfboot.c +++ b/src/boot/elfboot.c @@ -609,11 +609,7 @@ int elfboot(struct lb_memory *mem) int i, result; result = 0; - printk_info("\n"); - printk_info("Welcome to %s, the open sourced starter.\n", BOOTLOADER); - printk_info("January 2002, Eric Biederman.\n"); - printk_info("Version %s\n", BOOTLOADER_VERSION); - printk_info("\n"); + printk_debug("\nelfboot: Attempting to load payload.\n"); post_code(0xf8); if (stream_init() < 0) { |