diff options
author | Ross Burton <ross.burton@intel.com> | 2019-03-04 17:31:44 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-03-04 22:57:06 +0000 |
commit | 42ed8a4a828b50c25df88a1e969a006deeedb90a (patch) | |
tree | f94754f8c11ac52b06c3b2c08a4de2d490fcfdb9 | |
parent | b7b769f2f83e9d96e7d40250bd0952d83adb563b (diff) | |
download | poky-42ed8a4a828b50c25df88a1e969a006deeedb90a.tar.gz |
squashfs-tools: add PACKAGECONFIGs for all the tunables
Upstream lets you control what compression algorithms are used, so add
PACKAGECONFIGs for them all.
Instead of bundling a copy of the SevenZIP SDK from 2009 (!), reuse XZ. This
means we can drop Public Domain from the license list.
Also -e was removed from EXTRA_OEMAKE in 2016 (oe-core aeb653) so the fiddling
to work around that can be removed.
(From OE-Core rev: e37a1ecc292b684daa49f2da2e19e0aa975f0959)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb b/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb index 2f41263457..e871f1cbf5 100644 --- a/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb +++ b/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb | |||
@@ -2,16 +2,12 @@ | |||
2 | # and I don't think the kernel supports it any more. | 2 | # and I don't think the kernel supports it any more. |
3 | SUMMARY = "Tools for manipulating SquashFS filesystems" | 3 | SUMMARY = "Tools for manipulating SquashFS filesystems" |
4 | SECTION = "base" | 4 | SECTION = "base" |
5 | LICENSE = "GPL-2 & PD" | 5 | LICENSE = "GPL-2" |
6 | LIC_FILES_CHKSUM = "file://../COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | 6 | LIC_FILES_CHKSUM = "file://../COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" |
7 | file://../../7zC.txt;beginline=12;endline=16;md5=2056cd6d919ebc3807602143c7449a7c \ | ||
8 | " | ||
9 | DEPENDS = "attr zlib xz lzo lz4" | ||
10 | 7 | ||
11 | PV = "4.3+gitr${SRCPV}" | 8 | PV = "4.3+gitr${SRCPV}" |
12 | SRCREV = "9c1db6d13a51a2e009f0027ef336ce03624eac0d" | 9 | SRCREV = "9c1db6d13a51a2e009f0027ef336ce03624eac0d" |
13 | SRC_URI = "git://github.com/plougher/squashfs-tools.git;protocol=https \ | 10 | SRC_URI = "git://github.com/plougher/squashfs-tools.git;protocol=https \ |
14 | http://downloads.sourceforge.net/sevenzip/lzma465.tar.bz2;name=lzma \ | ||
15 | file://0001-mksquashfs.c-get-inline-functions-work-with-C99.patch;striplevel=2 \ | 11 | file://0001-mksquashfs.c-get-inline-functions-work-with-C99.patch;striplevel=2 \ |
16 | file://squashfs-tools-4.3-sysmacros.patch;striplevel=2 \ | 12 | file://squashfs-tools-4.3-sysmacros.patch;striplevel=2 \ |
17 | file://fix-compat.patch \ | 13 | file://fix-compat.patch \ |
@@ -23,14 +19,20 @@ SRC_URI[lzma.sha256sum] = "c935fd04dd8e0e8c688a3078f3675d699679a90be81c12686837e | |||
23 | 19 | ||
24 | S = "${WORKDIR}/git/squashfs-tools" | 20 | S = "${WORKDIR}/git/squashfs-tools" |
25 | 21 | ||
26 | # EXTRA_OEMAKE is typically: -e MAKEFLAGS= | 22 | EXTRA_OEMAKE = "${PACKAGECONFIG_CONFARGS}" |
27 | # the -e causes problems as CFLAGS is modified in the Makefile, so | 23 | |
28 | # we redefine EXTRA_OEMAKE here | 24 | PACKAGECONFIG ??= "gzip xz lzo lz4 lzma xattr" |
29 | EXTRA_OEMAKE = "MAKEFLAGS= LZMA_SUPPORT=1 LZMA_DIR=../.. XZ_SUPPORT=1 LZO_SUPPORT=1 LZ4_SUPPORT=1" | 25 | PACKAGECONFIG[gzip] = "GZIP_SUPPORT=1,GZIP_SUPPORT=0,zlib" |
26 | PACKAGECONFIG[xz] = "XZ_SUPPORT=1,XZ_SUPPORT=0,xz" | ||
27 | PACKAGECONFIG[lzo] = "LZO_SUPPORT=1,LZO_SUPPORT=0,lzo" | ||
28 | PACKAGECONFIG[lz4] = "LZ4_SUPPORT=1,LZ4_SUPPORT=0,lz4" | ||
29 | PACKAGECONFIG[lzma] = "LZMA_XZ_SUPPORT=1,LZMA_XZ_SUPPORT=0,xz" | ||
30 | PACKAGECONFIG[xattr] = "XATTR_SUPPORT=1,XATTR_SUPPORT=0,attr" | ||
30 | 31 | ||
31 | do_compile() { | 32 | do_compile() { |
32 | oe_runmake mksquashfs unsquashfs | 33 | oe_runmake mksquashfs unsquashfs |
33 | } | 34 | } |
35 | |||
34 | do_install () { | 36 | do_install () { |
35 | install -d ${D}${sbindir} | 37 | install -d ${D}${sbindir} |
36 | install -m 0755 mksquashfs ${D}${sbindir}/ | 38 | install -m 0755 mksquashfs ${D}${sbindir}/ |