File tree 4 files changed +9
-4
lines changed
4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ MOD_LIVE_DIR=${CHROOT_DIR}/root/.mod-live
17
17
mkdir -p cache output workdir
18
18
mkdir -p ${CHROOT_DIR} /mnt/pedalboards
19
19
mkdir -p ${CHROOT_DIR} /mnt/plugins
20
- mkdir -p ${CHROOT_DIR} /root/rwdata/data
20
+ mkdir -p ${CHROOT_DIR} /root/rwdata/root
21
21
mkdir -p ${CHROOT_DIR} /root/rwdata/user-files
22
22
mkdir -p ${MOD_LIVE_DIR}
23
23
Original file line number Diff line number Diff line change @@ -6,9 +6,10 @@ cd $(dirname ${0})
6
6
7
7
# verify soundcard is valid
8
8
if [ ! -e /proc/asound/Dummy ]; then
9
- echo " error: can't find Loopback soundcard"
9
+ echo " error: can't find Dummy soundcard"
10
10
exit 1
11
11
fi
12
+ # sudo modprobe snd-dummy hrtimer=1 pcm_devs=1 pcm_substreams=8
12
13
13
14
# get soundcard index
14
15
SOUNDCARD=$( readlink /proc/asound/Dummy | awk ' sub("card","")' )
@@ -40,6 +41,8 @@ NSPAWN_OPTS+=" --bind-ro=/mnt/pedalboards"
40
41
fi
41
42
if [ -e /mnt/plugins ]; then
42
43
NSPAWN_OPTS+=" --bind-ro=/mnt/plugins"
44
+ elif [ -e ../plugins/bundles/abGate.lv2 ]; then
45
+ NSPAWN_OPTS+=" --bind-ro=$( pwd) /../plugins/bundles:/mnt/plugins"
43
46
fi
44
47
45
48
# ready!
@@ -54,7 +57,7 @@ sudo systemd-nspawn \
54
57
--bind=/dev/snd/controlC${SOUNDCARD} \
55
58
--bind=/dev/snd/seq \
56
59
--bind=/dev/snd/timer \
57
- --bind=$( pwd) /../rwdata/data :/root/data \
60
+ --bind=$( pwd) /../rwdata/root :/root \
58
61
--bind=$( pwd) /../rwdata/user-files:/data/user-files \
59
62
--bind-ro=/etc/hostname \
60
63
--bind-ro=/etc/hosts \
Original file line number Diff line number Diff line change @@ -66,6 +66,8 @@ NSPAWN_OPTS+=" --bind-ro=/mnt/pedalboards"
66
66
fi
67
67
if [ -e /mnt/plugins ]; then
68
68
NSPAWN_OPTS+=" --bind-ro=/mnt/plugins"
69
+ elif [ -e ../plugins/bundles/abGate.lv2 ]; then
70
+ NSPAWN_OPTS+=" --bind-ro=$( pwd) /../plugins/bundles:/mnt/plugins"
69
71
fi
70
72
71
73
# ready!
@@ -80,7 +82,7 @@ sudo systemd-nspawn \
80
82
--bind=/dev/snd/controlC${SOUNDCARD} \
81
83
--bind=/dev/snd/seq \
82
84
--bind=/dev/snd/timer \
83
- --bind=$( pwd) /../rwdata/data :/root/data \
85
+ --bind=$( pwd) /../rwdata/root :/root \
84
86
--bind=$( pwd) /../rwdata/user-files:/data/user-files \
85
87
--bind-ro=/etc/hostname \
86
88
--bind-ro=/etc/hosts \
You can’t perform that action at this time.
0 commit comments