diff options
author | Mike Gilbert <floppym@gentoo.org> | 2014-02-28 18:07:13 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2014-02-28 18:07:13 +0000 |
commit | 7d37787d4fde99abf5b0ce98cbec0d1ceaf30f35 (patch) | |
tree | 8c4d44a420e40c6a110e580b48ba07fe105dc883 /sys-boot | |
parent | Stable for HPPA (bug #503034). (diff) | |
download | gentoo-2-7d37787d4fde99abf5b0ce98cbec0d1ceaf30f35.tar.gz gentoo-2-7d37787d4fde99abf5b0ce98cbec0d1ceaf30f35.tar.bz2 gentoo-2-7d37787d4fde99abf5b0ce98cbec0d1ceaf30f35.zip |
Add a couple of examples for GRUB_CMDLINE_LINUX.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/grub/ChangeLog | 5 | ||||
-rw-r--r-- | sys-boot/grub/files/grub.default-3 | 12 |
2 files changed, 14 insertions, 3 deletions
diff --git a/sys-boot/grub/ChangeLog b/sys-boot/grub/ChangeLog index 29a45d237078..edff3ed9de48 100644 --- a/sys-boot/grub/ChangeLog +++ b/sys-boot/grub/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-boot/grub # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.304 2014/02/13 02:29:59 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.305 2014/02/28 18:07:13 floppym Exp $ + + 28 Feb 2014; Mike Gilbert <floppym@gentoo.org> files/grub.default-3: + Add a couple of examples for GRUB_CMDLINE_LINUX. 13 Feb 2014; Mike Gilbert <floppym@gentoo.org> grub-2.02_beta2.ebuild, grub-9999-r1.ebuild: diff --git a/sys-boot/grub/files/grub.default-3 b/sys-boot/grub/files/grub.default-3 index cca096b83581..9eba9fb2089a 100644 --- a/sys-boot/grub/files/grub.default-3 +++ b/sys-boot/grub/files/grub.default-3 @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/files/grub.default-3,v 1.1 2013/12/19 14:57:24 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/files/grub.default-3,v 1.2 2014/02/28 18:07:13 floppym Exp $ # # To populate all changes in this file you need to regenerate your # grub configuration file afterwards: @@ -20,6 +20,14 @@ GRUB_DISTRIBUTOR="Gentoo" # Append parameters to the linux kernel command line #GRUB_CMDLINE_LINUX="" +# +# Examples: +# +# Boot with network interface renaming disabled +# GRUB_CMDLINE_LINUX="net.ifnames=0" +# +# Boot with systemd instead of sysvinit (openrc) +# GRUB_CMDLINE_LINUX="init=/usr/lib/systemd/systemd" # Append parameters to the linux kernel command line for non-recovery entries #GRUB_CMDLINE_LINUX_DEFAULT="" |