更新symbols文件,解决控制面板设置长度格式不生效问题
This commit is contained in:
parent
b26ae85de1
commit
979ad1730f
|
@ -31,7 +31,6 @@ libkyedid.so.1 libkysdk-hardware #MINVER#
|
|||
kdk_edid_get_visible_area@Base 2.2.3.5
|
||||
kdk_edid_get_week@Base 2.2.3.5
|
||||
kdk_edid_get_year@Base 2.2.3.5
|
||||
verify_file@Base 2.2.3.5
|
||||
libkyfan.so.1 libkysdk-hardware #MINVER#
|
||||
kdk_fan_freeall@Base 2.2.3.5
|
||||
kdk_fan_get_information@Base 2.2.3.5
|
||||
|
|
|
@ -4,4 +4,3 @@ libkyimageproc.so.1 libkysdk-imageproc #MINVER#
|
|||
kdk_jpeg_encoder_init@Base 2.3.0.0
|
||||
kdk_jpeg_encoder_release@Base 2.3.0.0
|
||||
read_image@Base 2.3.0.0
|
||||
verify_file@Base 2.3.0.0
|
||||
|
|
|
@ -13,4 +13,3 @@ libkynetinfo.so.1 libkysdk-net #MINVER#
|
|||
kdk_net_get_resolv_conf@Base 2.2.3.5
|
||||
kdk_net_get_route@Base 2.0.0.0
|
||||
kdk_net_get_up_port@Base 2.2.3.5
|
||||
verify_file@Base 2.2.3.5
|
||||
|
|
|
@ -49,4 +49,3 @@ libkyrtinfo.so.1 libkysdk-proc #MINVER#
|
|||
kdk_rti_get_mem_virt_alloc_KiB@Base 1.2.1
|
||||
kdk_rti_get_uptime@Base 1.2.1
|
||||
uptime@Base 2.0.0.0
|
||||
verify_file@Base 2.0.0.0
|
||||
|
|
|
@ -59,7 +59,6 @@ libkysysinfo.so.1 libkysdk-sysinfo #MINVER#
|
|||
readReleaseFile@Base 2.0.0.0
|
||||
scan_device@Base 2.2.3.5
|
||||
show_kernel_cleanup@Base 2.2.3.5
|
||||
verify_file@Base 2.3.0.0
|
||||
xmalloc@Base 2.2.3.5
|
||||
xrealloc@Base 2.2.3.5
|
||||
xstrdup@Base 2.2.3.5
|
||||
|
|
|
@ -35,4 +35,3 @@ libkydate.so.1 libkysdk-systime #MINVER#
|
|||
path@Base 2.0.0.0
|
||||
strtok_date@Base 2.0.0.0
|
||||
strtok_short_date@Base 2.2.3.5
|
||||
verify_file@Base 2.0.0.0
|
||||
|
|
|
@ -65,7 +65,7 @@ static char* get_val_from_file(FILE *fp, const char *key)
|
|||
return val;
|
||||
}
|
||||
|
||||
int verify_file(char *pFileName)
|
||||
static verify_file(char *pFileName)
|
||||
{
|
||||
if(!strncmp(pFileName, "/sys", strlen("/sys")))
|
||||
{
|
||||
|
|
|
@ -46,7 +46,7 @@ typedef struct rgb {
|
|||
}rgb_t;
|
||||
|
||||
|
||||
int verify_file(char *pFileName)
|
||||
static int verify_file(char *pFileName)
|
||||
{
|
||||
char *p = pFileName;
|
||||
int len = strlen(pFileName);
|
||||
|
|
|
@ -78,7 +78,7 @@ static char prg_cache_loaded = 0;
|
|||
#define PATH_CMDLINE "cmdline"
|
||||
#define PATH_CMDLINEl strlen(PATH_CMDLINE)
|
||||
|
||||
uint verify_file(char *pFileName)
|
||||
static uint verify_file(char *pFileName)
|
||||
{
|
||||
return !strncmp(pFileName, "/proc", strlen("/proc"));
|
||||
}
|
||||
|
|
|
@ -223,7 +223,7 @@ const char *get_items(const char *buffer, unsigned int item)
|
|||
return p;
|
||||
}
|
||||
|
||||
uint verify_file(char *pFileName)
|
||||
static uint verify_file(char *pFileName)
|
||||
{
|
||||
return !strncmp(pFileName, "/proc", strlen("/proc"));
|
||||
}
|
||||
|
|
|
@ -73,7 +73,7 @@ struct device
|
|||
unsigned char *present; /* Maps which configuration bytes are present */
|
||||
};
|
||||
|
||||
uint verify_file(char *pFileName)
|
||||
static uint verify_file(char *pFileName)
|
||||
{
|
||||
return !strncmp(pFileName, "/proc", strlen("/proc"));
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@ include_directories(.)
|
|||
add_library(kydate SHARED ./libkydate.c)
|
||||
set_target_properties(kydate PROPERTIES VERSION 2.3.0 SOVERSION 1)
|
||||
ADD_EXECUTABLE(kydate_test test/kydate_test.c)
|
||||
target_link_libraries(kydate ${GLIBC_LIB} kyconf)
|
||||
target_link_libraries(kydate ${GLIBC_LIB} kyconf kylog)
|
||||
target_link_libraries(kydate_test kydate)
|
||||
ADD_EXECUTABLE(sdk-date date.c)
|
||||
target_link_libraries(sdk-date ${GLIBC_LIB} ${DBUS_LIB} ${DBUS_GLIB_LIB} ${THREAD_LIB} kyconf)
|
||||
|
|
|
@ -53,7 +53,7 @@ sem_t g_Wait;
|
|||
|
||||
u_int8_t g_DateChanged; // 发生了文件变更
|
||||
|
||||
uint verify_file(char *pFileName)
|
||||
static uint verify_file(char *pFileName)
|
||||
{
|
||||
return !strncmp(pFileName, "/home", strlen("/home"));
|
||||
}
|
||||
|
|
|
@ -48,9 +48,10 @@
|
|||
|
||||
char path[512] = {0}; //用户修改后配置文件路径
|
||||
|
||||
uint verify_file(char *pFileName)
|
||||
static uint verify_file(char *pFileName)
|
||||
{
|
||||
return !strncmp(pFileName, "/home", strlen("/home"));
|
||||
int ret = strncmp(pFileName, "/home", strlen("/home"));
|
||||
return !ret;
|
||||
}
|
||||
|
||||
char *en_long_mon(int mon)
|
||||
|
|
Loading…
Reference in New Issue