blob: c6c4ce7b51acc5deff54c275f2ae1038b96d6740 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
#! /bin/sh
# Copyright (C) 2006-2007 Richard Hughes <richard@hughsie.com>
#
# Licensed under the GNU General Public License Version 2
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#$1 = keyname
print_hal_key ()
{
udi="/org/freedesktop/Hal/devices/computer"
ret=`hal-get-property --udi $udi --key $1 2> /dev/null`
if [ $? -eq 0 ]; then
echo $ret
else
echo "missing"
fi
}
#$1 = capability
print_hal_capability ()
{
ret=`hal-find-by-capability --capability $1`
if [ -n "$ret" ]; then
echo "yes"
else
echo "no"
fi
}
echo -n "Distro version: "
cat /etc/*release | uniq
echo -n "Kernel version: "
uname -r
echo -n "g-p-m version: "
mate-power-manager --version | cut -f2 -d" "
echo -n "HAL version: "
lshal -V | cut -f3 -d" "
echo -n "System manufacturer: "
print_hal_key "smbios.system.manufacturer"
echo -n "System version: "
print_hal_key "smbios.system.version"
echo -n "System product: "
print_hal_key "smbios.system.product"
echo -n "AC adapter present: "
print_hal_capability "ac_adapter"
echo -n "Battery present: "
print_hal_capability "battery"
echo -n "Laptop panel present: "
print_hal_capability "laptop_panel"
echo -n "CPU scaling present: "
print_hal_capability "cpufreq_control"
echo "Battery Information:"
lshal | grep "battery\."
OS=`uname -s`
echo "UPower data:"
upower --dump
echo "MATE Power Manager Process Information:"
if [ "$OS" = "SunOS" ]; then
ptree -a `pgrep power`
else
ps aux --forest | grep mate-power | grep -v grep
fi
echo "HAL Process Information:"
if [ "$OS" = "SunOS" ]; then
ptree -a `pgrep hald`
else
ps aux --forest | grep hald | grep -v grep
fi
|