[PATCH] init: Make SYSTEM_DATA_VERIFICATION a visible symbol

2019-10-05 Thread klondike
SIGNED_PE_FILE_VERIFICATION can be chosen by users when other symbols selecting SYSTEM_DATA_VERIFICATION are not selected. Also complete the help section so that this becomes clear to users. Signed-off-by: Francisco Blas Izquierdo Riera (klondike) Cc: David Howells Cc: Vivek Goyal diff --git a

Re: [PATCH] initramfs: Fix spurious rebuilds

2017-01-04 Thread klondike
her (larger version) of the patch which also addresses a few other hacks in the Makefile, see "[PATCH] kbuild: Fix dependency checking for initramfs build". I haven't had time to check that second patch. I have run the tests I ran for my own patches and they all passed, so feel free to add Reviewed-by and Tested-by if you want :) Sincerely, Francisco Blas Izquierdo Riera (klondike) signature.asc Description: OpenPGP digital signature

Re: [PATCH v3 2/2] initramfs: Allow again choice of the embedded initram compression algorithm

2016-10-21 Thread Francisco Blas Izquierdo Riera (klondike)
Hello Andrew! El 21/10/16 a las 23:21, Andrew Morton escribió: > On Tue, 27 Sep 2016 22:32:59 +0200 klondike wrote: > >> Choosing the appropriate compression option when using an embeded initramfs >> can result in significant size differences in the resulting data. >&

[PATCH v3 2/2] initramfs: Allow again choice of the embedded initram compression algorithm

2016-09-27 Thread klondike
Signed-off-by: Francisco Blas Izquierdo Riera (klondike) Cc: P J P Cc: Paul Bolle Cc: Andrew Morton --- I'm sorry for the noise. I'm resending this as a new version because Thunderbird likes to word wrap things it shouldn't be word wrapping. diff --git a/usr/Kconfig b/usr/Kconfig index

[PATCH v3 1/2] initramfs: Select builtin initram compression algorithm on KConfig instead of Makefile

2016-09-27 Thread klondike
(klondike) Cc: P J P Cc: Paul Bolle Cc: Andrew Morton --- I'm sorry for the noise. I'm resending this as a new version because Thunderbird likes to word wrap things it shouldn't be word wrapping. diff --git a/usr/Kconfig b/usr/Kconfig index 572dcf7..bf8e8f1 100644 --- a/usr/Kc

[PATCH v2 2/2] initramfs: allow again choice of the embedded compression algorithm

2016-09-27 Thread klondike
Signed-off-by: Francisco Blas Izquierdo Riera (klondike) Cc: P J P Cc: Paul Bolle Cc: Andrew Morton diff --git a/usr/Kconfig b/usr/Kconfig index bf8e8f1..6278f13 100644 --- a/usr/Kconfig +++ b/usr/Kconfig @@ -99,8 +99,125 @@ config RD_LZ4 Support loading of a LZ4 encoded initial ramdisk or c

[PATCH v2 1/2] initramfs: allow again choice of the embedded compression algorithm

2016-09-27 Thread klondike
algorithms want to be tested. Signed-off-by: Francisco Blas Izquierdo Riera (klondike) Cc: P J P Cc: Paul Bolle Cc: Andrew Morton diff --git a/usr/Kconfig b/usr/Kconfig index 572dcf7..bf8e8f1 100644 --- a/usr/Kconfig +++ b/usr/Kconfig @@ -98,3 +98,13 @@ config RD_LZ4 help Support

Re: [PATCH] initramfs: allow again choice of the embedded compression algorithm

2014-09-29 Thread klondike
El 29/09/14 10:08, P J P escribió: >Hello Klondike, Hi! > +-- On Thu, 25 Sep 2014, klondike wrote --+ > | Despite embedding an uncompressed initramfs, a user may want to allow for a > | compressed extra initramfs to be passed using the rd system, for example to > | boot a

[PATCH] initramfs: allow again choice of the embedded compression algorithm

2014-09-24 Thread klondike
ress using lzo INITRAMFS_COMPRESSION_LZ4 Compress using lz4 These depend on the corresponding CONFIG_RD_* option (except NONE which has no dependencies). Signed-off-by: Francisco Blas Izquierdo Riera (klondike) Cc: P J P Cc: Paul Bolle --- This patch is applied against Torvald's linux tree