This commit is contained in:
Maciej Żok 2026-02-20 22:52:22 -08:00 committed by GitHub
commit 5d4333b346
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 17 additions and 0 deletions

View file

@ -297,6 +297,17 @@ os:OpenBSD 7.4:2024-10-08:1728338400:
os:OpenBSD 7.5:2025-05-31:1748642400:
os:OpenBSD 7.6:2025-10-31:1761865200:
#
# OpenWrt - https://openwrt.org/docs/guide-developer/security#support_status
#
os:OpenWrt 15.05:2016-03-31:1459375200:
os:OpenWrt 17.01:2018-09-30:1538258400:
os:OpenWrt 18.06:2020-12-31:1609369200:
os:OpenWrt 19.07:2022-04-30:1651269600:
os:OpenWrt 21.02:2023-05-31:1685484000:
os:OpenWrt 22.03:2024-07-31:1722376800:
os:OpenWrt 23.05:2025-07-31:1753912800:
os:OpenWrt 24.10:2026-02-28:1772233200:
#
# Red Hat Enterprise Linux - https://access.redhat.com/labs/plcc/
#
os:Red Hat Enterprise Linux Server release 6:2020-11-30:1606690800:

View file

@ -434,6 +434,12 @@
OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"')
OS_NAME="openSUSE"
;;
"openwrt")
LINUX_VERSION='OpenWrt'
HARDWARE=$(grep '^OPENWRT_BOARD=' /etc/os-release | awk -F= '{print $2}' | tr -d '"')
OS_NAME=$(grep '^NAME=' /etc/os-release | awk -F= '{print $2}' | tr -d '"')
OS_VERSION=$(grep '^VERSION=' /etc/os-release | awk -F= '{print $2}' | tr -d '"')
;;
"osmc")
LINUX_VERSION="OSMC"
LINUX_VERSION_LIKE="Debian"