aboutsummaryrefslogtreecommitdiff
path: root/board/mpd.sh
blob: b5c41bd59d627438a4b187ef21e5b535c9ede00d (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
create_missing_dir "/var/lib/mpd/"
if ! grep -qE '/var/lib/mpd' "${TARGET_DIR}/etc/fstab"; then
    cat << __EOF__ >> "${TARGET_DIR}/etc/fstab"
tmpfs /var/lib/mpd tmpfs rw 0 0
__EOF__
fi

add_tmpfs "/home/playlists"

cat << __EOF__ > "${TARGET_DIR}/etc/mpd.conf"
# Use a proxy to another instance
music_directory "nfs://192.168.0.4/home/mpd/music"
database {
       plugin "proxy"
       host "192.168.0.4"
       port "6600"
}


# Directory where user-made playlists are stored (RW)
playlist_directory "/home/playlists"

# Log file (RW)
# disable the logs
log_file		"/dev/null"

# Process ID file (RW)
pid_file		"/var/run/mpd.pid"

# State file (RW)
state_file		"/var/lib/mpd/state"

# User id to run the daemon as
#user			"nobody"

# TCP socket binding
bind_to_address		"any"
#bind_to_address	"localhost"

# Unix socket to listen on
bind_to_address		"/var/lib/mpd/socket"

audio_output {
       type            "pulse"
       name            "Pulseaudio"
       server          "127.0.0.1"
}
__EOF__

find "$BR2_EXTERNAL_PIAUDIO_PATH/local/playlists" -name '*.m3u' -type f -print0 | xargs -0 -I '{}' cp {} "${TARGET_DIR}/home/"

cat << __EOF__ > "${TARGET_DIR}/etc/systemd/system/playlists.service"
[Unit]
Description=Playlists
Before=mpd.target

[Service]
Type=unit
ExecStart=find /home/ -name '*.m3u' -exec cp {} /home/playlists \;

[Install]
WantedBy=multi-user.target
__EOF__

# Create the link to the system configuration
ln -sf /etc/systemd/system/playlists.service "${TARGET_DIR}/usr/lib/systemd/system/multi-user.target.wants/playlists.service"