add support for Bliss-OS

This commit is contained in:
longpanda
2021-01-29 09:46:15 +08:00
parent 183175cad2
commit 80a088babb
3 changed files with 74 additions and 0 deletions

View File

@@ -74,6 +74,14 @@ ventoy_get_debian_distro() {
echo 'kylin'; return
fi
if [ -f /scripts/00-ver ]; then
if $GREP -q 'Bliss-OS' /scripts/00-ver; then
echo 'bliss'; return
fi
fi
echo 'default'
}