From 6dd14fed6db519a2feb77a5b2b6e73ff03c4d043 Mon Sep 17 00:00:00 2001 From: jamesbond Date: Mon, 28 Jul 2014 17:01:25 +0000 Subject: revert commit [d5afcb6851]; fix the real cause of missing RAM display (use moreinfo_lookup rather than hi_more_info); fix usb display crashing (util.c now looks for lsusb in /usr/sbin first); fix glibc version not showing (glibc located in /lib64/libc.so.6); initial support for DDR3 spd-decoding (incomplete, the manufacturer is not shown yet). --- modules/devices.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/devices.c') diff --git a/modules/devices.c b/modules/devices.c index a749aeaa..60eed920 100644 --- a/modules/devices.c +++ b/modules/devices.c @@ -68,7 +68,7 @@ void scan_spd(gboolean reload); #endif void scan_device_resources(gboolean reload); -static gchar *hi_more_info(gchar *entry); +gchar *hi_more_info(gchar *entry); static ModuleEntry entries[] = { {N_("Processor"), "processor.png", callback_processors, scan_processors, MODULE_FLAG_NONE}, @@ -175,7 +175,7 @@ gchar *get_pci_device_description(gchar *pci_id) gchar *get_memory_total(void) { scan_memory(FALSE); - return hi_more_info(N_("Total Memory")); + return moreinfo_lookup ("DEV:Total Memory"); //hi_more_info(N_("Total Memory")); } gchar *get_motherboard(void) @@ -215,7 +215,7 @@ ShellModuleMethod *hi_exported_methods(void) return m; } -static gchar *hi_more_info(gchar * entry) +gchar *hi_more_info(gchar * entry) { gchar *info = moreinfo_lookup_with_prefix("DEV", entry); -- cgit v1.2.3