diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2018-02-12 13:05:16 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-02-24 10:31:45 +0000 |
commit | d594496190c0a4009a7690adbf54e80a95f36642 (patch) | |
tree | daccb1e79eff25f99f038fc671d8afa95164c8ea /meta/recipes-devtools | |
parent | 1dd146d5acd6bb4c0d65045071e2fd27590b8df4 (diff) | |
download | poky-d594496190c0a4009a7690adbf54e80a95f36642.tar.gz |
image-live.bbclass: drop support for compressed ISO images
While modern Linux kernels still support it, the userspace tools
haven't been updated in over a decade. Also, squashfs provides
both better performance, and better compression ratio:
https://elinux.org/Squash_Fs_Comparisons
(From OE-Core rev: 9443981d3934b366e39404719486d2b34d8a9d73)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@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 | 20 |
1 files changed, 0 insertions, 20 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 deleted file mode 100644 index 021c05839c..0000000000 --- a/meta/recipes-devtools/zisofs-tools/zisofs-tools-native_1.0.8.bb +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | # zisofs-tools-native OE build file | ||
2 | # Copyright (C) 1989, 1991 Free Software Foundation, Inc. | ||
3 | SUMMARY = "Utilities for creating compressed CD-ROM filesystems" | ||
4 | HOMEPAGE = "http://freecode.com/projects/zisofs-tools" | ||
5 | SECTION = "console/utils" | ||
6 | LICENSE = "GPLv2" | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
8 | |||
9 | DEPENDS = "zlib-native" | ||
10 | |||
11 | SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/zisofs-tools/zisofs-tools-${PV}.tar.bz2/2d0ed8c9a1f60b45f949b136f9be1f6c/zisofs-tools-${PV}.tar.bz2" | ||
12 | |||
13 | SRC_URI[md5sum] = "2d0ed8c9a1f60b45f949b136f9be1f6c" | ||
14 | SRC_URI[sha256sum] = "ae4e53e4914934d41660248fb59d3c8761f1f1fd180d5ec993c17ddb3afd04f3" | ||
15 | |||
16 | inherit native | ||
17 | |||
18 | do_install() { | ||
19 | oe_runmake install INSTALLROOT=${D} bindir=${bindir} | ||
20 | } | ||