diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-02-10 13:53:23 -0600 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-02-10 13:53:23 -0600 |
commit | be9dd340ef7d752d61d0d3b4b6b18164016f4605 (patch) | |
tree | 22466eb7977fbe9ae29dc83ac61ea9f77f86d0e7 /libre-testing/grub2/grub.cfg | |
parent | 9b6fb533bdf48dc4bc3adb21c57366090aa6c5f6 (diff) | |
parent | ca888a4fabb768d38874b5f983cd84eba801ae7f (diff) |
Merge http://projects.parabolagnulinux.org/abslibre
Diffstat (limited to 'libre-testing/grub2/grub.cfg')
-rw-r--r-- | libre-testing/grub2/grub.cfg | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libre-testing/grub2/grub.cfg b/libre-testing/grub2/grub.cfg new file mode 100644 index 000000000..1f0e41471 --- /dev/null +++ b/libre-testing/grub2/grub.cfg @@ -0,0 +1,26 @@ +# 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) Parabola GNU/Linux-libre +menuentry "Parabola GNU/Linux-libre" { +set root=(hd0,1) +linux /vmlinuz26 root=/dev/sda1 ro +initrd /kernel26.img +} + |