diff options
| -rw-r--r-- | computer.c | 12 | ||||
| -rw-r--r-- | debian/changelog | 10 | ||||
| -rw-r--r-- | debian/control | 4 | 
3 files changed, 22 insertions, 4 deletions
| @@ -275,6 +275,18 @@ MemoryInfo *memory_get_info(void)                  else if (!strncmp(buf, "system type", 11))	\                          get_str_val(ci->machine)		  #endif +#ifdef ARCH_IA64 +#define	PARSE_PROC_CPU()					\ +		if(!strncmp(buf, "BogoMIPS", 8))		\ +			get_int_val(ci->bogomips)		\ +		else if(!strncmp(buf, "vendor", 6))		\ +			get_str_val(ci->machine)		\ +		else if(!strncmp(buf, "family", 6))		\ +			get_str_val(ci->processor)		\ +		else if(!strncmp(buf, "cpu MHz", 7))		\ +			get_int_val(ci->frequency) +#endif +  #ifndef PARSE_PROC_CPU  #error PARSE_PROC_CPU not defined! Maybe your arch is not supported yet; diff --git a/debian/changelog b/debian/changelog index 7db6df6f..b216b675 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,14 @@ +hardinfo (0.3.7pre-4) unstable; urgency=low + +  * added ia64 support. (Closes: #362175) + + -- Agney Lopes Roth Ferraz <agney@debian.org>  Sat, 20 May 2006 16:31:36 -0300 +  hardinfo (0.3.7pre-3) unstable; urgency=low -  * added mips64 support. +  * added mips64 support. (Closes: #361640) - -- Agney Lopes Roth Ferraz <agney@users.sourceforge.net>  Sun,  9 Apr 2006 15:31:38 -0300 + -- Agney Lopes Roth Ferraz <agney@users.sourceforge.net>  Sun,  9 Apr 2006 15:34:14 -0300  hardinfo (0.3.7pre-2) unstable; urgency=low diff --git a/debian/control b/debian/control index 64600b2d..2f7e2e62 100644 --- a/debian/control +++ b/debian/control @@ -1,9 +1,9 @@  Source: hardinfo  Section: x11  Priority: optional -Maintainer: Agney Lopes Roth Ferraz <agney@users.sourceforge.net> +Maintainer: Agney Lopes Roth Ferraz <agney@debian.org>  Build-Depends: debhelper (>> 4.0.0), libgtk2.0-dev, pciutils (>=1:2.1.11-10) -Standards-Version: 3.6.2.0 +Standards-Version: 3.7.2.0  Package: hardinfo  Architecture: any | 
