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"