eab2a29c8b
This patch is a raw application of find payloads/ -type f | \ xargs sed -i -e 's/IS_ENABLED\s*(CONFIG_/CONFIG(/g' Change-Id: I883b03b189f59b5d998a09a2596b0391a2d5cf33 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/31775 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
36 lines
694 B
C
36 lines
694 B
C
/* Public Domain Curses */
|
|
/* This file is BSD licensed, Copyright 2011 secunet AG */
|
|
|
|
#include <libpayload.h>
|
|
#include "lppdc.h"
|
|
|
|
int PDC_curs_set(int visibility)
|
|
{
|
|
int ret_vis;
|
|
|
|
PDC_LOG(("PDC_curs_set() - called: visibility=%d\n", visibility));
|
|
|
|
ret_vis = SP->visibility;
|
|
SP->visibility = visibility;
|
|
|
|
#if CONFIG(LP_SERIAL_CONSOLE)
|
|
if (curses_flags & F_ENABLE_SERIAL) {
|
|
serial_cursor_enable(visibility);
|
|
}
|
|
#endif
|
|
#if CONFIG(LP_VIDEO_CONSOLE)
|
|
if (curses_flags & F_ENABLE_CONSOLE) {
|
|
video_console_cursor_enable(visibility);
|
|
}
|
|
#endif
|
|
|
|
return ret_vis;
|
|
}
|
|
|
|
int PDC_set_blink(bool blinkon)
|
|
{
|
|
if (pdc_color_started)
|
|
COLORS = 16;
|
|
|
|
return ERR;
|
|
}
|