From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lists.gentoo.org ([140.105.134.102] helo=robin.gentoo.org) by nuthatch.gentoo.org with esmtp (Exim 4.50) id 1EeHsl-0003Tx-7s for garchives@archives.gentoo.org; Mon, 21 Nov 2005 20:03:19 +0000 Received: from robin.gentoo.org (localhost [127.0.0.1]) by robin.gentoo.org (8.13.5/8.13.5) with SMTP id jALJvrF4026489; Mon, 21 Nov 2005 19:57:53 GMT Received: from smtp.gentoo.org (smtp.gentoo.org [134.68.220.30]) by robin.gentoo.org (8.13.5/8.13.5) with ESMTP id jALJvkcT006336 for ; Mon, 21 Nov 2005 19:57:48 GMT Message-Id: <200511211957.jALJvkcT006336@robin.gentoo.org> Received: from lark.gentoo.osuosl.org ([140.211.166.177] helo=lark.gentoo.org) by smtp.gentoo.org with smtp (Exim 4.43) id 1EeGQc-0007fF-6p for gentoo-doc-cvs@lists.gentoo.org; Mon, 21 Nov 2005 18:30:10 +0000 Received: by lark.gentoo.org (sSMTP sendmail emulation); Mon, 21 Nov 2005 18:29:52 +0000 From: "Xavier Neys" Date: Mon, 21 Nov 2005 18:29:52 +0000 To: gentoo-doc-cvs@lists.gentoo.org Subject: [gentoo-doc-cvs] cvs commit: hb-install-amd64-bootloader.xml Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-doc-cvs@gentoo.org Reply-to: docs-team@lists.gentoo.org X-Archives-Salt: f4298160-e910-4ad3-8105-4f9bcc2c2deb X-Archives-Hash: 1ef8933867bad006e73b96c4b716bbf4 neysx 05/11/21 18:29:52 Modified: xml/htdocs/doc/en/handbook/2005.1 hb-install-amd64-bootloader.xml hb-install-x86-bootloader.xml Log: #108493 grub.conf examples should include /boot/ for kernel and initrd Revision Changes Path 1.7 +28 -21 xml/htdocs/doc/en/handbook/2005.1/hb-install-amd64-bootloader.xml file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/2005.1/hb-install-amd64-bootloader.xml?rev=1.7&content-type=text/x-cvsweb-markup&cvsroot=gentoo plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/2005.1/hb-install-amd64-bootloader.xml?rev=1.7&content-type=text/plain&cvsroot=gentoo diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/2005.1/hb-install-amd64-bootloader.xml.diff?r1=1.6&r2=1.7&cvsroot=gentoo Index: hb-install-amd64-bootloader.xml =================================================================== RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2005.1/hb-install-amd64-bootloader.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- hb-install-amd64-bootloader.xml 22 Oct 2005 00:17:35 -0000 1.6 +++ hb-install-amd64-bootloader.xml 21 Nov 2005 18:29:52 -0000 1.7 @@ -4,12 +4,12 @@ - + -5.3 -2005-10-22 +5.4 +2005-11-21
Making your Choice @@ -182,7 +182,7 @@ To install GRUB, let's first emerge it.

-
+
 # emerge grub
 
@@ -194,7 +194,7 @@ editor):

-
+
 # nano -w /boot/grub/grub.conf
 
@@ -221,19 +221,19 @@ line since JFS needs to replay its log before it allows read-write mounting. -
+
 # Which listing to boot as default. 0 is the first, 1 the second etc.
 default 0
 # How many seconds to wait before the default listing is booted.
 timeout 30
 # Nice, fat splash-image to spice things up :)
 # Comment out if you don't have a graphics card installed
-splashimage=(hd0,0)/grub/splash.xpm.gz
+splashimage=(hd0,0)/boot/grub/splash.xpm.gz
 
 title=Gentoo Linux 2.6.12
 # Partition where the kernel image (or operating system) is located
 root (hd0,0)
-kernel /kernel-2.6.12-gentoo-r6 root=/dev/hda3
+kernel /boot/kernel-2.6.12-gentoo-r6 root=/dev/hda3
 
 # The next four lines are only if you dualboot with a Windows system.
 # In this case, Windows is hosted on /dev/hda6.
@@ -243,16 +243,15 @@
 chainloader +1
 
- -
+
 default 0
 timeout 30
-splashimage=(hd0,0)/grub/splash.xpm.gz
+splashimage=(hd0,0)/boot/grub/splash.xpm.gz
 
 title=Gentoo Linux 2.6.12-gentoo-r6
 root (hd0,0)
-kernel /kernel-2.6.12-gentoo-r6 root=/dev/ram0 init=/linuxrc ramdisk=8192 real_root=/dev/hda3 udev
-initrd /initramfs-genkernel-amd64-2.6.12-gentoo-r6
+kernel /boot/kernel-2.6.12-gentoo-r6 root=/dev/ram0 init=/linuxrc ramdisk=8192 real_root=/dev/hda3 udev
+initrd /boot/initramfs-genkernel-amd64-2.6.12-gentoo-r6
 
 # Only in case you want to dual-boot
 title=Windows XP
@@ -261,15 +260,23 @@
 chainloader +1
 
- - -If you use a different partitioning scheme and/or kernel image, adjust -accordingly. However, make sure that anything that follows a GRUB-device -(such as (hd0,0)) is relative to the mountpoint, not the root. In -other words, (hd0,0)/grub/splash.xpm.gz is in reality -/boot/grub/splash.xpm.gz since (hd0,0) is +

+If you used a different partitioning scheme and/or kernel image, adjust +accordingly. However, make sure that anything that follows a GRUB-device (such +as (hd0,0)) is relative to the mountpoint, not the root. In other +words, (hd0,0)/grub/splash.xpm.gz is in reality +/boot/grub/splash.xpm.gz since (hd0,0) is /boot. - +

+ +

+Besides, if you chose to use a different partitioning scheme and did not put +/boot in a separate partition, the /boot prefix used +in the above code samples is really required. If you followed our +suggested partitioning plan, the /boot prefix it not required, but +a boot symlink makes it work. In short, the above examples should +work whether you defined a separate /boot partition or not. +

If you need to pass any additional options to the kernel, simply add 1.5 +28 -21 xml/htdocs/doc/en/handbook/2005.1/hb-install-x86-bootloader.xml file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/2005.1/hb-install-x86-bootloader.xml?rev=1.5&content-type=text/x-cvsweb-markup&cvsroot=gentoo plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/2005.1/hb-install-x86-bootloader.xml?rev=1.5&content-type=text/plain&cvsroot=gentoo diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/2005.1/hb-install-x86-bootloader.xml.diff?r1=1.4&r2=1.5&cvsroot=gentoo Index: hb-install-x86-bootloader.xml =================================================================== RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2005.1/hb-install-x86-bootloader.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- hb-install-x86-bootloader.xml 7 Sep 2005 18:50:37 -0000 1.4 +++ hb-install-x86-bootloader.xml 21 Nov 2005 18:29:52 -0000 1.5 @@ -4,12 +4,12 @@ - + -5.0 -2005-08-08 +5.1 +2005-11-21

Making your Choice @@ -201,7 +201,7 @@ To install GRUB, let's first emerge it:

-
+
 # emerge grub
 
@@ -212,7 +212,7 @@ nano (or, if applicable, another editor):

-
+
 # nano -w /boot/grub/grub.conf
 
@@ -241,19 +241,19 @@ line since JFS needs to replay its log before it allows read-write mounting. -
+
 # Which listing to boot as default. 0 is the first, 1 the second etc.
 default 0
 # How many seconds to wait before the default listing is booted.
 timeout 30
 # Nice, fat splash-image to spice things up :)
 # Comment out if you don't have a graphics card installed
-splashimage=(hd0,0)/grub/splash.xpm.gz
+splashimage=(hd0,0)/boot/grub/splash.xpm.gz
 
 title=Gentoo Linux 2.6.11-r11
 # Partition where the kernel image (or operating system) is located
 root (hd0,0)
-kernel /kernel-2.6.11-gentoo-r11 root=/dev/hda3
+kernel /boot/kernel-2.6.11-gentoo-r11 root=/dev/hda3
 
 # The next four lines are only if you dualboot with a Windows system.
 # In this case, Windows is hosted on /dev/hda6.
@@ -263,16 +263,15 @@
 chainloader +1
 
- -
+
 default 0
 timeout 30
-splashimage=(hd0,0)/grub/splash.xpm.gz
+splashimage=(hd0,0)/boot/grub/splash.xpm.gz
 
 title=Gentoo Linux 2.6.11-r11
 root (hd0,0)
-kernel /kernel-genkernel-x86-2.6.11-gentoo-r11 root=/dev/ram0 init=/linuxrc ramdisk=8192 real_root=/dev/hda3 udev
-initrd /initramfs-genkernel-x86-2.6.11-gentoo-r11
+kernel /boot/kernel-genkernel-x86-2.6.11-gentoo-r11 root=/dev/ram0 init=/linuxrc ramdisk=8192 real_root=/dev/hda3 udev
+initrd /boot/initramfs-genkernel-x86-2.6.11-gentoo-r11
 
 # Only in case you want to dual-boot
 title=Windows XP
@@ -281,15 +280,23 @@
 chainloader +1
 
- - -If you use a different partitioning scheme and/or kernel image, adjust -accordingly. However, make sure that anything that follows a GRUB-device -(such as (hd0,0)) is relative to the mountpoint, not the root. In -other words, (hd0,0)/grub/splash.xpm.gz is in reality -/boot/grub/splash.xpm.gz since (hd0,0) is +

+If you used a different partitioning scheme and/or kernel image, adjust +accordingly. However, make sure that anything that follows a GRUB-device (such +as (hd0,0)) is relative to the mountpoint, not the root. In other +words, (hd0,0)/grub/splash.xpm.gz is in reality +/boot/grub/splash.xpm.gz since (hd0,0) is /boot. - +

+ +

+Besides, if you chose to use a different partitioning scheme and did not put +/boot in a separate partition, the /boot prefix used +in the above code samples is really required. If you followed our +suggested partitioning plan, the /boot prefix it not required, but +a boot symlink makes it work. In short, the above examples should +work whether you defined a separate /boot partition or not. +

If you need to pass any additional options to the kernel, simply add -- gentoo-doc-cvs@gentoo.org mailing list