From 16ab5035d7f7dffddcbd8e1f76bbfa5305f2f0ca Mon Sep 17 00:00:00 2001 From: GetAway Date: Sat, 1 Dec 2018 10:38:17 +0100 Subject: [PATCH] libarmbox: introduce has_button_vformat Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/2d90952e289059995e14fb6acc06d944cf91698a Author: GetAway Date: 2018-12-01 (Sat, 01 Dec 2018) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- include/hardware_caps.h | 1 + libarmbox/hardware_caps.c | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/include/hardware_caps.h b/include/hardware_caps.h index 3a553ca..44a11a9 100644 --- a/include/hardware_caps.h +++ b/include/hardware_caps.h @@ -40,6 +40,7 @@ typedef struct hw_caps int display_can_deepstandby; int display_has_statusline; int has_button_timer; + int has_button_vformat; char boxvendor[64]; char boxname[64]; char boxarch[64]; diff --git a/libarmbox/hardware_caps.c b/libarmbox/hardware_caps.c index 22911f5..c5ee366 100644 --- a/libarmbox/hardware_caps.c +++ b/libarmbox/hardware_caps.c @@ -41,6 +41,7 @@ hw_caps_t *get_hwcaps(void) caps.display_can_set_brightness = 1; caps.display_has_statusline = 1; caps.has_button_timer = 1; + caps.has_button_vformat = 0; caps.has_HDMI = 1; strcpy(caps.boxvendor, "VU"); strcpy(caps.boxname, "SOLO4K"); @@ -57,6 +58,7 @@ hw_caps_t *get_hwcaps(void) caps.display_can_set_brightness = 1; caps.display_has_statusline = 0; caps.has_button_timer = 1; + caps.has_button_vformat = 0; caps.has_HDMI = 1; strcpy(caps.boxvendor, "AX-Technologies"); strcpy(caps.boxname, "HD51"); @@ -73,6 +75,7 @@ hw_caps_t *get_hwcaps(void) caps.display_can_set_brightness = 1; caps.display_has_statusline = 0; caps.has_button_timer = 1; + caps.has_button_vformat = 0; caps.has_HDMI = 1; strcpy(caps.boxvendor, "AX-Technologies"); strcpy(caps.boxname, "HD60"); @@ -89,6 +92,7 @@ hw_caps_t *get_hwcaps(void) caps.display_can_set_brightness = 1; caps.display_has_statusline = 0; caps.has_button_timer = 1; + caps.has_button_vformat = 1; caps.has_HDMI = 1; strcpy(caps.boxvendor, "WWIO"); strcpy(caps.boxname, "BRE2ZE4K");