summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2021-04-08 14:45:19 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2021-05-24 18:29:17 +0200
commitd670654c14f05b7e68d9c716b328c20de01679da (patch)
tree35dc3f5d113560ac6de38066e3519827b5359745
parente3fddc5c706d5b197c139098570967834dc88c05 (diff)
dropbear: allow weak ciphers when debug-tweaks is set
Related-to: ELB-3908 Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> (cherry picked from commit 08f3c7a36539dbe2760e0500c7c460dbcd48be4d)
-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)}"