Gentoo Archives: gentoo-user

From: Mike Gilbert <floppym@g.o>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Grub2 and softlevels
Date: Sat, 25 Jan 2014 15:43:00
Message-Id: CAJ0EP41aXdg_dFn-bx-YkEX7u9gv4P31_qXOCs-20UC4hDWxsA@mail.gmail.com
In Reply to: [gentoo-user] Grub2 and softlevels by Peter Humphrey
1 On Sat, Jan 25, 2014 at 7:18 AM, Peter Humphrey <peter@××××××××××××.uk> wrote:
2 > Any ideas anyone?
3 >
4
5 Here's a manually written grub.cfg that should do pretty much what
6 your old menu.lst did.
7
8 root=(hd0,msdos1)
9 timeout=10
10 default=0
11 fallback=3
12 color_normal=white/blue
13 color_highlight=black/light-gray
14
15 insmod all_video
16 terminal_output gfxterm
17
18 background_image /grub/splash.xpm.gz
19
20 menuentry "Gentoo Linux 3.10.25" {
21 linux /boot/linux-x86_64-3.10.25-gentoo root=/dev/md5 net.ifnames=0
22 }
23
24 menuentry "Gentoo Linux 3.10.25, no X" {
25 linux /boot/linux-x86_64-3.10.25-gentoo root=/dev/md5 softlevel=no-x
26 net.ifnames=0
27 }
28
29 menuentry "Gentoo Linux 3.10.25, no network" {
30 linux /boot/kernel-x86_64-3.10.25-gentoo root=/dev/md5
31 softlevel=no-net net.ifnames=0
32 }
33
34 menuentry "Gentoo Linux 3.10.17" {
35 linux /boot/kernel-x86_64-3.10.17-gentoo root=/dev/md5 net.ifnames=0
36 }
37
38 menuentry "Gentoo Linux 3.10.17, no X" {
39 linux /boot/kernel-x86_64-3.10.17-gentoo root=/dev/md5 softlevel=no-x
40 net.ifnames=0
41 }
42
43 menuentry "Gentoo Linux 3.10.17, no network" {
44 linux /boot/kernel-x86_64-3.10.17-gentoo root=/dev/md5
45 softlevel=no-net net.ifnames=0
46 }
47
48 menuentry "Memtest86+" {
49 linux16 /boot/memtest86plus/memtest86+-4.20.bin
50 }
51
52 menuentry "Rescue System 3.8.13" {
53 linux /boot/kernel-x86_64-3.8.13-gentoo-rescue root=/dev/sda8 net.ifnames=0
54 }
55
56 menuentry "Rescue System 3.10.7-r1" {
57 linux /boot/kernel-x86_64-3.10.7-r1-gentoo-rescue root=/dev/sda8 net.ifnames=0
58 }

Replies

Subject Author
Re: [gentoo-user] Grub2 and softlevels Peter Humphrey <peter@××××××××××××.uk>