Small cosmetics of the boot loader.

* Updated copyright to 2012.
* Corrected capitalization of "Welcome To The..."
* Added info for serial debug "(115200, 8N1)"
This commit is contained in:
Humdinger 2012-03-06 18:37:48 +01:00
parent 628e4c98bd
commit 0a1b16486b
2 changed files with 4 additions and 4 deletions

View File

@ -704,7 +704,7 @@ add_boot_volume_menu(Directory* bootVolume)
menu->AddItem(item = new(nothrow) MenuItem("Rescan volumes"));
item->SetHelpText("Please insert a Haiku CD-ROM or attach a USB disk - "
"depending on your system, you can then boot from them.");
"depending on your system, you can then boot from there.");
item->SetType(MENU_ITEM_NO_CHOICE);
if (count == 0)
item->Select(true);
@ -865,7 +865,7 @@ add_debug_menu()
item->SetData("serial_debug_output");
item->SetType(MENU_ITEM_MARKABLE);
item->SetHelpText("Turns on forwarding the syslog output to the serial "
"interface.");
"interface (115200, 8N1).");
menu->AddItem(item
= new(nothrow) MenuItem("Enable on screen debug output"));

View File

@ -205,11 +205,11 @@ draw_menu(Menu *menu)
console_set_color(kTextColor, kBackgroundColor);
console_clear_screen();
print_centered(1, "Welcome To The");
print_centered(1, "Welcome to the");
print_centered(2, "Haiku Boot Loader");
console_set_color(kCopyrightColor, kBackgroundColor);
print_centered(4, "Copyright 2004-2011 Haiku Inc.");
print_centered(4, "Copyright 2004-2012 Haiku Inc.");
if (menu->Title()) {
console_set_cursor(kOffsetX, kFirstLine - 2);