summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMyles Watson <mylesgw@gmail.com>2009-09-23 17:48:28 +0000
committerMyles Watson <mylesgw@gmail.com>2009-09-23 17:48:28 +0000
commit422d0cb71262d27f0eff33ab324703b4a94374e5 (patch)
treed67caa3bd71fd1b72364cb01da07a805d9f74436 /Makefile
parentd6ac964c89d27428e6ab36d6cdd489626bbd2900 (diff)
downloadcoreboot-422d0cb71262d27f0eff33ab324703b4a94374e5.tar.gz
coreboot-422d0cb71262d27f0eff33ab324703b4a94374e5.tar.bz2
coreboot-422d0cb71262d27f0eff33ab324703b4a94374e5.zip
Separate payload compression from stage compression.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4659 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7cc96580035b..fe11db460b1e 100644
--- a/Makefile
+++ b/Makefile
@@ -236,9 +236,10 @@ CFLAGS +=-Wwrite-strings -Wredundant-decls -Wno-trigraphs
CFLAGS += -Werror-implicit-function-declaration -Wstrict-aliasing -Wshadow
CFLAGS += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
-CBFS_COMPRESS_FLAG:=
-ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y)
CBFS_COMPRESS_FLAG:=l
+CBFS_PAYLOAD_COMPRESS_FLAG:=
+ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y)
+CBFS_PAYLOAD_COMPRESS_FLAG:=l
endif
coreboot: prepare prepare2 $(obj)/coreboot.rom