]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
aespipe: add host variant
authorAriel D'Alessandro <ariel@vanguardiasur.com.ar>
Fri, 5 Feb 2016 01:12:52 +0000 (22:12 -0300)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 6 Feb 2016 20:27:24 +0000 (21:27 +0100)
Having the host version may allow post-image scripts to encrypt the
resulting image with aespipe (and decrypt it in the update tool on the
target).

Signed-off-by: Ariel D'Alessandro <ariel@vanguardiasur.com.ar>
[Thomas: rewrap Config.in help text, tweak commit title.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/Config.in.host
package/aespipe/Config.in.host [new file with mode: 0644]
package/aespipe/aespipe.mk

index 8e6b870130c9a33516cfd399c964bfd340f778cf..1c691a3508bf702d0ea0dd629ad5be04a9208252 100644 (file)
@@ -1,5 +1,6 @@
 menu "Host utilities"
 
+       source "package/aespipe/Config.in.host"
        source "package/checkpolicy/Config.in.host"
        source "package/cramfs/Config.in.host"
        source "package/dfu-util/Config.in.host"
diff --git a/package/aespipe/Config.in.host b/package/aespipe/Config.in.host
new file mode 100644 (file)
index 0000000..b64868c
--- /dev/null
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_HOST_AESPIPE
+       bool "host aespipe"
+       help
+         aespipe program is AES encrypting or decrypting pipe. It
+         reads from standard input and writes to standard output. It
+         can be used to create and restore encrypted tar or cpio
+         archives. It can be used to encrypt and decrypt loop-AES
+         compatible encrypted disk images.
+
+         http://koti.tnnet.fi/jari.ruusu/linux/
index a220688d56e541a01843bef2575797f9d5490c04..c567092ae8aed38daea8ac348c0854f27e81758b 100644 (file)
@@ -10,3 +10,4 @@ AESPIPE_SITE = http://loop-aes.sourceforge.net/aespipe
 AESPIPE_LICENSE = GPL
 
 $(eval $(autotools-package))
+$(eval $(host-autotools-package))