From af34df278f7db24550507708d2b0601e49220cd8 Mon Sep 17 00:00:00 2001 From: longpanda Date: Fri, 12 Dec 2025 23:19:34 +0800 Subject: [PATCH] Fix the boot issue with Kylin Server V11. (#3369) --- IMG/cpio/ventoy/ventoy_chain.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/IMG/cpio/ventoy/ventoy_chain.sh b/IMG/cpio/ventoy/ventoy_chain.sh index d63a1322..cecdd0ae 100644 --- a/IMG/cpio/ventoy/ventoy_chain.sh +++ b/IMG/cpio/ventoy/ventoy_chain.sh @@ -373,6 +373,13 @@ ventoy_get_os_type() { echo 'openEuler'; return fi fi + if [ -f /etc/kylin-release ]; then + if $GREP -i -q -m1 'Kylin.*Server.* V11 ' /etc/kylin-release; then + echo 'openEuler'; return + fi + fi + + if $GREP -q 'chimera' /proc/version; then echo 'chimera'; return