Merge pull request #1547 from allmazz/add-asahi

add Fedora Linux Asahi Remix
This commit is contained in:
Michael Boelen 2024-09-30 19:13:58 +02:00 committed by GitHub
commit fa7851e513
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 0 deletions

View File

@ -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
---------------------------------------------------------------------------------

View File

@ -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"