Advertisement
cesarzeta

Arch /etc/default/burg

Jan 24th, 2013
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. # If you change this file, run 'burg-mkconfig -o /boot/burg/burg.cfg' afterwards to update
  2. # /boot/burg/burg.cfg .
  3.  
  4. # For a complete list of supported variables, refer to this wiki page:
  5. # http://code.google.com/p/burg/wiki/ConfigurationVariables
  6.  
  7. GRUB_DEFAULT=0
  8. GRUB_TIMEOUT=5
  9. GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Arch`
  10. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
  11. GRUB_CMDLINE_LINUX=""
  12.  
  13. # Preload both GPT and MBR modules so that they are not missed
  14. GRUB_PRELOAD_MODULES="part_gpt part_msdos"
  15.  
  16. # Uncomment to disable graphical terminal (grub-pc only)
  17. #GRUB_TERMINAL=console
  18.  
  19. # If you want to enable the save default function, uncomment the following
  20. # line, and set GRUB_DEFAULT to saved.
  21. GRUB_SAVEDEFAULT=true
  22.  
  23. # The resolution used on graphical terminal
  24. # note that you can use only modes which your graphic card supports via VBE
  25. # you can see them in real GRUB with the command `vbeinfo'
  26. # In the boot menu, use hotkey 'r' to popup a resolution selection menu.
  27. GRUB_GFXMODE=saved
  28.  
  29. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
  30. #GRUB_DISABLE_LINUX_UUID=true
  31.  
  32. # Uncomment to disable generation of recovery mode menu entries
  33. #GRUB_DISABLE_LINUX_RECOVERY="true"
  34.  
  35. # Uncomment to get a beep at grub start
  36. #GRUB_INIT_TUNE="480 440 1"
  37.  
  38. # GRUB_THEME's value can be 'saved' or a specific BURG theme name, you can also
  39. # set it to the pathname of a GRUB2 theme file.
  40. # In the boot menu, use hotkey 't' to popup a theme selection menu
  41. GRUB_THEME=saved
  42.  
  43. # GRUB_FOLD's value can be 'saved', 'true' or 'false'.
  44. # In the boot menu, use hotkey 'F7' to show the full list, 'f' to toggle
  45. # between folding modes.
  46. GRUB_FOLD=saved
  47.  
  48. # Add user with burg-adduser, then use GRUB_USERS to config authentication.
  49. # The following example means user1 can boot Ubuntu, no password is needed to
  50. # boot Windows, user1 amd user2 can boot other OS. Superusers can boot any OS
  51. # and use hotkeys like `c' to enter console mode.
  52. #GRUB_USERS="*=user1,user2:ubuntu=user1:windows="
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement