diff options
author | Ariel D'Alessandro <ariel@vanguardiasur.com.ar> | 2016-02-04 22:12:52 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-02-06 21:27:24 +0100 |
commit | df3c3bcf598908ad542043a1fc40f9af9c7cbdb0 (patch) | |
tree | ec31b265a3d9f5a61a90965dd7598bd4b0f000b4 /package | |
parent | 1f970415ca99487ca0fa180c5eadbba65afc7945 (diff) | |
download | buildroot-df3c3bcf598908ad542043a1fc40f9af9c7cbdb0.tar.gz buildroot-df3c3bcf598908ad542043a1fc40f9af9c7cbdb0.zip |
aespipe: add host variant
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>
Diffstat (limited to 'package')
-rw-r--r-- | package/Config.in.host | 1 | ||||
-rw-r--r-- | package/aespipe/Config.in.host | 10 | ||||
-rw-r--r-- | package/aespipe/aespipe.mk | 1 |
3 files changed, 12 insertions, 0 deletions
diff --git a/package/Config.in.host b/package/Config.in.host index 8e6b870130..1c691a3508 100644 --- a/package/Config.in.host +++ b/package/Config.in.host @@ -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 index 0000000000..b64868ce74 --- /dev/null +++ b/package/aespipe/Config.in.host @@ -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/ diff --git a/package/aespipe/aespipe.mk b/package/aespipe/aespipe.mk index a220688d56..c567092ae8 100644 --- a/package/aespipe/aespipe.mk +++ b/package/aespipe/aespipe.mk @@ -10,3 +10,4 @@ AESPIPE_SITE = http://loop-aes.sourceforge.net/aespipe AESPIPE_LICENSE = GPL $(eval $(autotools-package)) +$(eval $(host-autotools-package)) |