From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1KaoXc-0004mC-MA for mharc-grub-devel@gnu.org; Wed, 03 Sep 2008 05:20:44 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KaoXa-0004lY-1O for grub-devel@gnu.org; Wed, 03 Sep 2008 05:20:42 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KaoXY-0004kv-Rl for grub-devel@gnu.org; Wed, 03 Sep 2008 05:20:41 -0400 Received: from [199.232.76.173] (port=58257 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KaoXY-0004kk-11 for grub-devel@gnu.org; Wed, 03 Sep 2008 05:20:40 -0400 Received: from fg-out-1718.google.com ([72.14.220.159]:4287) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KaoXY-0002g3-2V for grub-devel@gnu.org; Wed, 03 Sep 2008 05:20:40 -0400 Received: by fg-out-1718.google.com with SMTP id l26so108435fgb.30 for ; Wed, 03 Sep 2008 02:20:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:x-enigmail-version:content-type :content-transfer-encoding; bh=Nq6hR8/0MRaXI2LXUHFft7qJSQoZZO8ajPLgmrbXGFY=; b=dXMGpRB/CUOiYvZy8yKQ1S2pXhwjeBjKtyqSu4Ftz1R1gOeAQfbcS3kz6D4sbI97O8 DF447sgUKI8+/weZ7Qho4vXj7SfKs3cH3d4SfFz63JyqKhphvHX1iBKxqlKHLlyfTazP 3VCphucvCwrdmvPtMyjGnZLwNvYT9IH2SmJ9I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :x-enigmail-version:content-type:content-transfer-encoding; b=Oipv1k8RRH6MYPLZMY+XLfiud5opLcYDNiNAve+BmMJzfdHMYO5FvReBNWasfSVX5c 9kTXfL3alUYWwsIhUJ92jLVskPCwSpIwyCOU7mfg06cxFqFH3qYmK4H3h7E6AW+4u4h1 KUFatGX5EAIn9sZJrNHBdYgA+W03ep4eJrvVI= Received: by 10.86.80.17 with SMTP id d17mr6456881fgb.41.1220433638366; Wed, 03 Sep 2008 02:20:38 -0700 (PDT) Received: from ?192.168.1.15? ( [83.76.170.177]) by mx.google.com with ESMTPS id 12sm8127597fgg.0.2008.09.03.02.20.36 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 03 Sep 2008 02:20:37 -0700 (PDT) Message-ID: <48BE56E3.7090202@gmail.com> Date: Wed, 03 Sep 2008 11:20:35 +0200 From: phcoder User-Agent: Thunderbird 2.0.0.16 (X11/20080724) MIME-Version: 1.0 To: The development of GRUB 2 X-Enigmail-Version: 0.95.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) Subject: [RFC] add custom strings to the help list X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Sep 2008 09:20:42 -0000 Hello all. In old good time of grub-legacy one could obtain the help about "root" command with > help root Now "root" is a variable and so "help root " gives no information. I suggest that it should be possible to add custom strings to help command in normal mode. Something like grub_register_help (title, contents); grub_unregister_help (title); what do you think about it? Vladimir 'phcoder' Serbinenko P.S. Of course I'm ready to implement it