settings/drivers/kernel: Clean up and clarify comments.

No "functional" change.
This commit is contained in:
Augustin Cavalier
2019-01-16 11:35:40 -05:00
parent 9f8ad6a31a
commit e04196d564
+26 -30
View File
@@ -1,70 +1,66 @@
#disable_smp true #disable_smp true
# disables multiprocessor support, default is enabled # Disables multiprocessor support, which is enabled by default
#serial_debug_output false #serial_debug_output false
# disables serial debug output, default is enabled # Disables serial debug output, which is enabled by default
#serial_debug_port 1 #serial_debug_port 1
# possible values: <num>|<port> # Possible values: <num>|<port>
# serial interface number (as enumerated by the BIOS) or the # Serial interface number (as enumerated by the BIOS) or the base port of
# base port of the serial interface to be used for kernel # the serial interface to be used for kernel debug output and KDL.
# debug output and the kernel debugger # Default is 0 (COM1).
# default is 0 (COM1)
#serial_debug_speed 57600 #serial_debug_speed 57600
# possible values: <9600|19200|38400|57600|115200> # Possible values: <9600|19200|38400|57600|115200>, default is 115200.
# default is 115200
#syslog_debug_output false #syslog_debug_output false
# disables syslog debug output - all debug output is also sent to # Disables sending debug output to syslog_daemon, which is enabled by default.
# the syslog service by default. # Does not affect serial and onscreen debug output.
#syslog_buffer_size 131768 #syslog_buffer_size 131768
# The default size of the internal syslog ring buffer - if you often see # The default size of the internal syslog ring buffer - if you often see
# <DROP> or <TRUNC> messages in your syslog, you might want to increase # <DROP> or <TRUNC> messages in your syslog, you might want to increase
# this value. Defaults to 65536 bytes. # this value. Defaults to 65536 (bytes).
#syslog_time_stamps true #syslog_time_stamps true
# Include time stamps in syslog debug output, defaults to false. # Include time stamps in syslog debug output, defaults to false.
#syslog_max_size 20MB #syslog_max_size 20MB
# change maximum syslog file size, default is 512kB # Sets the maximum syslog file size, default is 512kB.
#bluescreen false #bluescreen false
# enables/disables on-screen KDL (defaults to on), # Enables/disables on-screen KDL, which defaults to enabled.
# you want to disable this for serial debugging # You likely want to disable this when using serial debugging.
#bochs_debug_output true #bochs_debug_output true
# Activates Bochs debug output if enabled in the kernel # Activates Bochs debug output if enabled in the kernel (available on x86
# (available on x86 as a build option only) # as a build option only)
#laplinkll_debug_output true #laplinkll_debug_output true
# Activates parallel debug output. Requires a laplink cable # Activates parallel debug output. Requires a laplink cable and a custom
# and a custom BeOS driver on the other end. # driver on the other end.
#qemu_single_step_hack true #qemu_single_step_hack true
# Activates a hack that allows single-stepping under qemu # Activates a hack that allows single-stepping under qemu to work.
# to work.
load_symbols true load_symbols true
# load kernel and kernel add-on symbols, default is off # Load kernel and kernel add-on symbols, disabled by default.
#apm true #apm true
# APM (advanced power management) support # APM (advanced power management) support (shutdown, battery info, ...),
# (system shutdown, battery info, ...) # disabled by default.
# default is off
#emergency_keys false #emergency_keys false
# Disables emergency keys (ie. Alt-SysReq+*), enabled by default # Disables emergency keys (ie. Alt-SysReq+*), enabled by default.
#acpi false #acpi false
# ACPI support, enabled by default # ACPI support, enabled by default.
#disable_ioapic true #disable_ioapic true
# Disables IO-APIC support, enabled by default # Disables IO-APIC support, which is enabled by default.
#4gb_memory_limit true #4gb_memory_limit true
# Ignores all memory beyond the 4 GB address limit. Default is false. # Ignores all memory beyond 4 GB, disabled by default.
#fail_safe_video_mode true #fail_safe_video_mode true
# Use failsafe (vesa) video mode on every boot. # Use failsafe (VESA/framebuffer) video mode on every boot.