summaryrefslogtreecommitdiff
path: root/grub.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'grub.cfg')
-rw-r--r--grub.cfg17
1 files changed, 17 insertions, 0 deletions
diff --git a/grub.cfg b/grub.cfg
new file mode 100644
index 0000000..94c37ca
--- /dev/null
+++ b/grub.cfg
@@ -0,0 +1,17 @@
+# GRUB2 config file
+
+# boot fast, nobody has to edit boot options here!
+#set timeout=0
+set timeout=5
+
+# by default, boot first entry
+set default=0
+
+# hide menu per default
+#hiddenmenu
+
+# boot minilinux
+menuentry "Minilinux" {
+ set root=(hd0,1)
+ linux /boot/bzImage-2.6.33.3 root=/dev/hda1
+}