From 214471d8b7a08707bef5644ea83d9f12355a563a Mon Sep 17 00:00:00 2001 From: Kirill Nikiforov Date: Mon, 30 Sep 2024 20:50:21 +0400 Subject: [PATCH] add Fedora Linux Asahi Remix --- CHANGELOG.md | 1 + include/osdetection | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a9e5ca0..35ce224d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### Changed - FILE-6398 - Only perform test if we know if Linux kernel is monolithic/modular - KRNL-5622 - Test if systemctl binary is set +- OS detection for Fedora Linux Asahi Remix --------------------------------------------------------------------------------- diff --git a/include/osdetection b/include/osdetection index 8c85fbf9..9d579ccb 100644 --- a/include/osdetection +++ b/include/osdetection @@ -266,6 +266,12 @@ OS_REDHAT_OR_CLONE=1 OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') ;; + "fedora-asahi-remix") + LINUX_VERSION="Fedora" + OS_NAME="Fedora Linux Asahi Remix" + OS_REDHAT_OR_CLONE=1 + OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') + ;; "flatcar") LINUX_VERSION="Flatcar" LINUX_VERSION_LIKE="CoreOS"