]> git.alsa-project.org Git - alsa-utils.git/commitdiff
alsa-info.sh: add card number to the ALSA module list section
authorJaroslav Kysela <perex@perex.cz>
Mon, 22 Feb 2021 09:53:12 +0000 (10:53 +0100)
committerJaroslav Kysela <perex@perex.cz>
Mon, 22 Feb 2021 09:55:14 +0000 (10:55 +0100)
Previous output:

  !!Loaded ALSA modules
  !!-------------------

  snd_hda_intel
  snd_usb_audio

New output:

  !!Loaded ALSA modules
  !!-------------------

  snd_hda_intel (card 0)
  snd_usb_audio (card 1)

Signed-off-by: Jaroslav Kysela <perex@perex.cz>
alsa-info/alsa-info.sh

index 2e5b9016cee8a0a6eddb967588a2b6e51ee14cad..252a607ec021835d17d0182387d7eaa6d0e22697 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-SCRIPT_VERSION=0.4.65
+SCRIPT_VERSION=0.4.66
 CHANGELOG="http://www.alsa-project.org/alsa-info.sh.changelog"
 
 #################################################################################
@@ -461,7 +461,7 @@ if [ -d /sys/bus/acpi/devices ]; then
     done
 fi
 
-cat /proc/asound/modules 2>/dev/null | awk '{ print $2 }' > $TEMPDIR/alsamodules.tmp
+awk '{ print $2 " (card " $1 ")" }' < /proc/asound/modules > $TEMPDIR/alsamodules.tmp 2> /dev/null
 cat /proc/asound/cards > $TEMPDIR/alsacards.tmp
 if [[ ! -z "$LSPCI" ]]; then
        for class in 0401 0402 0403; do