Gentoo Archives: gentoo-dev

From: Mando Escamilla <mando@×××××.org>
To: gentoo-dev@g.o
Subject: Re: [gentoo-dev] how recompile kernel
Date: Sun, 14 Apr 2002 19:07:54
Message-Id: 3CB9E18B.2030200@mando.org
In Reply to: [gentoo-dev] how recompile kernel by Daniel Kerber
1 Daniel Kerber wrote:
2
3 >Hi...
4 >
5 >I need recompile the kernel for activate other settings..... no problem...
6 >
7 >The problem is: How acess the /boot partition to copying the new kernel... and
8 >changes the menu.lst file (grub)?
9 >
10 >Thanks for your attention...
11 >
12 >Daniel Kerber.
13 >_______________________________________________
14 >gentoo-dev mailing list
15 >gentoo-dev@g.o
16 >http://lists.gentoo.org/mailman/listinfo/gentoo-dev
17 >
18 This should probably be on gentoo-user (or gentoo-newbie) rather than
19 gentoo-dev, but here's the quick answer:
20
21 # mount /boot
22
23 That'll work if you added your boot partition to /etc/fstab (as the
24 instructions clearly point out). If you didn't (shame, shame, shame),
25 then add a line something like this to /etc/fstab:
26
27 /dev/BOOTDEVICE /boot BOOTFSTYPE (ext3, ext2, xfs)
28 noauto,noatime 1 1
29
30 then
31
32 # mount /boot
33
34 and you're set.
35
36 --
37 Mando