summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2021-04-08 14:45:19 +0200
committerOleksandr Suvorov <oleksandr.suvorov@toradex.com>2021-04-13 13:16:51 +0000
commit08f3c7a36539dbe2760e0500c7c460dbcd48be4d (patch)
tree0cc02841ae4d19f4c0c659c66ce2afbafa56d896
parentee43d6a6132bbd45696586fac1f68f5af32d5687 (diff)
dropbear: allow weak ciphers when debug-tweaks is set
Related-to: ELB-3908 Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
-rw-r--r--recipes-core/dropbear/dropbear_%.bbappend6
1 files changed, 6 insertions, 0 deletions
diff --git a/recipes-core/dropbear/dropbear_%.bbappend b/recipes-core/dropbear/dropbear_%.bbappend
new file mode 100644
index 0000000..0083f42
--- /dev/null
+++ b/recipes-core/dropbear/dropbear_%.bbappend
@@ -0,0 +1,6 @@
+# THE Eclipse RSE system explorer uses a ssh client which cannot cope with the
+# dropbear ssh server if weak ciphers are disabled.
+# If debug-tweaks is set in IMAGE_FEATURES then enable also weak ciphers.
+# With debug-tweaks we allow password less root access, enforcing strong
+# ciphers is pointless anyway.
+PACKAGECONFIG = "${@bb.utils.contains("IMAGE_FEATURES", "debug-tweaks", "", "disable-weak-ciphers",d)}"