Advertisement
Guest User

Untitled

a guest
Feb 20th, 2014
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. # Copyright 1999-2013 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. # $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/files/grub.default-2,v 1.4 2013/09/21 18:10:55 floppym Exp $
  4. #
  5. # To populate all changes in this file you need to regenerate your
  6. # grub configuration file afterwards:
  7. # 'grub2-mkconfig -o /boot/grub/grub.cfg'
  8. #
  9. # See the grub info page for documentation on possible variables and
  10. # their associated values.
  11.  
  12. GRUB_DISTRIBUTOR="Gentoo"
  13.  
  14. GRUB_DEFAULT=0
  15. GRUB_HIDDEN_TIMEOUT=0
  16. GRUB_HIDDEN_TIMEOUT_QUIET=true
  17. GRUB_TIMEOUT=10
  18.  
  19. # Append parameters to the linux kernel command line
  20. # GRUB_CMDLINE_LINUX=""
  21.  
  22. # Append parameters to the linux kernel command line for non-recovery entries
  23. #GRUB_CMDLINE_LINUX_DEFAULT=""
  24.  
  25. # Uncomment to disable graphical terminal (grub-pc only)
  26. #GRUB_TERMINAL=console
  27.  
  28. # Added based on Gentoo forum post. 2014-02-16.
  29. GRUB_VIDEO_BACKEND=vbe
  30. GRUB_GFXPAYLOAD_LINUX=640x480
  31. GRUB_COLOR_HIGHLIGHT="magenta/black"
  32. GRUB_COLOR_NORMAL="white/black"
  33.  
  34.  
  35. # The resolution used on graphical terminal.
  36. # Note that you can use only modes which your graphic card supports via VBE.
  37. # You can see them in real GRUB with the command `vbeinfo'.
  38. GRUB_GFXMODE=640x480
  39. #GRUB_GFXMODE=1024x768
  40.  
  41. # Path to theme spec txt file.
  42. # The starfield is by default provided with use truetype.
  43. # NOTE: when enabling custom theme, ensure you have required font/etc.
  44. #GRUB_THEME="/boot/grub/themes/starfield/theme.txt"
  45.  
  46. # Background image used on graphical terminal.
  47. # Can be in various bitmap formats.
  48. #GRUB_BACKGROUND="/boot/grub/mybackground.png"
  49.  
  50. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to kernel
  51. #GRUB_DISABLE_LINUX_UUID=true
  52.  
  53. # Uncomment to disable generation of recovery mode menu entries
  54. #GRUB_DISABLE_RECOVERY=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement