Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions db/software-eol.db
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,17 @@ os:OpenBSD 7.0:2022-10-20:1666216800:
os:OpenBSD 7.1:2023-05-01:1682892000:
os:OpenBSD 7.2::-1
#
# 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:
Expand Down
6 changes: 6 additions & 0 deletions include/osdetection
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,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"
Expand Down