From 65200e257091aff284a36130d0a7ee69a5d9766a Mon Sep 17 00:00:00 2001 From: vanhofen Date: Mon, 23 Nov 2020 21:01:26 +0100 Subject: [PATCH] hw_caps: sync with libstb-hal; fix cst build Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/70d7fd047da90ee66c1f134a348edcd0f353e1d5 Author: vanhofen Date: 2020-11-23 (Mon, 23 Nov 2020) Origin message was: ------------------ - hw_caps: sync with libstb-hal; fix cst build ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- lib/hardware/coolstream/hardware_caps.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/hardware/coolstream/hardware_caps.h b/lib/hardware/coolstream/hardware_caps.h index 128dd68b5..4a78beec3 100644 --- a/lib/hardware/coolstream/hardware_caps.h +++ b/lib/hardware/coolstream/hardware_caps.h @@ -35,16 +35,20 @@ typedef struct hw_caps display_type_t display_type; int display_xres; /* x resolution or chars per line */ int display_yres; - int display_can_deepstandby; int display_can_set_brightness; + int display_can_deepstandby; int display_has_statusline; int display_has_colon; int has_button_timer; int has_button_vformat; + char startup_file[64]; char boxvendor[64]; char boxname[64]; char boxarch[64]; + int boxtype; + int has_CI; } hw_caps_t; hw_caps_t *get_hwcaps(void); -#endif + +#endif // __HARDWARE_CAPS_H__