Skip to content

Instantly share code, notes, and snippets.

Created May 10, 2012 12:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/2652813 to your computer and use it in GitHub Desktop.
Save anonymous/2652813 to your computer and use it in GitHub Desktop.
/boot/grub/menu.lst
# Config file for GRUB - The GNU GRand Unified Bootloader
# /boot/grub/menu.lst
# DEVICE NAME CONVERSIONS
#
# Linux Grub
# -------------------------
# /dev/fd0 (fd0)
# /dev/sda (hd0)
# /dev/sdb2 (hd1,1)
# /dev/sda3 (hd0,2)
#
# FRAMEBUFFER RESOLUTION SETTINGS
# +-------------------------------------------------+
# | 640x480 800x600 1024x768 1280x1024
# ----+--------------------------------------------
# 256 | 0x301=769 0x303=771 0x305=773 0x307=775
# 32K | 0x310=784 0x313=787 0x316=790 0x319=793
# 64K | 0x311=785 0x314=788 0x317=791 0x31A=794
# 16M | 0x312=786 0x315=789 0x318=792 0x31B=795
# +-------------------------------------------------+
# for more details and different resolutions see
# https://wiki.archlinux.org/index.php/GRUB#Framebuffer_resolution
# general configuration:
timeout 5
default 0
color light-blue/black light-cyan/blue
# boot sections follow
# each is implicitly numbered from 0 in the order of appearance below
#
# TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
#
#-*
# (0) Arch Linux
title Arch Linux
root (hd0,5)
kernel /boot/vmlinuz-linux root=UUID=3f92645f-7064-41bb-a033-53c4339f7195 resume=UUID=38df3f39-8626-4976-9365-0f0b7ff22908 pcie_aspm=force i915.i915_enable_rc6=1 i915.i915_enable_fbc=1 i915.lvds_downclock=1 ro
initrd /boot/initramfs-linux-lqx.img
# (1) Arch Linux
title Arch Linux Fallback
root (hd0,5)
kernel /boot/vmlinuz-linux root=/dev/sda6 resume=/dev/sda5 pcie_aspm=force i915.i915_enable_rc6=1 i915.i915_enable_fbc=1 i915.lvds_downclock=1 ro
initrd /boot/initramfs-linux-fallback.img
# (2) Windows
title Windows
rootnoverify (hd0,2)
makeactive
chainloader +1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment