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 <[email protected]> --- meta/classes/useradd.bbclass | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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":
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#242605): https://lists.openembedded.org/g/openembedded-core/message/242605 Mute This Topic: https://lists.openembedded.org/mt/120573052/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
