diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2013-09-17 13:32:18 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-30 22:11:56 +0100 |
commit | fde291198386dae7eca868276d5e1a7b069fda58 (patch) | |
tree | 2021d61a9a8c429bb7611bca335c2f22f7cc8c84 /meta/recipes-devtools | |
parent | 4a0ff9c74dcf41847c23f30616e95f18309e59c1 (diff) | |
download | poky-fde291198386dae7eca868276d5e1a7b069fda58.tar.gz |
bootimage.bbclass, zisofs-tools-native: add ability to compress ISO images
The mkzftree is needed to allow ISO images to be compressed with
minimal runtime overhead. Below is an example of the savings on a
core-image-minimal.
Before ls -l:
24117248 core-image-minimal-qemux86-64.iso
Using the mkzftree ls -l:
16777216 core-image-minimal-qemux86-64.iso
(From OE-Core rev: 808d4371939ec48ed62e0c0b6614b96d61b1f7b8)
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Reviewed-by: Darren Hart <dvhart@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/zisofs-tools/zisofs-tools-native_1.0.8.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/recipes-devtools/zisofs-tools/zisofs-tools-native_1.0.8.bb b/meta/recipes-devtools/zisofs-tools/zisofs-tools-native_1.0.8.bb new file mode 100644 index 0000000000..1501307cdb --- /dev/null +++ b/meta/recipes-devtools/zisofs-tools/zisofs-tools-native_1.0.8.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | # zisofs-tools-native OE build file | ||
2 | # Copyright (C) 1989, 1991 Free Software Foundation, Inc. | ||
3 | SUMMARY = "A set of tools for iso file compression" | ||
4 | DESCRIPTION = "A set of tools for iso file compression" | ||
5 | HOMEPAGE = "http://http://freecode.com/projects/zisofs-tools" | ||
6 | SECTION = "console/utils" | ||
7 | LICENSE = "GPLv2" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
9 | |||
10 | SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/zisofs-tools/zisofs-tools-${PV}.tar.bz2/2d0ed8c9a1f60b45f949b136f9be1f6c/zisofs-tools-${PV}.tar.bz2" | ||
11 | |||
12 | SRC_URI[md5sum] = "2d0ed8c9a1f60b45f949b136f9be1f6c" | ||
13 | SRC_URI[sha256sum] = "ae4e53e4914934d41660248fb59d3c8761f1f1fd180d5ec993c17ddb3afd04f3" | ||
14 | |||
15 | inherit native | ||
16 | |||
17 | do_install() { | ||
18 | oe_runmake install INSTALLROOT=${D} bindir=${bindir} | ||
19 | } | ||