diff options
author | Kees Cook <keescook@chromium.org> | 2013-08-16 07:59:11 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2013-09-03 13:30:05 -0600 |
commit | 3153e915b493a8d832e9260723c579d2544e5dc8 (patch) | |
tree | 42fa03a41dd8cb5d8028aebc002fcf3717c4fc2e /include/configs | |
parent | 628af1790ac3231455c1ae4a4e43b67136799fa2 (diff) | |
download | u-boot-imx-3153e915b493a8d832e9260723c579d2544e5dc8.zip u-boot-imx-3153e915b493a8d832e9260723c579d2544e5dc8.tar.gz u-boot-imx-3153e915b493a8d832e9260723c579d2544e5dc8.tar.bz2 |
sandbox: add compression tests
This adds the "test_compression" command when building the sandbox. This
tests the existing compression and decompression routines for simple
sanity and for buffer overflow conditions.
Signed-off-by: Kees Cook <keescook@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/sandbox.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index af3d6ad..4027030 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -109,4 +109,9 @@ "stdout=serial\0" \ "stderr=serial\0" +#define CONFIG_GZIP_COMPRESSED +#define CONFIG_BZIP2 +#define CONFIG_LZO +#define CONFIG_LZMA + #endif |