I was trying to find out how to setup green on black text and most references related to
Do I need to implement this by changes to /boot/device.hints? The instructions don't make it clear as to what to do.
videocontrol
, the only thing I could find realting to sc(4)() was this:-The following lines will set the default colors. The normal text will be
green on black background. The reversed text will be yellow on green
background. Note that you cannot put any white space inside the quoted
string, because of the current implementation of config(8).
options SC_NORM_ATTR=(FG_GREEN|BG_BLACK)
options SC_NORM_REV_ATTR=(FG_YELLOW|BG_GREEN)
The following lines will set the default colors of the kernel message.
The kernel message will be printed bright red on black background. The
reversed message will be black on red background.
options SC_KERNEL_CONS_ATTR=(FG_LIGHTRED|BG_BLACK)
options SC_KERNEL_CONS_REV_ATTR=(FG_BLACK|BG_RED)
Do I need to implement this by changes to /boot/device.hints? The instructions don't make it clear as to what to do.