mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2025-01-27 17:09:29 +01:00
ceecabfe3c
- Only mount things if seeed-voicecard is ran - We can only start things so no need for start-stop-restart init
12 lines
231 B
Bash
Executable File
12 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Configure seeed-voicecard....
|
|
#
|
|
|
|
echo "Starting seeed-voicecard..."
|
|
mount -t configfs none /sys/kernel/config
|
|
mkdir -p /boot
|
|
mount -t vfat /dev/mmcblk0p1 /boot
|
|
/usr/bin/seeed-voicecard
|
|
touch /var/lock/seeed-voicecard
|