From bd2e7c531910130cd40c9b534ed0459c33c9897f Mon Sep 17 00:00:00 2001 From: Lars Niesen Date: Sat, 23 Sep 2023 17:40:08 +0200 Subject: [PATCH] !26 Add upstream changes to UID and GID The container upstream changed the internal UID and GID which causes the boostrap script to create wrong mappings --- dev/bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/bootstrap.sh b/dev/bootstrap.sh index d061ff0..eeccce1 100755 --- a/dev/bootstrap.sh +++ b/dev/bootstrap.sh @@ -5,8 +5,8 @@ set -o pipefail MANIFEST_BRANCH="${1:-main}" -YOCTO_GID="4040" -YOCTO_UID="2000" +YOCTO_GID="1000" +YOCTO_UID="1000" YOCTO_USER="yocto" YOCTO_WORKDIR="/opt/${YOCTO_USER}"