|
Lines 34-42
Link Here
|
| 34 |
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...) |
34 |
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...) |
| 35 |
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef" |
35 |
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef" |
| 36 |
|
36 |
|
| 37 |
# Uncomment to disable graphical terminal (grub-pc only) |
37 |
# Configure UCR Variable "grub/terminal" to disable graphical terminal (grub-pc only)' |
| 38 |
#GRUB_TERMINAL=console |
38 |
@!@ |
| 39 |
|
39 |
if configRegistry.get('grub/terminal'): |
|
|
40 |
print 'GRUB_TERMINAL="%s"' % configRegistry.get('grub/terminal') |
| 41 |
else: |
| 42 |
print '#GRUB_TERMINAL="console"' |
| 43 |
@!@ |
| 44 |
# Configure UCR Variable "grub/serialcommand" to adapt GRUB_SERIAL_COMMAND settings |
| 45 |
@!@ |
| 46 |
if configRegistry.get('grub/serialcommand'): |
| 47 |
print 'GRUB_SERIAL_COMMAND="%s"' % configRegistry.get('grub/serialcommand') |
| 48 |
else: |
| 49 |
print '#GRUB_SERIAL_COMMAND="serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1"' |
| 50 |
@!@ |
| 40 |
# The resolution used on graphical terminal |
51 |
# The resolution used on graphical terminal |
| 41 |
# note that you can use only modes which your graphic card supports via VBE |
52 |
# note that you can use only modes which your graphic card supports via VBE |
| 42 |
# you can see them in real GRUB with the command `vbeinfo' |
53 |
# you can see them in real GRUB with the command `vbeinfo' |