aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2020-06-20 04:16:23 +0200
committerThomas Deutschmann <whissi@gentoo.org>2020-06-20 04:16:23 +0200
commit7c8e344dd138df4655d4a329b54b0e75d8ca9e3b (patch)
tree5203ce6be9ab1335bcbb9fbac91632c2c698052c /gkbuilds
parentgen_initramfs.sh: append_dropbear(): Add support for ed25519 host keys (diff)
downloadgenkernel-7c8e344dd138df4655d4a329b54b0e75d8ca9e3b.tar.gz
genkernel-7c8e344dd138df4655d4a329b54b0e75d8ca9e3b.tar.bz2
genkernel-7c8e344dd138df4655d4a329b54b0e75d8ca9e3b.zip
gkbuilds/dropbear: Enable AES GCM support
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'gkbuilds')
-rw-r--r--gkbuilds/dropbear.gkbuild5
1 files changed, 4 insertions, 1 deletions
diff --git a/gkbuilds/dropbear.gkbuild b/gkbuilds/dropbear.gkbuild
index e6a43f6..a165ae2 100644
--- a/gkbuilds/dropbear.gkbuild
+++ b/gkbuilds/dropbear.gkbuild
@@ -5,7 +5,10 @@ src_prepare() {
default
# Disable DSS support
- echo "#define DROPBEAR_DSS 0" > localoptions.h || die "Failed to disable DSS support"
+ echo "#define DROPBEAR_DSS 0" >> localoptions.h || die "Failed to disable DSS support"
+
+ # Enable AES GCM support
+ echo "#define DROPBEAR_ENABLE_GCM_MODE 1" >> localoptions.h || die "Failed to enable AES GCM support"
}
src_configure() {