diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-05-28 22:18:25 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-05-28 22:18:25 +0000 |
commit | 195f5cd66674433cf06dbfe57e0b9bd98bb3549c (patch) | |
tree | 9832c942ef736aca0c489e7a5e1bf4469e56f354 /src/lib | |
parent | f9f4eaf7ab8c39691fc8b2019d511bdd17b27a37 (diff) | |
download | coreboot-195f5cd66674433cf06dbfe57e0b9bd98bb3549c.tar.xz |
Add lzma.o for CBFS, regardless if CONFIG_COMPRESSED_PAYLOAD_LZMA is
enabled or not.
CONFIG_COMPRESSED_PAYLOAD_LZMA is set only if the lzma utility is found
on the system - at least when using abuild. CBFS doesn't use this tool
for compression.
The result was a failed build if lzma (the tool) wasn't found, or
failed runtime (if src/lib/cbfs.c disables lzma decompression based on
CONFIG_COMPRESSED_PAYLOAD_LZMA)
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4320 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/Config.lb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Config.lb b/src/lib/Config.lb index 7585761eb8..259132951f 100644 --- a/src/lib/Config.lb +++ b/src/lib/Config.lb @@ -1,4 +1,3 @@ -uses HAVE_FALLBACK_BOOT uses CONFIG_USE_INIT uses CONFIG_USBDEBUG_DIRECT @@ -28,6 +27,7 @@ initobject memcmp.o if CONFIG_CBFS object cbfs.o + object lzma.o end if CONFIG_COMPRESSED_PAYLOAD_LZMA |