updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / grub2-bios-bzr / grub.cfg.bios.example
blobe49e6673c2a84005e7622e160dc0381d319d1f1a
1 # Example Config file for GRUB2 - The GNU GRand Unified Bootloader - for BIOS
2 # /boot/grub/grub.cfg .
4 # Load Graphical module for BIOS
5 insmod vbe
7 # Load Font module
8 insmod font
11 # Load unicode.pf2 font file and setup gfxterm
13 if loadfont ${prefix}/unicode.pf2 ; then
14         insmod gfxterm
15         set gfxmode="auto"
16         set gfxpayload="keep"
17         terminal_output gfxterm
18         
19         # set color_normal=light-blue/black
20         # set color_highlight=light-cyan/blue
21         
22         # insmod png
23         # insmod jpeg
24         # background_image ${prefix}/archlinux.png
27 insmod part_gpt
28 insmod part_msdos
29 insmod fat
30 insmod ext2
32 # Timeout for menu
33 set timeout=5
35 # Set default boot entry as Entry 0
36 set default=0
38 # (0) Arch Linux
39 menuentry "Arch Linux in 1st Partition /boot of /dev/sda GPT Partition Table" {
40     set root=(hd0,gpt1)
41     linux /vmlinuz-linux root=/dev/sda1 ro
42     initrd /initramfs-linux.img
45 # (1) Arch Linux
46 menuentry "Arch Linux Fallback in 1st Partition /boot of /dev/sda GPT Partition Table" {
47     set root=(hd0,gpt1)
48     linux /vmlinuz-linux root=/dev/sda1 ro
49     initrd /initramfs-linux-fallback.img
52 # (2) Arch Linux
53 menuentry "Arch Linux in 1st Partition /boot of /dev/sda MBR or msdos Partition Table" {
54     set root=(hd0,msdos1)
55     linux /vmlinuz-linux root=/dev/sda1 ro
56     initrd /initramfs-linux.img