From 4b2fbe4c645a39bd015f90a0dc98e852c96201d9 Mon Sep 17 00:00:00 2001 From: Takuya Sasaki Date: Wed, 20 Nov 2024 18:21:52 +0900 Subject: [PATCH] zero: meta-csp: Add glibc-utils for install getent When executing `mcumgr` using shell commands, the following error occurs. Error: exec: "getent": executable file not found in $PATH However, this error does not appear when logging directly into Zero via SSH. The reason for this behavior is not yet understood, but to expedite testing, we will add the `glibc-utils` package to install `getent`. Signed-off-by: Takuya Sasaki --- zero/meta-csp/conf/layer.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zero/meta-csp/conf/layer.conf b/zero/meta-csp/conf/layer.conf index cd86548..794c0ce 100644 --- a/zero/meta-csp/conf/layer.conf +++ b/zero/meta-csp/conf/layer.conf @@ -14,7 +14,7 @@ BBFILE_PRIORITY_csp = "6" LAYERDEPENDS_csp = "libcsp" LAYERSERIES_COMPAT_csp = "kirkstone" -IMAGE_INSTALL:append = " csp-handler cspd csp-server-client" +IMAGE_INSTALL:append = " csp-handler cspd csp-server-client glibc-utils" ENABLE_UART = "1" ENABLE_I2C = "1"