Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
8572c0c
alsaloop: Fix the silence generation in xrun_sync
Sep 24, 2020
bc7a944
aplay: pcm_readv(): return read samples instead of requested upon abort
mrajwa Aug 7, 2020
5e87e2e
aplay: pcm_read(): return read samples instead of requested upon abort
mrajwa Aug 7, 2020
9b02b42
aplay: capture: write only the amount of read frames
mrajwa Aug 7, 2020
dea85a3
alsabat: fix typo
nckx Sep 1, 2020
20f87c1
alsa-info: provide DMI system sku
plbossart Sep 30, 2020
d7bf45e
alsactl: init - add -U option to disable UCM based init
ahlinc Oct 2, 2020
b348abc
alsactl: add new -U argument text to man page
perexg Oct 6, 2020
825d1d6
treewide: fix typos in manual pages
ferivoz Oct 3, 2020
789a307
aplay: Fix typo in error message
trebmuh Jul 8, 2020
ae9d8cc
minor aplay man page correction
YetAnotherNerd Feb 11, 2020
860b851
alsactl: 00main - fix typo in goto label
perexg Oct 13, 2020
246e132
aplay: fix the wrong count in compute_max_peak() for 16bit+ sample wi…
perexg Oct 15, 2020
b2ae0b0
Release v1.2.4
perexg Oct 15, 2020
0c5948e
aplay: try to use 16-bit format to increase capture quality
jason77-wang Oct 23, 2020
737b64e
alsamixer: Fix the mixer views description in man page
jidanni Oct 18, 2020
c8c536f
Add Slovak translation
jose1711 Oct 18, 2020
fb2b947
Add Basque translation
Porrumentzio Jul 10, 2020
2a49bdc
Update French translation
trebmuh Jul 8, 2020
986a1bd
aplay: cosmetic code fix in xrun()
perexg Oct 23, 2020
c1b92db
aplay: fix the CPU busy loop in the pause handler
perexg Nov 8, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions alsa-info/alsa-info.sh
Original file line number Diff line number Diff line change
Expand Up @@ -438,13 +438,15 @@ if [ -d /sys/class/dmi/id ]; then
DMI_SYSTEM_PRODUCT_NAME=$(cat /sys/class/dmi/id/product_name 2>/dev/null)
DMI_SYSTEM_PRODUCT_VERSION=$(cat /sys/class/dmi/id/product_version 2>/dev/null)
DMI_SYSTEM_FIRMWARE_VERSION=$(cat /sys/class/dmi/id/bios_version 2>/dev/null)
DMI_SYSTEM_SKU=$(cat /sys/class/dmi/id/product_sku 2>/dev/null)
DMI_BOARD_VENDOR=$(cat /sys/class/dmi/id/board_vendor 2>/dev/null)
DMI_BOARD_NAME=$(cat /sys/class/dmi/id/board_name 2>/dev/null)
elif [ -x $DMIDECODE ]; then
DMI_SYSTEM_MANUFACTURER=$($DMIDECODE -s system-manufacturer 2>/dev/null)
DMI_SYSTEM_PRODUCT_NAME=$($DMIDECODE -s system-product-name 2>/dev/null)
DMI_SYSTEM_PRODUCT_VERSION=$($DMIDECODE -s system-version 2>/dev/null)
DMI_SYSTEM_FIRMWARE_VERSION=$($DMIDECODE -s bios-version 2>/dev/null)
DMI_SYSTEM_SKU=$($DMIDECODE -s system-sku-number 2>/dev/null)
DMI_BOARD_VENDOR=$($DMIDECODE -s baseboard-manufacturer 2>/dev/null)
DMI_BOARD_NAME=$($DMIDECODE -s baseboard-product-name 2>/dev/null)
fi
Expand Down Expand Up @@ -503,6 +505,7 @@ echo "Manufacturer: $DMI_SYSTEM_MANUFACTURER" >> $FILE
echo "Product Name: $DMI_SYSTEM_PRODUCT_NAME" >> $FILE
echo "Product Version: $DMI_SYSTEM_PRODUCT_VERSION" >> $FILE
echo "Firmware Version: $DMI_SYSTEM_FIRMWARE_VERSION" >> $FILE
echo "System SKU: $DMI_SYSTEM_SKU" >> $FILE
echo "Board Vendor: $DMI_BOARD_VENDOR" >> $FILE
echo "Board Name: $DMI_BOARD_NAME" >> $FILE
echo "" >> $FILE
Expand Down
Loading