This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/op25-dev@lists.osmocom.org/.
gnorbury@bondcar.com [op25-dev] op25-dev at yahoogroups.comMy streaming machines all have Pulse Audio disabled since it is an unnecessary extra layer of complication.
I presume the reboot issues you are having relate to increasing the size of the kernel asound prealloc buffer?
If so, I solved that problem by having a small script executed at startup as follows:
#!/bin/sh
PCM_ID="/proc/asound/card0/pcm0p/sub0/prealloc"
LOGFILE="/home/username/prealloc.status"
BUFSIZE="1024"
if [ -f $LOGFILE ]; then
rm $LOGFILE
fi
# Adjust playback buffer
if [ -f $PCM_ID ]; then
echo "Success: $PCM_ID ($BUFSIZE)" > $LOGFILE
echo $BUFSIZE > $PCM_ID
else
echo "Failure: $PCM_ID ($BUFSIZE)" > $LOGFILE
fi
Obviously you are going to need to edit the LOGFILE destination, but I find it works pretty well when called from /etc/rc.local
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/op25-dev/attachments/20171008/d6e8e18f/attachment.htm>