Hello community, here is the log from the commit of package hwinfo checked in at Mon Sep 24 18:46:47 CEST 2007. -------- --- hwinfo/hwinfo.changes 2007-09-18 12:13:31.000000000 +0200 +++ /mounts/work_src_done/STABLE/STABLE/hwinfo/hwinfo.changes 2007-09-24 15:48:58.000000000 +0200 @@ -1,0 +2,10 @@ +Mon Sep 24 15:48:52 CEST 2007 - snwint@suse.de + +- updated X11 data (#326503) + +------------------------------------------------------------------- +Mon Sep 24 12:25:19 CEST 2007 - snwint@suse.de + +- updated X11 data (#327568) + +------------------------------------------------------------------- Old: ---- hwinfo-13.54.tar.bz2 New: ---- hwinfo-13.56.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ hwinfo.spec ++++++ --- /var/tmp/diff_new_pack.l30812/_old 2007-09-24 18:46:32.000000000 +0200 +++ /var/tmp/diff_new_pack.l30812/_new 2007-09-24 18:46:32.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package hwinfo (Version 13.54) +# spec file for package hwinfo (Version 13.56) # # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -20,9 +20,9 @@ PreReq: /sbin/ldconfig %insserv_prereq %fillup_prereq AutoReqProv: on Summary: Hardware Library -Version: 13.54 +Version: 13.56 Release: 1 -Source: hwinfo-13.54.tar.bz2 +Source: hwinfo-13.56.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -87,8 +87,11 @@ %{_libdir}/pkgconfig/hwinfo.pc /usr/include/hd.h %doc doc/libhd/html - %changelog +* Mon Sep 24 2007 - snwint@suse.de +- updated X11 data (#326503) +* Mon Sep 24 2007 - snwint@suse.de +- updated X11 data (#327568) * Tue Sep 18 2007 - snwint@suse.de - updated X11 data * Mon Sep 17 2007 - snwint@suse.de ++++++ hwinfo-13.54.tar.bz2 -> hwinfo-13.56.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/hwinfo-13.54/Changelog new/hwinfo-13.56/Changelog --- old/hwinfo-13.54/Changelog 2007-09-18 12:05:08.000000000 +0200 +++ new/hwinfo-13.56/Changelog 2007-09-24 15:48:20.000000000 +0200 @@ -1,3 +1,9 @@ +24/9/2007: v13.56 + - updated X11 data (#326503) + +24/9/2007: v13.55 + - updated X11 data (#327568) + 18/9/2007: v13.54 - updated X11 data diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/hwinfo-13.54/isdn.diff new/hwinfo-13.56/isdn.diff --- old/hwinfo-13.54/isdn.diff 1970-01-01 01:00:00.000000000 +0100 +++ new/hwinfo-13.56/isdn.diff 2007-09-20 18:23:23.000000000 +0200 @@ -0,0 +1,94 @@ +--- VERSION (revision 1787) ++++ VERSION (working copy) +@@ -1 +1 @@ +-13.54 ++13.55 +--- Changelog (revision 1787) ++++ Changelog (working copy) +@@ -1,3 +1,6 @@ ++20/9/2007: v13.55 ++ - put isa probing into subprocess (#308671) ++ + 18/9/2007: v13.54 + - updated X11 data + +--- src/hd/isa.c (revision 1784) ++++ src/hd/isa.c (working copy) +@@ -17,7 +17,7 @@ + #if defined(__i386__) + + static void scan_isa_isdn(hd_data_t *hd_data); +-static isa_isdn_t *free_isa_isdn(isa_isdn_t *ii); ++// static isa_isdn_t *free_isa_isdn(isa_isdn_t *ii); + + static void dump_isa_isdn_data(hd_data_t *hd_data, isa_isdn_t *ii); + +@@ -39,19 +39,37 @@ + + void scan_isa_isdn(hd_data_t *hd_data) + { +- isa_isdn_t *ii0, *ii; ++ isa_isdn_t *ii, *ii1 = NULL, *ii2, **isdn_ptr = NULL; + hd_t *hd; + hd_res_t *res; + + PROGRESS(1, 0, "isdn"); + +- ii0 = isdn_detect(); ++ isdn_ptr = hd_shm_add(hd_data, NULL, sizeof *isdn_ptr); + +- dump_isa_isdn_data(hd_data, ii0); ++ hd_fork(hd_data, 10, 10); + ++ if(hd_data->flags.forked) { ++ for(ii = isdn_detect(); ii; ii = ii->next) { ++ ii2 = hd_shm_add(hd_data, ii, sizeof *ii); ++ if(!*isdn_ptr) { ++ *isdn_ptr = ii2; ++ } ++ else { ++ ii1->next = ii2; ++ } ++ ii1 = ii2; ++ ii1->next = NULL; ++ } ++ } ++ ++ hd_fork_done(hd_data); ++ ++ dump_isa_isdn_data(hd_data, *isdn_ptr); ++ + PROGRESS(1, 1, "isdn"); + +- for(ii = ii0; ii; ii = ii->next) { ++ for(ii = *isdn_ptr; ii; ii = ii->next) { + hd = add_hd_entry(hd_data, __LINE__, 0); + hd->bus.id = bus_isa; + hd->base_class.id = bc_isdn; +@@ -77,7 +95,8 @@ + + } + +- free_isa_isdn(ii0); ++ hd_shm_clean(hd_data); ++ // free_isa_isdn(ii0); + } + + isa_isdn_t *new_isa_isdn(isa_isdn_t **ii) +@@ -87,6 +106,8 @@ + return *ii = new_mem(sizeof **ii); + } + ++ ++#if 0 + isa_isdn_t *free_isa_isdn(isa_isdn_t *ii) + { + isa_isdn_t *l; +@@ -95,6 +116,7 @@ + + return NULL; + } ++#endif + + void dump_isa_isdn_data(hd_data_t *hd_data, isa_isdn_t *ii) + { diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/hwinfo-13.54/src/ids/src/x11.amd64 new/hwinfo-13.56/src/ids/src/x11.amd64 --- old/hwinfo-13.54/src/ids/src/x11.amd64 2007-09-18 11:32:50.000000000 +0200 +++ new/hwinfo-13.56/src/ids/src/x11.amd64 2007-09-24 15:47:37.000000000 +0200 @@ -166,8 +166,8 @@ vendor.id pci 0x1002 &device.id pci 0x4337 +device.name RS200 4337 -+driver.xfree 4|radeon -+driver.xfree 4|radeon|3d||dri ++driver.xfree 4|radeonold ++driver.xfree 4|radeonold|3d||dri vendor.id pci 0x1002 &device.id pci 0x4354 @@ -584,6 +584,14 @@ +driver.xfree 4|radeon|3d||dri vendor.id pci 0x1002 +&device.id pci 0x4e50 +&subvendor.id pci 0x1558 +&subdevice.id pci 0x4701 ++subdevice.name RV350 NP (1558:4701) ++driver.xfree 4|radeonold ++driver.xfree 4|radeonold|3d||dri + + vendor.id pci 0x1002 &device.id pci 0x4e51 +device.name RV350 NQ +driver.xfree 4|radeon @@ -3957,6 +3965,14 @@ vendor.id pci 0x8086 &device.id pci 0x2592 +&subvendor.id pci 0x1014 +&subdevice.id pci 0x0582 ++subdevice.name 915 GM - IBM ++driver.xfree 4|i810 ++driver.xfree 4|i810|3d||dri + + vendor.id pci 0x8086 +&device.id pci 0x2592 &subvendor.id pci 0x1584 &subdevice.id pci 0x9800 +subdevice.name 915 GM diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/hwinfo-13.54/src/ids/src/x11.i386 new/hwinfo-13.56/src/ids/src/x11.i386 --- old/hwinfo-13.54/src/ids/src/x11.i386 2007-09-18 11:32:51.000000000 +0200 +++ new/hwinfo-13.56/src/ids/src/x11.i386 2007-09-24 15:47:39.000000000 +0200 @@ -166,8 +166,8 @@ vendor.id pci 0x1002 &device.id pci 0x4337 +device.name RS200 4337 -+driver.xfree 4|radeon -+driver.xfree 4|radeon|3d||dri ++driver.xfree 4|radeonold ++driver.xfree 4|radeonold|3d||dri vendor.id pci 0x1002 &device.id pci 0x4354 @@ -584,6 +584,14 @@ +driver.xfree 4|radeon|3d||dri vendor.id pci 0x1002 +&device.id pci 0x4e50 +&subvendor.id pci 0x1558 +&subdevice.id pci 0x4701 ++subdevice.name RV350 NP (1558:4701) ++driver.xfree 4|radeonold ++driver.xfree 4|radeonold|3d||dri + + vendor.id pci 0x1002 &device.id pci 0x4e51 +device.name RV350 NQ +driver.xfree 4|radeon @@ -3957,6 +3965,14 @@ vendor.id pci 0x8086 &device.id pci 0x2592 +&subvendor.id pci 0x1014 +&subdevice.id pci 0x0582 ++subdevice.name 915 GM - IBM ++driver.xfree 4|i810 ++driver.xfree 4|i810|3d||dri + + vendor.id pci 0x8086 +&device.id pci 0x2592 &subvendor.id pci 0x1584 &subdevice.id pci 0x9800 +subdevice.name 915 GM diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/hwinfo-13.54/src/ids/src/x11.ia64 new/hwinfo-13.56/src/ids/src/x11.ia64 --- old/hwinfo-13.54/src/ids/src/x11.ia64 2007-09-18 11:32:52.000000000 +0200 +++ new/hwinfo-13.56/src/ids/src/x11.ia64 2007-09-24 15:47:40.000000000 +0200 @@ -140,7 +140,7 @@ vendor.id pci 0x1002 &device.id pci 0x4337 +device.name RS200 4337 -+driver.xfree 4|radeon ++driver.xfree 4|radeonold vendor.id pci 0x1002 &device.id pci 0x4354 @@ -519,6 +519,13 @@ +driver.xfree 4|radeon vendor.id pci 0x1002 +&device.id pci 0x4e50 +&subvendor.id pci 0x1558 +&subdevice.id pci 0x4701 ++subdevice.name RV350 NP (1558:4701) ++driver.xfree 4|radeonold + + vendor.id pci 0x1002 &device.id pci 0x4e51 +device.name RV350 NQ +driver.xfree 4|radeon @@ -3574,6 +3581,12 @@ vendor.id pci 0x8086 &device.id pci 0x2592 +&subvendor.id pci 0x1014 +&subdevice.id pci 0x0582 ++subdevice.name 915 GM - IBM + + vendor.id pci 0x8086 +&device.id pci 0x2592 &subvendor.id pci 0x1584 &subdevice.id pci 0x9800 +subdevice.name 915 GM diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/hwinfo-13.54/src/ids/src/x11.ppc new/hwinfo-13.56/src/ids/src/x11.ppc --- old/hwinfo-13.54/src/ids/src/x11.ppc 2007-09-18 11:32:52.000000000 +0200 +++ new/hwinfo-13.56/src/ids/src/x11.ppc 2007-09-24 15:47:40.000000000 +0200 @@ -135,7 +135,7 @@ vendor.id pci 0x1002 &device.id pci 0x4337 +device.name RS200 4337 -+driver.xfree 4|radeon ++driver.xfree 4|radeonold vendor.id pci 0x1002 &device.id pci 0x4354 @@ -509,6 +509,13 @@ +driver.xfree 4|radeon vendor.id pci 0x1002 +&device.id pci 0x4e50 +&subvendor.id pci 0x1558 +&subdevice.id pci 0x4701 ++subdevice.name RV350 NP (1558:4701) ++driver.xfree 4|radeonold + + vendor.id pci 0x1002 &device.id pci 0x4e51 +device.name RV350 NQ +driver.xfree 4|radeon @@ -3400,6 +3407,12 @@ vendor.id pci 0x8086 &device.id pci 0x2592 +&subvendor.id pci 0x1014 +&subdevice.id pci 0x0582 ++subdevice.name 915 GM - IBM + + vendor.id pci 0x8086 +&device.id pci 0x2592 &subvendor.id pci 0x1584 &subdevice.id pci 0x9800 +subdevice.name 915 GM diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/hwinfo-13.54/VERSION new/hwinfo-13.56/VERSION --- old/hwinfo-13.54/VERSION 2007-09-18 12:04:56.000000000 +0200 +++ new/hwinfo-13.56/VERSION 2007-09-24 15:47:52.000000000 +0200 @@ -1 +1 @@ -13.54 +13.56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de