mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 15:02:43 +02:00
Origin commit data
------------------
Branch: master
Commit: d8c3c47b86
Author: TangoCash <eric@loxat.de>
Date: 2017-09-12 (Tue, 12 Sep 2017)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
21 lines
515 B
C
21 lines
515 B
C
#include <config.h>
|
|
#if HAVE_TRIPLEDRAGON
|
|
#include "../libtriple/pwrmngr.h"
|
|
#elif HAVE_DUCKBOX_HARDWARE
|
|
#include "../libduckbox/pwrmngr.h"
|
|
#elif HAVE_SPARK_HARDWARE
|
|
#include "../libspark/pwrmngr.h"
|
|
#elif HAVE_ARM_HARDWARE
|
|
#include "../libarmbox/pwrmngr.h"
|
|
#elif HAVE_AZBOX_HARDWARE
|
|
#include "../azbox/pwrmngr.h"
|
|
#elif HAVE_GENERIC_HARDWARE
|
|
#if BOXMODEL_RASPI
|
|
#include "../raspi/pwrmngr.h"
|
|
#else
|
|
#include "../generic-pc/pwrmngr.h"
|
|
#endif
|
|
#else
|
|
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
|
|
#endif
|