Magellan Linux

Annotation of /trunk/grub/grub.confd

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1817 - (hide annotations) (download)
Tue Jun 26 19:28:41 2012 UTC (11 years, 10 months ago) by niro
File size: 2069 byte(s)
-do not overwrite
1 niro 1404 GRUB_DEFAULT=0
2     GRUB_TIMEOUT=5
3 niro 1682
4     # Default command line
5 niro 1404 GRUB_CMDLINE_LINUX_DEFAULT="quiet"
6 niro 1682
7     # Systems with Flash memory like SSDs or intelligent HBAs such as Serial-Attached-SCSI (SAS)
8     # should use the noop scheduler for best performance. The scheduler assumes I/O performance
9     # optimization will be handled by the disk itself or the Host-Bus-Adapter (HBA).
10 niro 1683 # Guests within virtual environments like VirtualBox should use this scheduler too.
11 niro 1817 #GRUB_CMDLINE_LINUX_DEFAULT+=" elevator=noop"
12 niro 1682
13     # Server should use the deadline scheduler for better database perfomance
14 niro 1817 #GRUB_CMDLINE_LINUX_DEFAULT+=" elevator=deadline"
15    
16     # Default command line for all linux entries (recovery entries as well)
17 niro 1404 GRUB_CMDLINE_LINUX=""
18    
19     # Preload both GPT and MBR modules so that they are not missed
20     GRUB_PRELOAD_MODULES="part_gpt part_msdos"
21    
22     # Uncomment to enable Hidden Menu, and optionally hide the timeout count
23     #GRUB_HIDDEN_TIMEOUT=5
24     #GRUB_HIDDEN_TIMEOUT_QUIET=true
25    
26     # Uncomment to use basic console
27     GRUB_TERMINAL_INPUT=console
28    
29     # Uncomment to disable graphical terminal
30     #GRUB_TERMINAL_OUTPUT=console
31    
32     # The resolution used on graphical terminal
33     # note that you can use only modes which your graphic card supports via VBE
34     # you can see them in real GRUB with the command `vbeinfo'
35     GRUB_GFXMODE=auto
36    
37     # Uncomment to allow the kernel use the same resolution used by grub
38     GRUB_GFXPAYLOAD_LINUX=keep
39    
40     # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
41     # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
42     #GRUB_DISABLE_LINUX_UUID=true
43    
44     # Uncomment to disable generation of recovery mode menu entries
45     GRUB_DISABLE_RECOVERY=true
46    
47     # Uncomment and set to the desired menu colors. Used by normal and wallpaper
48     # modes only. Entries specified as foreground/background.
49     #GRUB_COLOR_NORMAL="light-blue/black"
50     #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
51    
52     # Uncomment one of them for the gfx desired, a image background or a gfxtheme
53     #GRUB_BACKGROUND="/path/to/wallpaper"
54     #GRUB_THEME="/path/to/gfxtheme"
55    
56     # Uncomment to get a beep at GRUB start
57     #GRUB_INIT_TUNE="480 440 1"