From: Erwan Velu Date: Tue, 29 Mar 2011 20:42:47 +0000 (+0200) Subject: hdt: Displaying item name for missing dmi items X-Git-Tag: syslinux-4.05-pre1~20^2~48 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bc7ebf1eccf8899be05b0d8b476a7f504acf808b;p=profile%2Fivi%2Fsyslinux.git hdt: Displaying item name for missing dmi items --- diff --git a/com32/hdt/hdt-dump-dmi.c b/com32/hdt/hdt-dump-dmi.c index 2e87666..dfb08ee 100644 --- a/com32/hdt/hdt-dump-dmi.c +++ b/com32/hdt/hdt-dump-dmi.c @@ -38,6 +38,7 @@ void dump_hardware_security(struct s_hardware *hardware, ZZJSON_CONFIG *config, } APPEND_ARRAY + add_as("dmi.item","hardware_security") add_ahs(dmi.hardware_security.power_on_passwd_status) add_ahs(dmi.hardware_security.keyboard_passwd_status) add_ahs(dmi.hardware_security.administrator_passwd_status) @@ -48,17 +49,19 @@ void dump_hardware_security(struct s_hardware *hardware, ZZJSON_CONFIG *config, void dump_oem_strings(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item) { if (strlen(hardware->dmi.oem_strings) == 0) { APPEND_ARRAY - add_as("dmi.warning","No oem structure found") + add_as("dmi.warning","No OEM structure found") END_OF_APPEND; return; } APPEND_ARRAY + add_as("dmi.item","OEM") add_ahs(dmi.oem_strings) END_OF_APPEND; } void dump_memory_size(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item) { APPEND_ARRAY + add_as("dmi.item","memory size") add_ai("dmi.memory_size (KB)",hardware->detected_memory_size) add_ai("dmi.memory_size (MB)",(hardware->detected_memory_size + (1 << 9)) >> 10) END_OF_APPEND;