From 109fa41b2321506280397e03757976c468832668 Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Fri, 25 Oct 2024 11:04:10 +0200 Subject: [PATCH] system: fix description value from os-release MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit When changing the read file from '/etc/openwrt_release' to '/usr/lib/os-release', the correct variable for reading the description was not selected. The correct variable from the file ‘/usr/lib/os-release’ is 'OPENWRT_RELEASE'. Fixes: 0f88a52dc8a5 ("system: replace openwrt_release with os-release") Signed-off-by: Florian Eckert [ add fixes tag ] Signed-off-by: Christian Marangi --- system.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system.c b/system.c index 680ead9..9c8d3dc 100644 --- a/system.c +++ b/system.c @@ -277,7 +277,7 @@ static int system_board(struct ubus_context *ctx, struct ubus_object *obj, key = "codename"; else if (!strcasecmp(key, "OPENWRT_BOARD")) key = "target"; - else if (!strcasecmp(key, "PRETTY_NAME")) + else if (!strcasecmp(key, "OPENWRT_RELEASE")) key = "description"; else if (!strcasecmp(key, "OPENWRT_BUILD_DATE")) key = "builddate"; -- 2.30.2