blob: a789bc924ecadee9c129c4315bc5079400c126fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
##############################
# #
# Pulseaudio configuration #
# #
##############################
# Create the directory where pulseaudio store its files and put it in tempfs
create_missing_dir "/var/lib/pulse"
if ! grep -qE '/var/lib/pulse' "${TARGET_DIR}/etc/fstab"; then
cat << __EOF__ >> "${TARGET_DIR}/etc/fstab"
tmpfs /var/lib/pulse tmpfs rw 0 0
__EOF__
fi
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
|