summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/squashfs-tools
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2019-03-04 17:31:44 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-03-04 22:57:06 +0000
commit42ed8a4a828b50c25df88a1e969a006deeedb90a (patch)
treef94754f8c11ac52b06c3b2c08a4de2d490fcfdb9 /meta/recipes-devtools/squashfs-tools
parentb7b769f2f83e9d96e7d40250bd0952d83adb563b (diff)
downloadpoky-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>
Diffstat (limited to 'meta/recipes-devtools/squashfs-tools')
-rw-r--r--meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb22
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.
3SUMMARY = "Tools for manipulating SquashFS filesystems" 3SUMMARY = "Tools for manipulating SquashFS filesystems"
4SECTION = "base" 4SECTION = "base"
5LICENSE = "GPL-2 & PD" 5LICENSE = "GPL-2"
6LIC_FILES_CHKSUM = "file://../COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ 6LIC_FILES_CHKSUM = "file://../COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
7 file://../../7zC.txt;beginline=12;endline=16;md5=2056cd6d919ebc3807602143c7449a7c \
8"
9DEPENDS = "attr zlib xz lzo lz4"
10 7
11PV = "4.3+gitr${SRCPV}" 8PV = "4.3+gitr${SRCPV}"
12SRCREV = "9c1db6d13a51a2e009f0027ef336ce03624eac0d" 9SRCREV = "9c1db6d13a51a2e009f0027ef336ce03624eac0d"
13SRC_URI = "git://github.com/plougher/squashfs-tools.git;protocol=https \ 10SRC_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
24S = "${WORKDIR}/git/squashfs-tools" 20S = "${WORKDIR}/git/squashfs-tools"
25 21
26# EXTRA_OEMAKE is typically: -e MAKEFLAGS= 22EXTRA_OEMAKE = "${PACKAGECONFIG_CONFARGS}"
27# the -e causes problems as CFLAGS is modified in the Makefile, so 23
28# we redefine EXTRA_OEMAKE here 24PACKAGECONFIG ??= "gzip xz lzo lz4 lzma xattr"
29EXTRA_OEMAKE = "MAKEFLAGS= LZMA_SUPPORT=1 LZMA_DIR=../.. XZ_SUPPORT=1 LZO_SUPPORT=1 LZ4_SUPPORT=1" 25PACKAGECONFIG[gzip] = "GZIP_SUPPORT=1,GZIP_SUPPORT=0,zlib"
26PACKAGECONFIG[xz] = "XZ_SUPPORT=1,XZ_SUPPORT=0,xz"
27PACKAGECONFIG[lzo] = "LZO_SUPPORT=1,LZO_SUPPORT=0,lzo"
28PACKAGECONFIG[lz4] = "LZ4_SUPPORT=1,LZ4_SUPPORT=0,lz4"
29PACKAGECONFIG[lzma] = "LZMA_XZ_SUPPORT=1,LZMA_XZ_SUPPORT=0,xz"
30PACKAGECONFIG[xattr] = "XATTR_SUPPORT=1,XATTR_SUPPORT=0,attr"
30 31
31do_compile() { 32do_compile() {
32 oe_runmake mksquashfs unsquashfs 33 oe_runmake mksquashfs unsquashfs
33} 34}
35
34do_install () { 36do_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}/