mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-16 07:47:12 -04:00
28 lines
603 B
Plaintext
28 lines
603 B
Plaintext
$NetBSD: patch-ah,v 1.1.1.1 2009/08/16 18:25:53 bouyer Exp $
|
|
|
|
--- /dev/null 2009-06-25 18:52:46.000000000 +0200
|
|
+++ ./lib/Ocsinventory/Agent/Backend/OS/BSD/Pcictl.pm 2009-06-25 18:43:12.000000000 +0200
|
|
@@ -0,0 +1,22 @@
|
|
+package Ocsinventory::Agent::Backend::OS::BSD::Pcictl;
|
|
+use strict;
|
|
+
|
|
+sub check {can_run("pcictl")}
|
|
+
|
|
+sub run {}
|
|
+
|
|
+sub runpcictl {
|
|
+ my @devices;
|
|
+ opendir DEV, "/dev" or die "can't open /dev";
|
|
+ while (my $file = readdir DEV) {
|
|
+ if ($file =~ m/^pci[0-9]+$/) {
|
|
+ foreach (`pcictl $file list`) {
|
|
+ chop $_;
|
|
+ push @devices, $_;
|
|
+ }
|
|
+ }
|
|
+ }
|
|
+ return @devices;
|
|
+}
|
|
+
|
|
+1;
|