From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1NOTky-0001EI-OV for mharc-grub-devel@gnu.org; Sat, 26 Dec 2009 05:20:20 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NOTkw-0001Dz-7S for grub-devel@gnu.org; Sat, 26 Dec 2009 05:20:18 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NOTkp-0001DP-18 for grub-devel@gnu.org; Sat, 26 Dec 2009 05:20:15 -0500 Received: from [199.232.76.173] (port=57485 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NOTko-0001DM-Oj for grub-devel@gnu.org; Sat, 26 Dec 2009 05:20:10 -0500 Received: from 197.red-80-32-81.staticip.rima-tde.net ([80.32.81.197]:52970 helo=mail.pina.cat) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NOTko-0003oR-3u for grub-devel@gnu.org; Sat, 26 Dec 2009 05:20:10 -0500 Received: from pinux (unknown [192.168.0.108]) by mail.pina.cat (Postfix) with ESMTPA id 5B1ED2894B244 for ; Sat, 26 Dec 2009 11:20:08 +0100 (CET) Received: by pinux (Postfix, from userid 1000) id 00C808D3F; Sat, 26 Dec 2009 10:20:27 +0000 (GMT) Date: Sat, 26 Dec 2009 11:20:27 +0100 From: Carles Pina i Estany To: grub-devel@gnu.org Message-ID: <20091226102027.GA12549@pina.cat> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="17pEHd4RhPHOinZp" Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Subject: user messages X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Dec 2009 10:20:18 -0000 --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello, Find an attached patch. Linux should be always capitalized. All Linux loaders should have the same message: consistency, better LZMA and less work for translators. If you prefer another string tell me and I'll change. -- Carles Pina i Estany http://pinux.info --17pEHd4RhPHOinZp Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="messages.patch" === modified file 'ChangeLog' --- ChangeLog 2009-12-26 10:01:33 +0000 +++ ChangeLog 2009-12-26 10:16:01 +0000 @@ -1,5 +1,15 @@ 2009-12-27 Carles Pina i Estany + * loader/i386/efi/linux.c (GRUB_MOD_INIT): Improve command summary. + * loader/i386/ieee1275/linux.c (GRUB_MOD_INIT): Likewise. + * loader/i386/linux.c (GRUB_MOD_INIT): Likewise. + * loader/i386/pc/linux.c (GRUB_MOD_INIT): Likewise. + * loader/powerpc/ieee1275/linux.c (GRUB_MOD_INIT): Likewise. + * loader/sparc64/ieee1275/linux.c (GRUB_MOD_INIT): Likewise. + * loader/xnu.c (GRUB_MOD_INIT): Likewise. + +2009-12-27 Carles Pina i Estany + * efiemu/main.c (GRUB_MOD_INIT): Fix capitalizations and/or full stops. * kern/corecmd.c (grub_register_core_commands): Likewise. === modified file 'loader/i386/efi/linux.c' --- loader/i386/efi/linux.c 2009-12-26 10:01:33 +0000 +++ loader/i386/efi/linux.c 2009-12-26 10:11:47 +0000 @@ -989,9 +989,9 @@ static grub_command_t cmd_linux, cmd_ini GRUB_MOD_INIT(linux) { cmd_linux = grub_register_command ("linux", grub_cmd_linux, - 0, "Load linux."); + 0, "Load a Linux kernel."); cmd_initrd = grub_register_command ("initrd", grub_cmd_initrd, - 0, "Load initrd."); + 0, "Load an initrd."); my_mod = mod; } === modified file 'loader/i386/ieee1275/linux.c' --- loader/i386/ieee1275/linux.c 2009-12-26 10:01:33 +0000 +++ loader/i386/ieee1275/linux.c 2009-12-26 10:12:05 +0000 @@ -276,9 +276,9 @@ static grub_command_t cmd_linux, cmd_ini GRUB_MOD_INIT(linux) { cmd_linux = grub_register_command ("linux", grub_cmd_linux, - 0, "Load linux."); + 0, "Load a Linux kernel."); cmd_initrd = grub_register_command ("initrd", grub_cmd_initrd, - 0, "Load initrd."); + 0, "Load an initrd."); my_mod = mod; } === modified file 'loader/i386/linux.c' --- loader/i386/linux.c 2009-12-26 10:01:33 +0000 +++ loader/i386/linux.c 2009-12-26 10:10:15 +0000 @@ -982,9 +982,9 @@ static grub_command_t cmd_linux, cmd_ini GRUB_MOD_INIT(linux) { cmd_linux = grub_register_command ("linux", grub_cmd_linux, - 0, "Load linux."); + 0, "Load a Linux kernel."); cmd_initrd = grub_register_command ("initrd", grub_cmd_initrd, - 0, "Load initrd."); + 0, "Load an initrd."); my_mod = mod; } === modified file 'loader/i386/pc/linux.c' --- loader/i386/pc/linux.c 2009-12-26 10:01:33 +0000 +++ loader/i386/pc/linux.c 2009-12-26 10:12:34 +0000 @@ -383,10 +383,10 @@ GRUB_MOD_INIT(linux16) { cmd_linux = grub_register_command ("linux16", grub_cmd_linux, - 0, "Load linux."); + 0, "Load a Linux kernel."); cmd_initrd = grub_register_command ("initrd16", grub_cmd_initrd, - 0, "Load initrd."); + 0, "Load an initrd."); my_mod = mod; } === modified file 'loader/powerpc/ieee1275/linux.c' --- loader/powerpc/ieee1275/linux.c 2009-12-26 10:01:33 +0000 +++ loader/powerpc/ieee1275/linux.c 2009-12-26 10:12:56 +0000 @@ -349,7 +349,7 @@ static grub_command_t cmd_linux, cmd_ini GRUB_MOD_INIT(linux) { cmd_linux = grub_register_command ("linux", grub_cmd_linux, - 0, "Load a linux kernel."); + 0, "Load a Linux kernel."); cmd_initrd = grub_register_command ("initrd", grub_cmd_initrd, 0, "Load an initrd."); my_mod = mod; === modified file 'loader/sparc64/ieee1275/linux.c' --- loader/sparc64/ieee1275/linux.c 2009-12-26 10:01:33 +0000 +++ loader/sparc64/ieee1275/linux.c 2009-12-26 10:13:17 +0000 @@ -516,7 +516,7 @@ GRUB_MOD_INIT(linux) fetch_translations (); cmd_linux = grub_register_command ("linux", grub_cmd_linux, - 0, "Load a linux kernel."); + 0, "Load a Linux kernel."); cmd_initrd = grub_register_command ("initrd", grub_cmd_initrd, 0, "Load an initrd".); my_mod = mod; === modified file 'loader/xnu.c' --- loader/xnu.c 2009-12-26 10:01:33 +0000 +++ loader/xnu.c 2009-12-26 10:09:38 +0000 @@ -1404,9 +1404,9 @@ static grub_command_t cmd_kextdir, cmd_r GRUB_MOD_INIT(xnu) { cmd_kernel = grub_register_command ("xnu_kernel", grub_cmd_xnu_kernel, 0, - "Load a xnu kernel."); + "Load a XNU kernel."); cmd_kernel64 = grub_register_command ("xnu_kernel64", grub_cmd_xnu_kernel64, - 0, "Load a 64-bit xnu kernel."); + 0, "Load a 64-bit XNU kernel."); cmd_mkext = grub_register_command ("xnu_mkext", grub_cmd_xnu_mkext, 0, "Load XNU extension package."); cmd_kext = grub_register_command ("xnu_kext", grub_cmd_xnu_kext, 0, --17pEHd4RhPHOinZp--