summaryrefslogtreecommitdiff
path: root/alsaconf
diff options
context:
space:
mode:
authorJaroslav Kysela <perex@perex.cz>2005-08-13 13:09:21 +0000
committerJaroslav Kysela <perex@perex.cz>2005-08-13 13:09:21 +0000
commitd112b21c86f3df21647e5d1a57d86ed02e42a848 (patch)
treed44eb2b07e4e906fa89fc7739b16bad617491932 /alsaconf
parent18a09d56cd8f74603669b51253f624e896879c86 (diff)
downloadalsa-utils-d112b21c86f3df21647e5d1a57d86ed02e42a848.tar.gz
alsaconf - add support for PnP BIOS devices
This patch adds the support for PnP BIOS devices.
Diffstat (limited to 'alsaconf')
-rw-r--r--alsaconf/alsaconf.in17
1 files changed, 16 insertions, 1 deletions
diff --git a/alsaconf/alsaconf.in b/alsaconf/alsaconf.in
index fa356aa..9a55c1c 100644
--- a/alsaconf/alsaconf.in
+++ b/alsaconf/alsaconf.in
@@ -602,10 +602,11 @@ probe_cards () {
if [ -r $PROCFS/isapnp ]; then
cat $PROCFS/isapnp >"$DUMP"
found="1"
- elif [ -r $SYSFS/bus/pnp/devices/0[0123]:01.00 ]; then
+ elif [ -d $SYSFS/bus/pnp/devices ]; then
# use 2.6 kernel's sysfs output
# fake the isapnp dump
index=0
+ bindex=0
for d1 in $SYSFS/devices/pnp* ; do
for d2 in $d1/*:* ; do
if [ -r $d2/card_id ]; then
@@ -614,6 +615,13 @@ probe_cards () {
echo "Card $index '$id:$name' " >> "$DUMP"
index=$[$index+1]
found="1"
+ else if [ -r $d2/id ]; then
+ # FIXME: multiple id might be present (separated with new-line)
+ id=`head -n 1 $d2/id`
+ echo "BIOS $bindex '$id' " >> "$DUMP"
+ bindex=$[$bindex+1]
+ found="1"
+ fi
fi
done
done
@@ -658,14 +666,21 @@ BEGIN {
gsub(/0x/, "");
gsub(/=/, ":");
x = sprintf ("'$lspci' -n 2>/dev/null| grep '"' 040.: '"' | grep %s", $2);
+ print x
if (system (x) == 0)
printf "%s %s\n", $2, driver >>"'"$FOUND"'"
}
/^[<literal space><literal tab>]*ISAPNP: /{
+ id2 = substr($0, index($0, "=")+1);
gsub(/=.*/, "");
x = sprintf ("grep '\''^Card [0-9] .%s:'\'' '"$DUMP"'", $2);
if (system (x) == 0)
printf "%s %s\n", $2, driver >>"'"$FOUND"'"
+ else if (index($2, "ffff") > 0) {
+ x = sprintf ("grep '\''^BIOS [0-9]* .%s.'\'' '"$DUMP"'", id2);
+ if (system (x) == 0)
+ printf "%s %s\n", id2, driver >>"'"$FOUND"'"
+ }
}' < $CARDID_DB |\
$DIALOG --gauge "$msg" 6 40 0