mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 17:01:08 +02:00
spark: build stubbed out lcddisplay code to fix build
Origin commit data
------------------
Branch: ni/coolstream
Commit: eabeec110c
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-02-11 (Sat, 11 Feb 2012)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -29,6 +29,9 @@ endif
|
|||||||
if BOXTYPE_TRIPLE
|
if BOXTYPE_TRIPLE
|
||||||
SUBDIRS += lcddisplay
|
SUBDIRS += lcddisplay
|
||||||
endif
|
endif
|
||||||
|
if BOXTYPE_SPARK
|
||||||
|
SUBDIRS += lcddisplay
|
||||||
|
endif
|
||||||
|
|
||||||
if USE_TREMOR
|
if USE_TREMOR
|
||||||
VORBISLIBS = @VORBISIDEC_LIBS@
|
VORBISLIBS = @VORBISIDEC_LIBS@
|
||||||
@@ -114,16 +117,17 @@ drivertool_SOURCES = drivertool.c
|
|||||||
endif
|
endif
|
||||||
if USE_STB_HAL
|
if USE_STB_HAL
|
||||||
neutrino_LDADD += \
|
neutrino_LDADD += \
|
||||||
$(STB_HAL_LIB)/libstb-hal.a
|
$(STB_HAL_LIB)/libstb-hal.a \
|
||||||
|
$(top_builddir)/src/lcddisplay/liblcddisplay.a
|
||||||
else
|
else
|
||||||
if BOXTYPE_TRIPLE
|
if BOXTYPE_TRIPLE
|
||||||
neutrino_LDADD += \
|
neutrino_LDADD += \
|
||||||
$(top_builddir)/lib/libtriple/libtriple.a
|
$(top_builddir)/lib/libtriple/libtriple.a \
|
||||||
endif
|
|
||||||
endif
|
|
||||||
if BOXTYPE_TRIPLE
|
|
||||||
neutrino_LDADD += \
|
|
||||||
@DIRECTFB_LIBS@ \
|
|
||||||
$(top_builddir)/src/lcddisplay/liblcddisplay.a
|
$(top_builddir)/src/lcddisplay/liblcddisplay.a
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
if BOXTYPE_TRIPLE
|
||||||
|
neutrino_LDADD += \
|
||||||
|
@DIRECTFB_LIBS@
|
||||||
|
endif
|
||||||
|
@@ -49,6 +49,11 @@ libneutrino_driver_a_SOURCES += \
|
|||||||
lcdd.cpp
|
lcdd.cpp
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if BOXTYPE_SPARK
|
||||||
|
libneutrino_driver_a_SOURCES += \
|
||||||
|
newclock.cpp \
|
||||||
|
lcdd.cpp
|
||||||
|
endif
|
||||||
if USE_STB_HAL
|
if USE_STB_HAL
|
||||||
INCLUDES += \
|
INCLUDES += \
|
||||||
-I$(STB_HAL_INC) \
|
-I$(STB_HAL_INC) \
|
||||||
|
@@ -83,6 +83,9 @@ typedef enum
|
|||||||
#include <configfile.h>
|
#include <configfile.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
|
|
||||||
|
#if HAVE_SPARK_HARDWARE
|
||||||
|
#define HAVE_GENERIC_HARDWARE 1
|
||||||
|
#endif
|
||||||
#include <lcddisplay/fontrenderer.h>
|
#include <lcddisplay/fontrenderer.h>
|
||||||
|
|
||||||
|
|
||||||
|
@@ -23,7 +23,9 @@
|
|||||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_SPARK_HARDWARE
|
||||||
|
#define HAVE_GENERIC_HARDWARE 1
|
||||||
|
#endif
|
||||||
#include <lcddisplay/lcddisplay.h>
|
#include <lcddisplay/lcddisplay.h>
|
||||||
|
|
||||||
void InitNewClock();
|
void InitNewClock();
|
||||||
|
@@ -47,7 +47,7 @@
|
|||||||
#include "driver/vfd.h"
|
#include "driver/vfd.h"
|
||||||
#include "driver/rfmod.h"
|
#include "driver/rfmod.h"
|
||||||
#endif
|
#endif
|
||||||
#if HAVE_TRIPLEDRAGON
|
#if HAVE_TRIPLEDRAGON || HAVE_SPARK_HARDWARE
|
||||||
#include "driver/lcdd.h"
|
#include "driver/lcdd.h"
|
||||||
#define CVFD CLCD
|
#define CVFD CLCD
|
||||||
#endif
|
#endif
|
||||||
|
@@ -25,6 +25,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
#ifdef HAVE_SPARK_HARDWARE
|
||||||
|
#define HAVE_GENERIC_HARDWARE 1
|
||||||
|
#endif
|
||||||
#include "lcddisplay.h"
|
#include "lcddisplay.h"
|
||||||
|
|
||||||
#include <png.h>
|
#include <png.h>
|
||||||
|
@@ -26,6 +26,9 @@
|
|||||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_SPARK_HARDWARE
|
||||||
|
#define HAVE_GENERIC_HARDWARE 1
|
||||||
|
#endif
|
||||||
#ifdef HAVE_GENERIC_HARDWARE
|
#ifdef HAVE_GENERIC_HARDWARE
|
||||||
// dummy
|
// dummy
|
||||||
#define LCD_ROWS 8
|
#define LCD_ROWS 8
|
||||||
|
@@ -289,7 +289,7 @@ const lcd_setting_struct_t lcd_setting[SNeutrinoSettings::LCD_SETTING_COUNT] =
|
|||||||
{"lcd_show_volume" , DEFAULT_LCD_SHOW_VOLUME },
|
{"lcd_show_volume" , DEFAULT_LCD_SHOW_VOLUME },
|
||||||
{"lcd_autodimm" , DEFAULT_LCD_AUTODIMM },
|
{"lcd_autodimm" , DEFAULT_LCD_AUTODIMM },
|
||||||
{"lcd_deepbrightness" , DEFAULT_VFD_STANDBYBRIGHTNESS }
|
{"lcd_deepbrightness" , DEFAULT_VFD_STANDBYBRIGHTNESS }
|
||||||
#if HAVE_TRIPLEDRAGON
|
#if HAVE_TRIPLEDRAGON || USE_STB_HAL
|
||||||
,{ "lcd_epgmode" , 0 /*DEFAULT_LCD_EPGMODE*/ }
|
,{ "lcd_epgmode" , 0 /*DEFAULT_LCD_EPGMODE*/ }
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
@@ -491,7 +491,7 @@ struct SNeutrinoSettings
|
|||||||
LCD_SHOW_VOLUME ,
|
LCD_SHOW_VOLUME ,
|
||||||
LCD_AUTODIMM ,
|
LCD_AUTODIMM ,
|
||||||
LCD_DEEPSTANDBY_BRIGHTNESS,
|
LCD_DEEPSTANDBY_BRIGHTNESS,
|
||||||
#if HAVE_TRIPLEDRAGON
|
#if HAVE_TRIPLEDRAGON || HAVE_SPARK_HARDWARE
|
||||||
LCD_EPGMODE ,
|
LCD_EPGMODE ,
|
||||||
#endif
|
#endif
|
||||||
LCD_SETTING_COUNT
|
LCD_SETTING_COUNT
|
||||||
|
Reference in New Issue
Block a user