mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 00:41:17 +02:00
imageinfo: outsource hal info init into own member
This commit is contained in:
@@ -377,6 +377,18 @@ void CImageInfo::InitInfoData()
|
|||||||
v_info.push_back({g_Locale->getText(LOCALE_IMAGEINFO_VCS), PACKAGE_VERSION_GIT});
|
v_info.push_back({g_Locale->getText(LOCALE_IMAGEINFO_VCS), PACKAGE_VERSION_GIT});
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
//stb info
|
||||||
|
initHalInfo();
|
||||||
|
|
||||||
|
//internal api versions
|
||||||
|
initAPIVersions();
|
||||||
|
|
||||||
|
//support infos
|
||||||
|
initSupportInfo();
|
||||||
|
}
|
||||||
|
|
||||||
|
void CImageInfo::initHalInfo()
|
||||||
|
{
|
||||||
#if USE_STB_HAL
|
#if USE_STB_HAL
|
||||||
hal_libversion_t ver;
|
hal_libversion_t ver;
|
||||||
hal_get_lib_version(&ver);
|
hal_get_lib_version(&ver);
|
||||||
@@ -385,12 +397,6 @@ void CImageInfo::InitInfoData()
|
|||||||
//libstb-hal git status
|
//libstb-hal git status
|
||||||
v_info.push_back({g_Locale->getText(LOCALE_IMAGEINFO_VCS), ver.vGitDescribe});
|
v_info.push_back({g_Locale->getText(LOCALE_IMAGEINFO_VCS), ver.vGitDescribe});
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//internal api versions
|
|
||||||
initAPIVersions();
|
|
||||||
|
|
||||||
//support infos
|
|
||||||
initSupportInfo();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CImageInfo::initSupportInfo()
|
void CImageInfo::initSupportInfo()
|
||||||
|
@@ -58,6 +58,7 @@ class CImageInfo : public CMenuTarget
|
|||||||
void InitMinitv();
|
void InitMinitv();
|
||||||
void InitInfos();
|
void InitInfos();
|
||||||
void InitBuildInfos();
|
void InitBuildInfos();
|
||||||
|
void initHalInfo();
|
||||||
void InitInfoText(const std::string& text);
|
void InitInfoText(const std::string& text);
|
||||||
void initSupportInfo();
|
void initSupportInfo();
|
||||||
void initAPIVersions();
|
void initAPIVersions();
|
||||||
|
Reference in New Issue
Block a user