On Mon Jul 13, 2026 at 5:29 PM CEST, chalianis1 via lists.openembedded.org wrote: > From: Anis Chali <[email protected]> > > Add the missing command separator to prevent the command from being > concatenated with subsequent ROOTFS_POSTPROCESS_COMMAND entries. > > Signed-off-by: Anis Chali <[email protected]> > --- > meta/classes/extrausers.bbclass | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meta/classes/extrausers.bbclass b/meta/classes/extrausers.bbclass > index c825c06df9..94576b8872 100644 > --- a/meta/classes/extrausers.bbclass > +++ b/meta/classes/extrausers.bbclass > @@ -23,7 +23,7 @@ inherit useradd_base > PACKAGE_INSTALL:append = " ${@['', 'base-passwd > shadow'][bool(d.getVar('EXTRA_USERS_PARAMS'))]}" > > # Image level user / group settings > -ROOTFS_POSTPROCESS_COMMAND:append = " set_user_group" > +ROOTFS_POSTPROCESS_COMMAND:append = " set_user_group;" > > # Image level user / group settings > set_user_group () {
Hello, ROOTFS_POSTPROCESS_COMMAND is not a shell command delimited by ';' but a space separated list of bitbake recipes functions. So the ROOTFS_POSTPROCESS_COMMAND:append = " ..." is correct here. If you have concatenation problem, they are likely caused by the next function not ensuring the space separation. Also, FYI, we have a master-first policy, to accept this patch, similar patches would have been sent to master and wrynose. Regards, -- Yoann Congal Smile ECS
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#241305): https://lists.openembedded.org/g/openembedded-core/message/241305 Mute This Topic: https://lists.openembedded.org/mt/120264581/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
