Drop support for ddcprobe which is deprecated since ages
[grml-hwinfo.git] / sysdump
1 #!/usr/bin/perl
2 #
3 #    sysdump - dump /sys to a textformat
4 #
5 #    Copyright 2005 David Schmitt <david@schmitt.edv-bus.at>
6 #
7 #    This program is free software; you can redistribute it and/or modify
8 #    it under the terms of the GNU General Public License as published by
9 #    the Free Software Foundation; either version 2 of the License, or
10 #    (at your option) any later version.
11
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU General Public License for more details.
16
17 #    You should have received a copy of the GNU General Public License
18 #    along with this program; if not, write to the Free Software
19 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20 #
21 #       Version 0.1: Initial prototype
22 #
23
24 use warnings;
25 use strict;
26
27 $| = 1;
28
29 #my $basedir = `systool -m`;
30 #chomp $basedir;
31 my $basedir = '/sys';
32
33 sub dump_dir($$)
34 {
35         my $level = shift;
36         my $dir = shift;
37
38         opendir(DIR, $dir) || die "can't opendir $dir: $!";
39         my @entries = grep { !/^\.\.?/ } readdir(DIR);
40         closedir(DIR);
41
42         #print " "x$level;
43         print $dir, ":\n";
44
45         foreach my $entry (sort @entries)
46         {
47                 dump_entry($level + 1, "$dir/$entry");
48         }
49 }
50
51 sub dump_link($$)
52 {
53         my $level = shift;
54         my $link = shift;
55
56         #print " "x$level;
57         print $link, " -> ", readlink($link), "\n";
58 }
59
60 sub dump_value($$)
61 {
62         my $level = shift;
63         my $file = shift;
64
65         open (FILE, "<$file") || print "can't open $file: $!";
66
67         my $value;
68         {       local $/;
69                 $value = <FILE>;
70                 $value = defined($value)?$value:"undef";
71         }
72         chomp $value;
73         close FILE;
74
75         #print " "x$level;
76         print $file, " = '", $value, "'\n";
77 }
78
79 sub dump_entry($$)
80 {
81         my $level = shift;
82         my $file = shift;
83
84         return dump_link($level, $file) if -l $file;
85         return dump_dir($level, $file) if -d $file;
86         return dump_value($level, $file) if -r $file;
87 }
88
89 dump_dir(0, $basedir);
90