From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1VfVCo-00031O-EZ for mharc-grub-devel@gnu.org; Sun, 10 Nov 2013 08:37:34 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56681) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VfVCe-0002w8-8l for grub-devel@gnu.org; Sun, 10 Nov 2013 08:37:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VfVCV-0002Cj-RZ for grub-devel@gnu.org; Sun, 10 Nov 2013 08:37:24 -0500 Received: from mail-la0-x234.google.com ([2a00:1450:4010:c03::234]:33617) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VfVCV-0002Cf-Ir for grub-devel@gnu.org; Sun, 10 Nov 2013 08:37:15 -0500 Received: by mail-la0-f52.google.com with SMTP id eo20so3423lab.11 for ; Sun, 10 Nov 2013 05:37:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=Hxy5/bretLw8bmu3gSSgje/Vst27evG52QXFsTSlCTs=; b=ASvNWNXh2HVxvzTOWXejlCRzVfId8ISZSgEkQuDOk8g77NTP11Pz9LmHVEXnyyE1CR qzr8zJ7XkSC1AAcE4cTiE4/cI1AZWNqd+GygiPjTo6JQKoApHisfpczhpbQ+QauiV9+7 M4Wx4J/n2j3ew/LxYwTD2MTgN/xS5/I9HSLsM3HBsR3T/jrma3IITSN/4aGR885c9iO1 dJLhcxxFK5dvk1nZaP/snVb5vtiSmwKqUvMSVhcvuT77a6UN9C5qqgyU1zZGgN6UjeKh ISAQjCAAFUifjyeCQwIMNMzKPc5dK0of9ugw5PiONC4KM5RpIeU6pneu7eMNeZ2747UK xB5w== X-Received: by 10.112.210.136 with SMTP id mu8mr1574173lbc.25.1384090634415; Sun, 10 Nov 2013 05:37:14 -0800 (PST) Received: from localhost.localdomain (ppp91-76-174-89.pppoe.mtu-net.ru. [91.76.174.89]) by mx.google.com with ESMTPSA id ed8sm13247616lbc.11.2013.11.10.05.37.13 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 10 Nov 2013 05:37:14 -0800 (PST) From: Andrey Borzenkov To: grub-devel@gnu.org Subject: [PATCH] grub-reboot no more sets saved_default Date: Sun, 10 Nov 2013 17:37:04 +0400 Message-Id: <1384090624-3857-1-git-send-email-arvidjaar@gmail.com> X-Mailer: git-send-email 1.8.1.4 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c03::234 X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 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: Sun, 10 Nov 2013 13:37:32 -0000 Remove reference to grub-default from description of saved default entry. Also mention that GRUB_DEFAULT=saved depends on availability of environment block. --- docs/grub.texi | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/grub.texi b/docs/grub.texi index ead8fbd..cf11723 100644 --- a/docs/grub.texi +++ b/docs/grub.texi @@ -1277,8 +1277,9 @@ works it's not recommended since titles often contain unstable device names and may be translated If you set this to @samp{saved}, then the default menu entry will be that -saved by @samp{GRUB_SAVEDEFAULT}, @command{grub-set-default}, or -@command{grub-reboot}. +saved by @samp{GRUB_SAVEDEFAULT} or @command{grub-set-default}. This relies on +the environment block, which may not be available in all situations +(@pxref{Environment block}). The default is @samp{0}. @@ -1287,7 +1288,7 @@ If this option is set to @samp{true}, then, when an entry is selected, save it as a new default entry for use by future runs of GRUB. This is only useful if @samp{GRUB_DEFAULT=saved}; it is a separate option because @samp{GRUB_DEFAULT=saved} is useful without this option, in conjunction with -@command{grub-set-default} or @command{grub-reboot}. Unset by default. +@command{grub-set-default}. Unset by default. This option relies on the environment block, which may not be available in all situations (@pxref{Environment block}). -- tg: (3369025..) u/grub-reboot_default (depends on: master)