diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-02-25 19:00:58 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-02-25 19:00:58 +0100 |
commit | 90d6f88e5e615e027766c76dc74160686d8a83a8 (patch) | |
tree | f36519a206067f1ddccd42f2f7d90fe98cf1ebaf /extra/grub2/grub.cfg | |
parent | 0c18214dce5960e88730ff5cac5c9a8c13712776 (diff) | |
download | nutyx-pakxe-90d6f88e5e615e027766c76dc74160686d8a83a8.tar.gz nutyx-pakxe-90d6f88e5e615e027766c76dc74160686d8a83a8.tar.bz2 nutyx-pakxe-90d6f88e5e615e027766c76dc74160686d8a83a8.tar.xz nutyx-pakxe-90d6f88e5e615e027766c76dc74160686d8a83a8.zip |
grub2, déplacé dans extra et maj des dépendances
Diffstat (limited to 'extra/grub2/grub.cfg')
-rw-r--r-- | extra/grub2/grub.cfg | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/extra/grub2/grub.cfg b/extra/grub2/grub.cfg new file mode 100644 index 000000000..52bf4dc02 --- /dev/null +++ b/extra/grub2/grub.cfg @@ -0,0 +1,37 @@ +# Config file for GRUB2 - The GNU GRand Unified Bootloader +# /boot/grub/grub.cfg + +# DEVICE NAME CONVERSIONS +# +# Linux Grub +# ------------------------- +# /dev/fd0 (fd0) +# /dev/sda (hd0) +# /dev/sdb2 (hd1,2) +# /dev/sda3 (hd0,3) +# + +# Timeout for menu +set timeout=5 + +# Set default boot entry as Entry 0 +set default=0 + +# (0) NuTyX Linux 2009 Maintence +menuentry "NuTyX Linux 2009 Maintenance" { +set root=(hd0,1) +linux /boot/kernel ro +initrd /boot/nutyx-initrd +} + +# (1) NuTyX Linux 2009 +menuentry "NuTyX Linux 2009" { +set root=(hd0,1) +linux /boot/kernel root=/dev/sda1 ro +} + +## (1) Windows +#menuentry "Windows" { +#set root=(hd0,3) +#chainloader +1 +#} |