summaryrefslogtreecommitdiffstats
path: root/grub/grub.cfg
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2012-01-22 11:38:02 +0100
committerpiernov <piernov@piernov.org>2012-01-22 11:38:02 +0100
commit50e5ce5b17e69be13228e2393c5804b0a79acfab (patch)
tree9845fa9af128d7fdd791755bb2be320f3ba2be4e /grub/grub.cfg
parent9626427c1a1d9c292fc519810c13b9a8073e777f (diff)
parent8548e8d6882b55dfb509b18dedfb7db17630037d (diff)
downloadnutyx-extra-50e5ce5b17e69be13228e2393c5804b0a79acfab.tar.gz
nutyx-extra-50e5ce5b17e69be13228e2393c5804b0a79acfab.tar.bz2
nutyx-extra-50e5ce5b17e69be13228e2393c5804b0a79acfab.tar.xz
nutyx-extra-50e5ce5b17e69be13228e2393c5804b0a79acfab.zip
Merged with http://kiao.no-ip.info/NuTyX/git/nutyx-pakxe → Repository splitted → nutyx-extra
Diffstat (limited to 'grub/grub.cfg')
-rw-r--r--grub/grub.cfg37
1 files changed, 37 insertions, 0 deletions
diff --git a/grub/grub.cfg b/grub/grub.cfg
new file mode 100644
index 000000000..13f42e241
--- /dev/null
+++ b/grub/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 Maintence
+menuentry "NuTyX Linux Maintenance" {
+set root=(hd0,1)
+linux /boot/kernel ro
+initrd /boot/nutyx-initrd
+}
+
+# (1) NuTyX Linux
+menuentry "NuTyX Linux " {
+set root=(hd0,1)
+linux /boot/kernel root=/dev/sda1 ro
+}
+
+## (1) Windows
+#menuentry "Windows" {
+#set root=(hd0,3)
+#chainloader +1
+#}