grub: menu.lst renamed to grub.conf, updated README and aesthetic fixups

This commit is contained in:
Matt Housh 2006-11-30 09:27:16 -06:00
parent e2c875c14e
commit a4e462fda8
5 changed files with 73 additions and 10 deletions

View File

@ -2,7 +2,7 @@ drwxr-xr-x root/root boot/
drwxr-xr-x root/root boot/grub/
-rw-r--r-- root/root boot/grub/crux02.xpm.gz
-rw-r--r-- root/root boot/grub/crux03.xpm.gz
-rw-r--r-- root/root boot/grub/menu.lst.sample
-rw-r--r-- root/root boot/grub/grub.conf.sample
drwxr-xr-x root/root sbin/
-rwxr-xr-x root/root sbin/grub
-rwxr-xr-x root/root sbin/grub-install

View File

@ -2,4 +2,4 @@
55e343038043e16df5293d63782373d0 crux03.xpm.gz
e0fce491c713805650df3d8962ead526 grub-0.97-patches.tar.gz
cd3f3eb54446be6003156158d51f4884 grub-0.97.tar.gz
1f2733522ab27183e3830d93733141ac menu.lst.sample
1f2733522ab27183e3830d93733141ac grub.conf.sample

View File

@ -6,12 +6,12 @@
name=grub
version=0.97
release=1
release=2
source=(ftp://alpha.gnu.org/gnu/grub/$name-$version.tar.gz \
http://crux.nu/files/grub/$version/$name-$version-patches.tar.gz \
http://crux.nu/files/grub/common/crux02.xpm.gz \
http://crux.nu/files/grub/common/crux03.xpm.gz \
menu.lst.sample)
grub.conf.sample)
build () {
cd $name-$version
@ -82,5 +82,5 @@ build () {
rm -rf $PKG/usr/share/info
mkdir -p $PKG/boot/grub
install -m 644 $SRC/{crux*,menu.lst.sample} $PKG/boot/grub/
install -m 644 $SRC/{crux*,grub.conf.sample} $PKG/boot/grub/
}

View File

@ -19,9 +19,9 @@ POST-INSTALL
Now it's time to create your own "boot menu":
# # Copy sample file
# cp /boot/grub/menu.lst.sample /boot/grub/menu.lst
# cp /boot/grub/grub.conf.sample /boot/grub/grub.conf
# # Modify it for your system
# vi /boot/grub/menu.lst
# vi /boot/grub/grub.conf
For more information about setting up your own grub boot menu file:
http://www.gnu.org/manual/grub-0.92/html_mono/grub.html#Configuration
@ -43,9 +43,8 @@ POST-INSTALL
PRECAUTION
Installing a new boot manager is like modifiying the partition table
using fdisk - or installing a new system kernel. Please create a rescue
boot disk first :)
This is a heavy patched version of grub - Use it on your own risk !
or installing a new system kernel. Please create a rescue disk first :)
This is a heavily patched version of grub - Use it at your own risk !
Matt Housh <jaeger@crux.nu>

64
grub/grub.conf.sample Normal file
View File

@ -0,0 +1,64 @@
### Global settings
## CRUX splash image
splashimage (hd0,0)/boot/grub/crux03.xpm.gz
## define special fore-/background colors for splash screen image
foreground = FFFFFF
background = AAAAAA
## shaded text
#shade 1
## time to wait for user interaction
timeout 5
## default boot kernel
default 0
### GRUB Devices:
##
## Linux Grub
## ======================
## /dev/hda (hd0)
## /dev/hda1 (hd0,0)
## /dev/hdb (hd1)
## /dev/hdb1 (hd1,0)
## /dev/fd0 (fd0)
### Remember:
## The Linux kernel 2.4.19 has a bug which prevents using of devfs
## device names (/dev/disc/disc0/part1,..). CRUX 0.9.4 comes with
## 2.4.19 !
## Default menu entries
title CRUX
kernel (hd0,0)/boot/vmlinuz root=/dev/hda1
title CRUX
kernel (hd0,0)/boot/vmlinuz.old root=/dev/hda1
### Special cases
## Boot special bootimage
#title Memtest
#kernel (hd0,0)/boot/memtest.bin
## Boot Microsoft Windows(TM)
#title Windows
#root (hd0,5)
#makeactive
#chainloader +1
## Boot from Floppy
#title floppy
#root (fd0)
#chainloader +1
## Boot with different /boot partition
## / = /dev/hdb2 = (hd1,1)
## /boot = /dev/hdb1 = (hd1,0)
##
#title CRUX GNU/Linux drive 2
#kernel (hd1,0)/vmlinuz root=/dev/hdb2