Skip to content

Commit 9413336

Browse files
authored
Merge pull request #389 from open-edge-platform/update-branch
better handling if it is PTL and already 6.17 (#935)
2 parents f67304f + d23535e commit 9413336

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

main_installer.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,9 @@ main() {
642642
if [ "${PTL_PLATFORM}" = true ] && ! uname -r | grep -q '^6\.17'; then
643643
echo "# PTL platform prerequisites detected (kernel upgrade path) ..."
644644
apply_ptl_platform_prereqs
645-
# Function may exit early; if it doesn't, continue with flow
645+
# Function may exit early; if it doesn't, continue with flow
646+
elif [ "${PTL_PLATFORM}" = true ] && uname -r | grep -q '^6\.17'; then
647+
# If it is PTL and already 6.17
646648
echo "# Platform Installation Flow..."
647649
echo "$S_VALID Platform detected: $CPU_MODEL"
648650

@@ -667,6 +669,7 @@ main() {
667669
echo "You may retry OpenVINO installation manually: bash $SCRIPT_DIR/openvino_installer.sh"
668670
fi
669671
else
672+
# Any platform that is not PTL
670673
echo ""
671674
echo "========================================================================"
672675
echo "# STANDARD INTEL PLATFORM INSTALLATION"

0 commit comments

Comments
 (0)