From: Florian Eckert Date: Fri, 25 Oct 2024 09:04:10 +0000 (+0200) Subject: system: fix description value from os-release X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=109fa41b2321506280397e03757976c468832668;p=project%2Fprocd.git system: fix description value from os-release 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 --- 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";