All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2] package: aespipe: add host variant
@ 2016-02-05  1:12 Ariel D'Alessandro
  2016-02-06 20:28 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Ariel D'Alessandro @ 2016-02-05  1:12 UTC (permalink / raw)
  To: buildroot

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>
---
 package/Config.in.host         | 1 +
 package/aespipe/Config.in.host | 9 +++++++++
 package/aespipe/aespipe.mk     | 1 +
 3 files changed, 11 insertions(+)
 create mode 100644 package/aespipe/Config.in.host

diff --git a/package/Config.in.host b/package/Config.in.host
index 8e6b870..1c691a3 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 0000000..43b5bcf
--- /dev/null
+++ b/package/aespipe/Config.in.host
@@ -0,0 +1,9 @@
+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 a220688..c567092 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))
-- 
2.7.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH v2] package: aespipe: add host variant
  2016-02-05  1:12 [Buildroot] [PATCH v2] package: aespipe: add host variant Ariel D'Alessandro
@ 2016-02-06 20:28 ` Thomas Petazzoni
  2016-02-10 11:58   ` Ariel D'Alessandro
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2016-02-06 20:28 UTC (permalink / raw)
  To: buildroot

Dear Ariel D'Alessandro,

On Thu,  4 Feb 2016 22:12:52 -0300, Ariel D'Alessandro wrote:
> 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>

We generally don't use "package: <package>:" as a commit title prefix.
We either use just "<package>: " or "package/<package>: ". I've
adjusted the commit title accordingly.

> diff --git a/package/aespipe/Config.in.host b/package/aespipe/Config.in.host
> new file mode 100644
> index 0000000..43b5bcf
> --- /dev/null
> +++ b/package/aespipe/Config.in.host
> @@ -0,0 +1,9 @@
> +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.

The lines were slightly too long here, so I rewrapped this paragraph.

And then I applied your patch. Thanks a lot!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH v2] package: aespipe: add host variant
  2016-02-06 20:28 ` Thomas Petazzoni
@ 2016-02-10 11:58   ` Ariel D'Alessandro
  0 siblings, 0 replies; 3+ messages in thread
From: Ariel D'Alessandro @ 2016-02-10 11:58 UTC (permalink / raw)
  To: buildroot

Thomas,

El 06/02/16 a las 17:28, Thomas Petazzoni escribi?:
> Dear Ariel D'Alessandro,
> 
> On Thu,  4 Feb 2016 22:12:52 -0300, Ariel D'Alessandro wrote:
>> 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>
> 
> We generally don't use "package: <package>:" as a commit title prefix.
> We either use just "<package>: " or "package/<package>: ". I've
> adjusted the commit title accordingly.
> 
>> diff --git a/package/aespipe/Config.in.host b/package/aespipe/Config.in.host
>> new file mode 100644
>> index 0000000..43b5bcf
>> --- /dev/null
>> +++ b/package/aespipe/Config.in.host
>> @@ -0,0 +1,9 @@
>> +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.
> 
> The lines were slightly too long here, so I rewrapped this paragraph.
> 
> And then I applied your patch. Thanks a lot!

Great :) Thank you very much!

Regards,

-- 
Ariel D'Alessandro, VanguardiaSur
www.vanguardiasur.com.ar

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-02-10 11:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-05  1:12 [Buildroot] [PATCH v2] package: aespipe: add host variant Ariel D'Alessandro
2016-02-06 20:28 ` Thomas Petazzoni
2016-02-10 11:58   ` Ariel D'Alessandro

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.