summaryrefslogtreecommitdiffstats
path: root/grub/grub.cfg
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2012-04-03 22:24:49 +0200
committertnut <tnut at nutyx dot com>2012-04-03 22:24:49 +0200
commit663d99c060146b2761931e4d96823f348c3b2c2b (patch)
tree98acfbc97e5bbc2395c254406cedb15cf43c1a93 /grub/grub.cfg
parent9d0d2f9d5408c1725b0556ce0f9398cf584d103f (diff)
downloadnutyx-pakxe-663d99c060146b2761931e4d96823f348c3b2c2b.tar.gz
nutyx-pakxe-663d99c060146b2761931e4d96823f348c3b2c2b.tar.bz2
nutyx-pakxe-663d99c060146b2761931e4d96823f348c3b2c2b.tar.xz
nutyx-pakxe-663d99c060146b2761931e4d96823f348c3b2c2b.zip
ajout de grub
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
+#}