File: reportbug.script

package info (click to toggle)
udev 0.105-4etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 672 kB
  • ctags: 54
  • sloc: sh: 1,636; makefile: 273
file content (23 lines) | stat: -rw-r--r-- 475 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

exec >&3

echo "-- /etc/udev/rules.d/:"
ls --format=long --almost-all --recursive /etc/udev/rules.d/
echo

echo "-- /sys/:"
find /sys -name dev | grep -vE '/sys/class/(tty|vc|mem)/' | sort
echo

#echo "-- /dev/:"
#ls --format=long --almost-all --recursive --ignore=.udev /dev/
#echo

echo "-- Kernel configuration:"
for symbol in init_tmpfs isapnp_init; do
  grep -E -q "^[^[:space:]]+ t ${symbol}$" /proc/kallsyms \
    || echo " $symbol not present."
done
echo