From: Jaipaul Cheernam Date: Mon, 3 Aug 2026 05:18:32 +0000 (+0200) Subject: useradd.bbclass: drop groupmems from sysroot setup X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de0bf5771644edbe317ee9ad89cca4bc8836cf12;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git useradd.bbclass: drop groupmems from sysroot setup groupmems was removed from shadow 4.20.0 [1]. The useradd class never actually called the binary - perform_groupmems already uses usermod. Drop it from the sysroot loop to silence the warnings. [1] https://github.com/shadow-maint/shadow/pull/1601 Signed-off-by: Jaipaul Cheernam Signed-off-by: Richard Purdie --- diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass index d6e1df2bd6..e9e835e1a2 100644 --- a/meta/classes/useradd.bbclass +++ b/meta/classes/useradd.bbclass @@ -131,10 +131,6 @@ usermod_sysroot() { common_useradd_sysroot usermod } -groupmems_sysroot() { - common_useradd_sysroot groupmems -} - common_useradd_sysroot() { # Pseudo may (do_prepare_recipe_sysroot) or may not (do_populate_sysroot_setscene) be running # at this point so we're explicit about the environment so pseudo can load if @@ -168,7 +164,6 @@ common_useradd_sysroot() { groupadd) GROUPADD_PARAM="${@get_all_cmd_params(d, 'groupadd')}";; useradd) USERADD_PARAM="${@get_all_cmd_params(d, 'useradd')}";; usermod) USERMOD_PARAM="${@get_all_cmd_params(d, 'usermod')}";; - groupmems) GROUPMEMS_PARAM="${@get_all_cmd_params(d, 'groupmems')}";; esac # Tell the system to use the environment vars @@ -184,7 +179,7 @@ common_useradd_sysroot() { EXTRA_STAGING_FIXMES += "PSEUDO_SYSROOT PSEUDO_LOCALSTATEDIR LOGFIFO" python useradd_sysroot_sstate() { - for cmd, sort_prefix in [("groupadd", "01"), ("useradd", "02"), ("usermod", "03"), ("groupmems", "04")]: + for cmd, sort_prefix in [("groupadd", "01"), ("useradd", "02"), ("usermod", "03")]: scriptfile = None task = d.getVar("BB_CURRENTTASK") if task == "package_setscene":