diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2017-06-29 13:28:42 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-09 22:48:38 +0100 |
commit | 7c1adcc6d7e00c5b2ea427c7a023dc9faee40582 (patch) | |
tree | 94d9564f01ee3d684f1619ecd94f3e7b16c9f080 /meta/classes/image.bbclass | |
parent | be73d2bf15eb6b9afca324e0dd4b1a24c00a1f8e (diff) | |
download | poky-7c1adcc6d7e00c5b2ea427c7a023dc9faee40582.tar.gz |
rootfs-postcommands: split ssh_allow_empty_password
"allow root login" should not be bundled in ssh_allow_empty_password,
because some distro may want only one of "allow root login" and "allow
empty password", so split it out into ssh_allow_root_login and add new
imagefeature allow-root-login so they can be controlled separately,
debug-tweaks will still include both of them.
(From OE-Core rev: 1ab494f06a12548a902298afabd0a842161ef10d)
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 2e880242d7..adc50c99bc 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -32,7 +32,7 @@ INHIBIT_DEFAULT_DEPS = "1" | |||
32 | # IMAGE_FEATURES may contain any available package group | 32 | # IMAGE_FEATURES may contain any available package group |
33 | IMAGE_FEATURES ?= "" | 33 | IMAGE_FEATURES ?= "" |
34 | IMAGE_FEATURES[type] = "list" | 34 | IMAGE_FEATURES[type] = "list" |
35 | IMAGE_FEATURES[validitems] += "debug-tweaks read-only-rootfs empty-root-password allow-empty-password post-install-logging" | 35 | IMAGE_FEATURES[validitems] += "debug-tweaks read-only-rootfs empty-root-password allow-empty-password allow-root-login post-install-logging" |
36 | 36 | ||
37 | # Generate companion debugfs? | 37 | # Generate companion debugfs? |
38 | IMAGE_GEN_DEBUGFS ?= "0" | 38 | IMAGE_GEN_DEBUGFS ?= "0" |