mirror of https://github.com/ventoy/Ventoy.git
Fixe the issue when booting PrimeOS 2.0.1
This commit is contained in:
parent
ff14c07c4e
commit
ab0f25d097
|
@ -52,8 +52,12 @@ ventoy_get_os_type() {
|
|||
fi
|
||||
fi
|
||||
|
||||
# PrimeOS :
|
||||
if $GREP -q 'PrimeOS' /proc/version; then
|
||||
echo 'primeos'; return
|
||||
|
||||
# Debian :
|
||||
if $GREP -q '[Dd]ebian' /proc/version; then
|
||||
elif $GREP -q '[Dd]ebian' /proc/version; then
|
||||
echo 'debian'; return
|
||||
|
||||
# Ubuntu : do the same process with debian
|
||||
|
|
Loading…
Reference in New Issue