PDcurses wants set_blink to determine color count. Not exactly obvious. Change-Id: I8b2a32f0095d5900fa7e01f04f3f1d565dc2bedf Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com> Reviewed-on: http://review.coreboot.org/432 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
		
			
				
	
	
		
			36 lines
		
	
	
		
			668 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			668 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* Public Domain Curses */
 | 
						|
/* This file is BSD licensed, Copyright 2011 secunet AG */
 | 
						|
 | 
						|
#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;
 | 
						|
 | 
						|
#ifdef CONFIG_SERIAL_CONSOLE
 | 
						|
    if (curses_flags & F_ENABLE_SERIAL) {
 | 
						|
        serial_cursor_enable(visibility);
 | 
						|
    }
 | 
						|
#endif
 | 
						|
#ifdef CONFIG_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;
 | 
						|
}
 |