summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* usb audio devices can use new alsa modules snd-usb-audioThierry Vignaud2002-08-152-1/+6
|
* 0.4.5-1mdk: don't depend of the table orderThierry Vignaud2002-08-082-2/+33
|
* - struct pciusb_entrie : add already_found flagThierry Vignaud2002-08-082-0/+10
| | | | | | | | | - pciusb::pciusb_initialize() : zero the above flag: - pciusb::pciusb_find_modules() : use the above flag: o if device subids matches the table ones, swtich the already_found flag o skip already handled device (if already_found==1)
* use -fPIC on every archPascal Rigaux2002-07-311-2/+1
|
* fill in pci_bus and pci_device for USBPascal Rigaux2002-07-302-5/+20
|
* 0.4.4-1mdkThierry Vignaud2002-07-251-4/+8
|
* *** empty log message ***Thierry Vignaud2002-07-251-0/+31
|
* fix "(null) description" bug: don't skip entries where module hasThierry Vignaud2002-07-251-1/+1
| | | | | already be set by pci.c workaround
* 0.4.3-1mdkThierry Vignaud2002-07-241-2/+9
|
* enhanced helpThierry Vignaud2002-07-231-2/+2
|
* - don't die when missing /proc/bus/pci/devices (resp. /proc/bus/usb/devices),Pascal Rigaux2002-07-223-6/+17
| | | | | | | since on some boxes, this is *normal*! - free error messages obtained via asprintf - remove debugging message "TOTO"
* teach titi that !(a && !b) is not (!a && !b) but (!a || b)Pascal Rigaux2002-07-162-2/+8
| | | | | | | (the other solution is to teach him to *test*) (oh, remind me to teach him not to re-indent the whole code until he doesn't make stupid bugs)
* next release is okV0_4_2_1mdkThierry Vignaud2002-07-162-6/+31
|
* explain what does -fThierry Vignaud2002-07-161-1/+1
|
* no need for unistd.hThierry Vignaud2002-07-161-1/+0
|
* - print error message if unable to open the arguement passed to -u,-pThierry Vignaud2002-07-163-2/+40
| | | | | | - print error message if usb service isn't started (commented for now to follow previous behaviour)
* - fix usb "url"Thierry Vignaud2002-07-161-2/+4
| | | | | - prevent potential segfault if no argument to -u in next test
* - pci.c: add the ability to read pci devices list from a file insteadThierry Vignaud2002-07-165-2/+360
| | | | | | | | | of /proc/bus/pci/devices - spec: prepare for next release - add ChangeLog
* - move usb devices proc entry path intoThierry Vignaud2002-07-163-7/+18
| | | | | | | | | | | | | libldetect-private.h::proc_usb_path - add -u option so that lspcidrake can read usb devices from a file in order to understand what happened to remote testers - make if (test) action clearer by rejecting action singleton in next line - lspcidrake: describe all options
* - change memory pattern : MAX*sizeof(entry) on stack + REAL_NB*sizeof() in heapThierry Vignaud2002-07-161-23/+23
| | | | | | | to MAX*sizeof(entry) on heap then downsized to real size - make if (test) action clearer by rejecting action singleton in next line
* don't do useless stuff when full probe isn't requires:Thierry Vignaud2002-07-161-2/+2
| | | | | | - allocatestuff on stack - call snprintf
* compacificazionThierry Vignaud2002-07-151-13/+7
|
* fix for "gcc-2.95.3 don't compile" (reported by Ian White)Thierry Vignaud2002-07-091-2/+2
|
* add explicit depandancies so that make rebuild files if needed when ↵Thierry Vignaud2002-07-051-0/+4
| | | | header're altered
* compile with -Os (which results in saving 12% of text size)Thierry Vignaud2002-07-051-1/+1
|
* factorize common constants in private headerThierry Vignaud2002-07-041-1/+1
|
* typo fixThierry Vignaud2002-07-041-1/+1
|
* - factorize common constants in private headerThierry Vignaud2002-07-041-4/+5
| | | | | - factorize strlen() call
* factorize common constants in private headerThierry Vignaud2002-07-043-2/+5
|
* we don't really need stdlib.hThierry Vignaud2002-07-041-3/+2
|
* move full_probe definition nearer its usage, aka in main()Thierry Vignaud2002-07-041-22/+15
| | | | | - kill print_name() and print_id() [used only once]
* - merge {pci,usb}_printit into printitThierry Vignaud2002-07-041-21/+10
| | | | | - kill usage()
* 0.4.1-1mdkThierry Vignaud2002-07-041-2/+16
|
* make an if clearerThierry Vignaud2002-07-041-1/+2
|
* s/zcat/gzip -cd/ back for lord pixouThierry Vignaud2002-07-031-2/+3
|
* ifree(e->text) to prevent mem leak with usbThierry Vignaud2002-07-031-0/+1
|
* - fix pipe() error pathThierry Vignaud2002-07-031-22/+22
| | | | | | - make pciusb_find_modules() normal path clearer: rewrite tests cascade into a single path were exceptions're just "go away"
* - make gzip path in fh_open() be clearerThierry Vignaud2002-07-031-36/+39
| | | | | | | | | | | | | | | | | | | | | | - pciusb_find_modules() optimization / cleanups : - only calc module and description once so that if there're multiples identical cards, we just gives the same result - do less copies : - only copy when setting e->{text,module} - it's useless to do copies on the stack, just play with strndup() instead of strdup() - skip comments in {usb,pci}table - remove if (q) test which is uneeded since we've already parsed the buffer with sscanf() and we've skipped comments - remove uneeded ifree (it's impossible to get valid pointer a this point)
* - no need to allocate fname_gz in fast pathThierry Vignaud2002-07-031-28/+31
| | | | | | | - reduce cmd size - use zcat rather than gzip
* get rid of more uneeded copiesThierry Vignaud2002-07-034-17/+17
|
* list all contributorsThierry Vignaud2002-07-031-1/+4
|
* get rid of {pci,usb}_find_modules()Thierry Vignaud2002-07-032-8/+3
|
* prevent signed vs unsigned comp warningsThierry Vignaud2002-07-032-3/+3
|
* indent-regionThierry Vignaud2002-07-034-251/+253
|
* don't do uneeded copies (saves 2% of text size)Thierry Vignaud2002-07-033-31/+31
|
* be more strictThierry Vignaud2002-07-031-1/+1
|
* simplify (source is clearer, binary isn't really altered)Thierry Vignaud2002-07-031-10/+8
|
* sanitize specfileGwenolé Beauchesne2002-06-261-6/+10
|
* ensure the header file are C++ compliant (do not use "class" for struct ↵Pascal Rigaux2002-06-108-20/+22
| | | | field name)
* *** empty log message ***Pascal Rigaux2002-05-061-0/+1
|