Mailinglist Archive: opensuse-commit (1649 mails)

< Previous Next >
commit hwinfo
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Mon, 06 Oct 2008 18:51:35 +0200
  • Message-id: <20081006165135.6586E678159@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package hwinfo
checked in at Mon Oct 6 18:51:35 CEST 2008.


--------
--- hwinfo/hwinfo.changes 2008-09-26 17:53:57.000000000 +0200
+++ /mounts/work_src_done/STABLE/hwinfo/hwinfo.changes 2008-10-06
18:01:41.000000000 +0200
@@ -1,0 +2,11 @@
+Mon Oct 6 18:01:34 CEST 2008 - snwint@xxxxxxx
+
+- one more fingerprint sensor
+
+-------------------------------------------------------------------
+Mon Oct 6 16:56:37 CEST 2008 - snwint@xxxxxxx
+
+- re-reverse hardware item lists (bnc #388754, #414717)
+- new fingerprint readers (bnc #429533)
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
hwinfo-15.7.tar.bz2

New:
----
hwinfo-15.9.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ hwinfo.spec ++++++
--- /var/tmp/diff_new_pack.f14488/_old 2008-10-06 18:49:36.000000000 +0200
+++ /var/tmp/diff_new_pack.f14488/_new 2008-10-06 18:49:36.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package hwinfo (Version 15.7)
+# spec file for package hwinfo (Version 15.9)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -28,9 +28,9 @@
PreReq: /sbin/ldconfig %insserv_prereq %fillup_prereq
AutoReqProv: on
Summary: Hardware Library
-Version: 15.7
+Version: 15.9
Release: 1
-Source: hwinfo-15.7.tar.bz2
+Source: hwinfo-15.9.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build

%description
@@ -102,6 +102,11 @@
%doc doc/libhd/html

%changelog
+* Mon Oct 06 2008 snwint@xxxxxxx
+- one more fingerprint sensor
+* Mon Oct 06 2008 snwint@xxxxxxx
+- re-reverse hardware item lists (bnc #388754, #414717)
+- new fingerprint readers (bnc #429533)
* Fri Sep 26 2008 snwint@xxxxxxx
- dump network card eeprom to log (bnc #430170)
* Thu Sep 25 2008 uli@xxxxxxx

++++++ hwinfo-15.7.tar.bz2 -> hwinfo-15.9.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/hwinfo-15.7/Changelog new/hwinfo-15.9/Changelog
--- old/hwinfo-15.7/Changelog 2008-09-26 17:53:42.000000000 +0200
+++ new/hwinfo-15.9/Changelog 2008-10-06 18:00:58.000000000 +0200
@@ -1,3 +1,10 @@
+6/10/2008: v15.9
+ - one more fingerprint sensor
+
+6/10/2008: v15.8
+ - re-reverse hardware item lists (bnc #388754, #414717)
+ - new fingerprint readers (bnc #429533)
+
26/9/2008: v15.7
- dump network card eeprom to log (bnc #430170)

diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/hwinfo-15.7/src/hd/block.c
new/hwinfo-15.9/src/hd/block.c
--- old/hwinfo-15.7/src/hd/block.c 2008-07-16 14:59:36.000000000 +0200
+++ new/hwinfo-15.9/src/hd/block.c 2008-10-01 15:35:23.000000000 +0200
@@ -109,7 +109,7 @@
}
ADD2LOG("----- lsscsi end -----\n");

- sf_bus = reverse_str_list(read_dir("/sys/bus/ide/devices", 'l'));
+ sf_bus = read_dir("/sys/bus/ide/devices", 'l');

if(sf_bus) {
for(sf_bus_e = sf_bus; sf_bus_e; sf_bus_e = sf_bus_e->next) {
@@ -124,16 +124,16 @@
}

sf_block_dir = "/sys/subsystem/block";
- sf_class = reverse_str_list(read_dir(sf_block_dir, 'l'));
+ sf_class = read_dir(sf_block_dir, 'l');

if (!sf_class) {
sf_block_dir = "/sys/class/block";
- sf_class = reverse_str_list(read_dir(sf_block_dir, 'l'));
+ sf_class = read_dir(sf_block_dir, 'l');
}

if (!sf_class) {
sf_block_dir = "/sys/block";
- sf_class = reverse_str_list(read_dir(sf_block_dir, 'd'));
+ sf_class = read_dir(sf_block_dir, 'd');
}

if(!sf_class) {
@@ -1386,7 +1386,7 @@
char *sf_cdev = NULL, *sf_dev = NULL;
char *sf_drv_name, *sf_drv, *bus_id;

- sf_class = reverse_str_list(read_dir("/sys/class/scsi_tape", 'D'));
+ sf_class = read_dir("/sys/class/scsi_tape", 'D');

if(!sf_class) {
ADD2LOG("sysfs: no such class: scsi_tape\n");
@@ -1522,7 +1522,7 @@
char *sf_cdev = NULL, *sf_dev = NULL;
char *sf_drv_name, *sf_drv, *bus_id;

- sf_class = reverse_str_list(read_dir("/sys/class/scsi_generic", 'D'));
+ sf_class = read_dir("/sys/class/scsi_generic", 'D');

if(!sf_class) {
ADD2LOG("sysfs: no such class: scsi_generic\n");
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/hwinfo-15.7/src/hd/edd.c new/hwinfo-15.9/src/hd/edd.c
--- old/hwinfo-15.7/src/hd/edd.c 2008-03-19 15:08:54.000000000 +0100
+++ new/hwinfo-15.9/src/hd/edd.c 2008-10-01 15:32:29.000000000 +0200
@@ -64,7 +64,7 @@

memset(hd_data->edd, 0, sizeof hd_data->edd);

- sf_dir = reverse_str_list(read_dir("/sys/firmware/edd", 'd'));
+ sf_dir = read_dir("/sys/firmware/edd", 'd');

for(sf_dir_e = sf_dir; sf_dir_e; sf_dir_e = sf_dir_e->next) {
str_printf(&sf_edd, 0, "/sys/firmware/edd/%s", sf_dir_e->str);
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/hwinfo-15.7/src/hd/isapnp.c
new/hwinfo-15.9/src/hd/isapnp.c
--- old/hwinfo-15.7/src/hd/isapnp.c 2006-08-29 16:22:07.000000000 +0200
+++ new/hwinfo-15.9/src/hd/isapnp.c 2008-10-01 15:34:30.000000000 +0200
@@ -119,7 +119,7 @@
str_list_t *sf_bus, *sf_bus_e;
char *sf_dev, *sf_dev2;

- sf_bus = reverse_str_list(read_dir("/sys/bus/pnp/devices", 'l'));
+ sf_bus = read_dir("/sys/bus/pnp/devices", 'l');

if(!sf_bus) {
ADD2LOG("sysfs: no such bus: pnp\n");
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/hwinfo-15.7/src/hd/net.c new/hwinfo-15.9/src/hd/net.c
--- old/hwinfo-15.7/src/hd/net.c 2008-09-26 17:49:52.000000000 +0200
+++ new/hwinfo-15.9/src/hd/net.c 2008-10-01 15:00:11.000000000 +0200
@@ -67,8 +67,8 @@

PROGRESS(1, 0, "get network data");

- sf_class = reverse_str_list(read_dir("/sys/class/net", 'l'));
- if(!sf_class) sf_class = reverse_str_list(read_dir("/sys/class/net", 'd'));
+ sf_class = read_dir("/sys/class/net", 'l');
+ if(!sf_class) sf_class = read_dir("/sys/class/net", 'd');

if(!sf_class) {
ADD2LOG("sysfs: no such class: net\n");
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/hwinfo-15.7/src/hd/pci.c new/hwinfo-15.9/src/hd/pci.c
--- old/hwinfo-15.7/src/hd/pci.c 2008-09-15 11:58:31.000000000 +0200
+++ new/hwinfo-15.9/src/hd/pci.c 2008-10-01 15:33:32.000000000 +0200
@@ -128,7 +128,7 @@
str_list_t *sf_bus, *sf_bus_e;
char *sf_dev;

- sf_bus = reverse_str_list(read_dir("/sys/bus/pci/devices", 'l'));
+ sf_bus = read_dir("/sys/bus/pci/devices", 'l');

if(!sf_bus) {
ADD2LOG("sysfs: no such bus: pci\n");
@@ -585,7 +585,7 @@
str_list_t *sf_bus, *sf_bus_e;
char *sf_dev;

- sf_bus = reverse_str_list(read_dir("/sys/bus/macio/devices", 'l'));
+ sf_bus = read_dir("/sys/bus/macio/devices", 'l');

if(!sf_bus) {
ADD2LOG("sysfs: no such bus: macio\n");
@@ -689,7 +689,7 @@
str_list_t *sf_bus, *sf_bus_e;
char *sf_dev;

- sf_bus = reverse_str_list(read_dir("/sys/bus/vio/devices", 'l'));
+ sf_bus = read_dir("/sys/bus/vio/devices", 'l');

if(!sf_bus) {
ADD2LOG("sysfs: no such bus: vio\n");
@@ -810,7 +810,7 @@
char *sf_dev, *sf_eth_net;
int mv643xx_eth_seen = 0;

- sf_bus = reverse_str_list(read_dir("/sys/bus/platform/devices", 'l'));
+ sf_bus = read_dir("/sys/bus/platform/devices", 'l');

if(!sf_bus) {
ADD2LOG("sysfs: no such bus: platform\n");
@@ -862,7 +862,7 @@
hd_t *hd;
char *sf_dev;

- sf_bus = reverse_str_list(read_dir("/sys/bus/of_platform/devices", 'l'));
+ sf_bus = read_dir("/sys/bus/of_platform/devices", 'l');

if(!sf_bus) {
ADD2LOG("sysfs: no such bus: of_platform\n");
@@ -962,7 +962,7 @@
str_list_t *sf_bus, *sf_bus_e, *sf_eth_dev, *sf_eth_dev_e;
char *sf_dev, *sf_eth_net, *sf_eth_wireless;

- sf_bus = reverse_str_list(read_dir("/sys/bus/ps3_system_bus/devices", 'l'));
+ sf_bus = read_dir("/sys/bus/ps3_system_bus/devices", 'l');

if(!sf_bus) {
ADD2LOG("sysfs: no such bus: ps3_system_bus\n");
@@ -1095,7 +1095,7 @@
str_list_t *sf_bus, *sf_bus_e;
hd_t *hd;

- sf_bus = reverse_str_list(read_dir("/sys/bus/ibmebus/devices", 'l'));
+ sf_bus = read_dir("/sys/bus/ibmebus/devices", 'l');

if(!sf_bus) {
ADD2LOG("sysfs: no such bus: ibmebus\n");
@@ -1176,7 +1176,7 @@
char *sf_dev, *drv, *module;
unsigned u;

- sf_bus = reverse_str_list(read_dir("/sys/bus/xen/devices", 'l'));
+ sf_bus = read_dir("/sys/bus/xen/devices", 'l');

if(!sf_bus) {
ADD2LOG("sysfs: no such bus: xen\n");
@@ -1318,7 +1318,7 @@
str_list_t *sf_bus, *sf_bus_e;
char *sf_dev, *drv, *drv_name;

- sf_bus = reverse_str_list(read_dir("/sys/bus/vmbus/devices", 'l'));
+ sf_bus = read_dir("/sys/bus/vmbus/devices", 'l');

if(!sf_bus) {
ADD2LOG("sysfs: no such bus: vm\n");
@@ -1383,7 +1383,7 @@
str_list_t *sf_bus, *sf_bus_e;
char *sf_dev, *drv, *drv_name, *modalias;

- sf_bus = reverse_str_list(read_dir("/sys/bus/virtio/devices", 'l'));
+ sf_bus = read_dir("/sys/bus/virtio/devices", 'l');

if(!sf_bus) {
ADD2LOG("sysfs: no such bus: virtio\n");
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/hwinfo-15.7/src/hd/pcmcia.c
new/hwinfo-15.9/src/hd/pcmcia.c
--- old/hwinfo-15.7/src/hd/pcmcia.c 2006-08-29 16:22:13.000000000 +0200
+++ new/hwinfo-15.9/src/hd/pcmcia.c 2008-10-01 15:34:44.000000000 +0200
@@ -63,7 +63,7 @@
str_list_t *sf_bus, *sf_bus_e;
char *sf_dev;

- sf_bus = reverse_str_list(read_dir("/sys/bus/pcmcia/devices", 'l'));
+ sf_bus = read_dir("/sys/bus/pcmcia/devices", 'l');

if(!sf_bus) {
ADD2LOG("sysfs: no such bus: pcmcia\n");
@@ -211,7 +211,7 @@
str_list_t *sf_class, *sf_class_e;
char *sf_cdev = NULL, *sf_dev;

- sf_class = reverse_str_list(read_dir("/sys/class/pcmcia_socket", 'd'));
+ sf_class = read_dir("/sys/class/pcmcia_socket", 'd');

if(!sf_class) {
ADD2LOG("sysfs: no such class: pcmcia_socket\n");
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/hwinfo-15.7/src/hd/usb.c new/hwinfo-15.9/src/hd/usb.c
--- old/hwinfo-15.7/src/hd/usb.c 2008-07-21 14:50:46.000000000 +0200
+++ new/hwinfo-15.9/src/hd/usb.c 2008-10-01 15:34:10.000000000 +0200
@@ -91,7 +91,7 @@
str_list_t *sf_bus, *sf_bus_e;
char *sf_dev, *sf_dev_2;

- sf_bus = reverse_str_list(read_dir("/sys/bus/usb/devices", 'l'));
+ sf_bus = read_dir("/sys/bus/usb/devices", 'l');

if(!sf_bus) {
ADD2LOG("sysfs: no such bus: usb\n");
@@ -614,9 +614,9 @@
* A bit tricky: if there are links, assume newer sysfs layout with compat
* symlinks; if not, assume old layout with directories.
*/
- sf_dir = reverse_str_list(read_dir("/sys/class/input", 'l'));
+ sf_dir = read_dir("/sys/class/input", 'l');
if(!sf_dir) {
- sf_dir = reverse_str_list(read_dir("/sys/class/input", 'd'));
+ sf_dir = read_dir("/sys/class/input", 'd');
is_dir = 1;
}

@@ -652,8 +652,8 @@
char *sf_cdev = NULL, *sf_dev;
char *sf_drv_name, *sf_drv, *bus_id, *bus_name;

- sf_class = reverse_str_list(read_dir("/sys/class/usb", 'D'));
- if(!sf_class) sf_class =
reverse_str_list(read_dir("/sys/class/usb_endpoint", 'l'));
+ sf_class = read_dir("/sys/class/usb", 'D');
+ if(!sf_class) sf_class = read_dir("/sys/class/usb_endpoint", 'l');

if(!sf_class) {
ADD2LOG("sysfs: no such class: usb\n");
@@ -821,7 +821,7 @@
char *sf_cdev = NULL, *sf_dev;
char *sf_drv_name, *sf_drv, *bus_id, *bus_name;

- sf_class = reverse_str_list(read_dir("/sys/class/tty", 'D'));
+ sf_class = read_dir("/sys/class/tty", 'D');

if(!sf_class) {
ADD2LOG("sysfs: no such class: tty\n");
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/hwinfo-15.7/src/ids/src/special
new/hwinfo-15.9/src/ids/src/special
--- old/hwinfo-15.7/src/ids/src/special 2008-09-15 11:58:32.000000000 +0200
+++ new/hwinfo-15.9/src/ids/src/special 2008-10-06 18:00:06.000000000 +0200
@@ -736,10 +736,28 @@

vendor.id usb 0x0483
&device.id usb 0x2016
+|vendor.id usb 0x0483
+&device.id usb 0x2015
+|vendor.id usb 0x08ff
+&device.id usb 0x5501
+|vendor.id usb 0x08ff
+&device.id usb 0x1600
+|vendor.id usb 0x1162
+&device.id usb 0x0300
|vendor.id usb 0x08ff
&device.id usb 0x2580
|vendor.id usb 0x045e
+&device.id usb 0x00bb
+|vendor.id usb 0x045e
+&device.id usb 0x00bc
+|vendor.id usb 0x045e
&device.id usb 0x00bd
+|vendor.id usb 0x045e
+&device.id usb 0x00ca
+|vendor.id usb 0x05ba
+&device.id usb 0x0007
+|vendor.id usb 0x05ba
+&device.id usb 0x000a
|vendor.id usb 0x061a
&device.id usb 0x0110
|vendor.id usb 0x061a
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/hwinfo-15.7/VERSION new/hwinfo-15.9/VERSION
--- old/hwinfo-15.7/VERSION 2008-09-26 17:53:09.000000000 +0200
+++ new/hwinfo-15.9/VERSION 2008-10-06 18:00:38.000000000 +0200
@@ -1 +1 @@
-15.7
+15.9


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

--
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread