From 5214132e97313bc0660317605e816d2b72296617 Mon Sep 17 00:00:00 2001 From: Jay Keller <70912302+digitalcheetah@users.noreply.github.com> Date: Sat, 10 Jun 2023 11:20:10 +0000 Subject: [PATCH] Update osdetection with LSDK This should close issue #1393. --- include/osdetection | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/osdetection b/include/osdetection index 989b1b38..fe92c500 100644 --- a/include/osdetection +++ b/include/osdetection @@ -278,6 +278,11 @@ OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') OS_VERSION_FULL=$(grep "^VERSION=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') ;; + "lsdk") + LINUX_VERSION="NXP LSDK" + OS_NAME="NXP LSDK" + OS_VERSION_FULL=$(grep "^VERSION=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') + ;; "mageia") LINUX_VERSION="Mageia" OS_NAME="Mageia"