| .. | |||||
| module-setup.sh | |||||
| mount-virtiofs.sh | |||||
| parse-virtiofs.sh |
#!/usr/bin/sh
# Accepted formats:
# rootfstype=virtiofs root=<tag>
# root=virtiofs:<tag>
if [ "${fstype}" = "virtiofs" -o "${root%%:*}" = "virtiofs" ]; then
# shellcheck disable=SC2034
rootok=1
fi
| .. | |||||
| module-setup.sh | |||||
| mount-virtiofs.sh | |||||
| parse-virtiofs.sh |