Skip to content

Commit 944ea53

Browse files
committed
bind whole root dir; use local plugins in testing
Signed-off-by: falkTX <[email protected]>
1 parent 999f53d commit 944ea53

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

archiso/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ MOD_LIVE_DIR=${CHROOT_DIR}/root/.mod-live
1717
mkdir -p cache output workdir
1818
mkdir -p ${CHROOT_DIR}/mnt/pedalboards
1919
mkdir -p ${CHROOT_DIR}/mnt/plugins
20-
mkdir -p ${CHROOT_DIR}/root/rwdata/data
20+
mkdir -p ${CHROOT_DIR}/root/rwdata/root
2121
mkdir -p ${CHROOT_DIR}/root/rwdata/user-files
2222
mkdir -p ${MOD_LIVE_DIR}
2323

mod-os/start-dummy.sh

+5-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ cd $(dirname ${0})
66

77
# verify soundcard is valid
88
if [ ! -e /proc/asound/Dummy ]; then
9-
echo "error: can't find Loopback soundcard"
9+
echo "error: can't find Dummy soundcard"
1010
exit 1
1111
fi
12+
# sudo modprobe snd-dummy hrtimer=1 pcm_devs=1 pcm_substreams=8
1213

1314
# get soundcard index
1415
SOUNDCARD=$(readlink /proc/asound/Dummy | awk 'sub("card","")')
@@ -40,6 +41,8 @@ NSPAWN_OPTS+=" --bind-ro=/mnt/pedalboards"
4041
fi
4142
if [ -e /mnt/plugins ]; then
4243
NSPAWN_OPTS+=" --bind-ro=/mnt/plugins"
44+
elif [ -e ../plugins/bundles/abGate.lv2 ]; then
45+
NSPAWN_OPTS+=" --bind-ro=$(pwd)/../plugins/bundles:/mnt/plugins"
4346
fi
4447

4548
# ready!
@@ -54,7 +57,7 @@ sudo systemd-nspawn \
5457
--bind=/dev/snd/controlC${SOUNDCARD} \
5558
--bind=/dev/snd/seq \
5659
--bind=/dev/snd/timer \
57-
--bind=$(pwd)/../rwdata/data:/root/data \
60+
--bind=$(pwd)/../rwdata/root:/root \
5861
--bind=$(pwd)/../rwdata/user-files:/data/user-files \
5962
--bind-ro=/etc/hostname \
6063
--bind-ro=/etc/hosts \

mod-os/start.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ NSPAWN_OPTS+=" --bind-ro=/mnt/pedalboards"
6666
fi
6767
if [ -e /mnt/plugins ]; then
6868
NSPAWN_OPTS+=" --bind-ro=/mnt/plugins"
69+
elif [ -e ../plugins/bundles/abGate.lv2 ]; then
70+
NSPAWN_OPTS+=" --bind-ro=$(pwd)/../plugins/bundles:/mnt/plugins"
6971
fi
7072

7173
# ready!
@@ -80,7 +82,7 @@ sudo systemd-nspawn \
8082
--bind=/dev/snd/controlC${SOUNDCARD} \
8183
--bind=/dev/snd/seq \
8284
--bind=/dev/snd/timer \
83-
--bind=$(pwd)/../rwdata/data:/root/data \
85+
--bind=$(pwd)/../rwdata/root:/root \
8486
--bind=$(pwd)/../rwdata/user-files:/data/user-files \
8587
--bind-ro=/etc/hostname \
8688
--bind-ro=/etc/hosts \

rwdata/data/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)