# 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=2 # Set default boot entry as Entry 0 set default=0 # DEVICE DETAILS: /dev/sda2 UUID=bb581537-38a3-459a-a832-914d19235aba LABEL=BOOT_ARCH # DEVICE DETAILS: /dev/sda3 UUID=95e3209a-2d64-4165-ae8c-d3cd38136e3f LABEL=SWAP_ARCH # DEVICE DETAILS: /dev/sda4 UUID=770a9198-0a45-4764-b376-c53b40f8c113 LABEL=ROOT_ARCH # DEVICE DETAILS: /dev/sda5 UUID=1b0d8507-9984-446a-8893-60f643f29250 LABEL=HOME_ARCH # (0) Arch Linux menuentry "Arch Linux Atom" { set root=(hd0,2) linux /vmlinuz26-atom root=/dev/disk/by-uuid/770a9198-0a45-4764-b376-c53b40f8c113 rootflags=rw rootfstype=ext4 ro intel_idle.max_cstate=0 initrd /kernel26-atom.img } # (1) Arch Linux menuentry "Arch Linux Atom Fallback" { set root=(hd0,2) linux /vmlinuz26-atom root=/dev/disk/by-uuid/770a9198-0a45-4764-b376-c53b40f8c113 rootflags=rw rootfstype=ext4 ro initrd /kernel26-atom-fallback.img } # (2) Arch Linux menuentry "Arch Linux" { set root=(hd0,2) linux /vmlinuz26 root=/dev/disk/by-uuid/770a9198-0a45-4764-b376-c53b40f8c113 rootflags=rw rootfstype=ext4 ro initrd /kernel26.img } # (3) Arch Linux menuentry "Arch Linux Fallback" { set root=(hd0,2) linux /vmlinuz26 root=/dev/disk/by-uuid/770a9198-0a45-4764-b376-c53b40f8c113 rootflags=rw rootfstype=ext4 ro initrd /kernel26-fallback.img } ## (4) Windows #menuentry "Windows" { #set root=(hd0,3) #chainloader +1 #}