From e6b2ef0fbfc1ca129dd48e388dfb104866bd06aa Mon Sep 17 00:00:00 2001 From: Arturo Buzarra Date: Tue, 29 Apr 2025 16:53:10 +0200 Subject: [PATCH] connectcore-demo-example: fix build info filename from "build" to "buildinfo" Commit 99f1425340 ("image-buildinfo: Improve and extend to SDK coverage too") in the Poky layer changes the name of the default build information file from "build" to "buildinfo", so this commit reflects this change by adapting the path to obtain the build information. Signed-off-by: Arturo Buzarra --- connectcore-demo-example/demoserver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connectcore-demo-example/demoserver.py b/connectcore-demo-example/demoserver.py index caf2b3e..0beca5e 100755 --- a/connectcore-demo-example/demoserver.py +++ b/connectcore-demo-example/demoserver.py @@ -1304,7 +1304,7 @@ def get_dey_version(): Returns: String: DEY version, "N/A" if it fails. """ - build_info = read_file("/etc/build") + build_info = read_file("/etc/buildinfo") if build_info == NOT_AVAILABLE: return NOT_AVAILABLE for line in build_info.splitlines():