[syslinux:master] hdt: Displaying item name for missing dmi items

syslinux-bot for Erwan Velu erwanaliasr1 at gmail.com
Mon Apr 25 15:28:33 PDT 2011


Commit-ID:  bc7ebf1eccf8899be05b0d8b476a7f504acf808b
Gitweb:     http://syslinux.zytor.com/commit/bc7ebf1eccf8899be05b0d8b476a7f504acf808b
Author:     Erwan Velu <erwanaliasr1 at gmail.com>
AuthorDate: Tue, 29 Mar 2011 22:42:47 +0200
Committer:  Erwan Velu <erwanaliasr1 at gmail.com>
CommitDate: Tue, 29 Mar 2011 22:42:47 +0200

hdt: Displaying item name for missing dmi items



---
 com32/hdt/hdt-dump-dmi.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

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;



More information about the Syslinux-commits mailing list