diff options
author | Ross Burton <ross.burton@arm.com> | 2024-11-05 19:48:56 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-11-06 12:18:05 +0000 |
commit | 0ddaa2913f73182b48f2069768de691dbccb59dc (patch) | |
tree | be1044720aa85879795ae2723553278631fe2e6c /meta-selftest | |
parent | c253b92c6a41870fdd0a23ff29bc533e7a3807b3 (diff) | |
download | poky-0ddaa2913f73182b48f2069768de691dbccb59dc.tar.gz |
oe-selftest-image: use explicit IMAGE_FEATURES instead of debug-tweaks
debug-tweaks is vague and doesn't give any indication that the root user
can login over SSH without a password. This behaviour is incredibly
dangerous if used unwittingly, so discourage it by using the underlying
features explicitly to spell out exactly what is being done.
(From OE-Core rev: 83cd8b5ca4544e9b19c110035276e5de2ebe7404)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest')
-rw-r--r-- | meta-selftest/recipes-test/images/oe-selftest-image.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-selftest/recipes-test/images/oe-selftest-image.bb b/meta-selftest/recipes-test/images/oe-selftest-image.bb index 317a0712aa..0eb4057209 100644 --- a/meta-selftest/recipes-test/images/oe-selftest-image.bb +++ b/meta-selftest/recipes-test/images/oe-selftest-image.bb | |||
@@ -2,7 +2,7 @@ SUMMARY = "An image used during oe-selftest tests" | |||
2 | 2 | ||
3 | # libudev is needed for deploy mdadm via devtool | 3 | # libudev is needed for deploy mdadm via devtool |
4 | IMAGE_INSTALL = "packagegroup-core-boot packagegroup-core-ssh-dropbear libudev" | 4 | IMAGE_INSTALL = "packagegroup-core-boot packagegroup-core-ssh-dropbear libudev" |
5 | IMAGE_FEATURES = "debug-tweaks" | 5 | IMAGE_FEATURES = "allow-empty-password empty-root-password allow-root-login" |
6 | 6 | ||
7 | IMAGE_LINGUAS = " " | 7 | IMAGE_LINGUAS = " " |
8 | 8 | ||