aboutsummaryrefslogtreecommitdiff
path: root/board/pulseaudio.sh
blob: 4737a6a38e3a62a78408df8527a9f246ae6f3519 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
##############################
#                            #
#  Pulseaudio configuration  #
#                            #
##############################

# Create the directory where pulseaudio store its files and put it in tempfs
add_tmpfs "/var/lib/pulse"

if ! grep -qE '^load-module module-native-protocol-tcp' "${TARGET_DIR}/etc/pulse/system.pa"; then
    cat << __EOF__ >> "${TARGET_DIR}/etc/pulse/system.pa"
load-module module-bluetooth-policy
load-module module-bluetooth-discover
load-module module-native-protocol-tcp listen=0.0.0.0 auth-anonymous=1
__EOF__
fi

if ! grep -qE 'avoid-resampling = true' "${TARGET_DIR}/etc/pulse/daemon.conf"; then
    cat << __EOF__ >> "${TARGET_DIR}/etc/pulse/daemon.conf"
avoid-resampling = true
__EOF__
fi