summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorEtienne Cordonnier <ecordonnier@snap.com>2022-09-14 11:59:45 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-09-17 07:47:07 +0100
commit72631cd3689f2eafe63ba4a43cc573a535c1ec1b (patch)
tree9f6d905f98d5d5f1f36e167713a2c0ea7493ae2f /meta
parent04d97b597b26f522345fe300be580706800c2603 (diff)
downloadpoky-72631cd3689f2eafe63ba4a43cc573a535c1ec1b.tar.gz
opkg: add option for zstd support
This allows the use of zstd for opkg packages by using OPKGBUILDCMD: OPKGBUILDCMD = "opkg-build -Z zstd" (From OE-Core rev: a0892c3209e3892d79b97dcd4ec0e5a89057258c) Signed-off-by: Alex Feinman <afeinman@snap.com> Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-devtools/opkg/opkg_0.6.0.bb1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/opkg/opkg_0.6.0.bb b/meta/recipes-devtools/opkg/opkg_0.6.0.bb
index 7b351e8123..4cd589cd29 100644
--- a/meta/recipes-devtools/opkg/opkg_0.6.0.bb
+++ b/meta/recipes-devtools/opkg/opkg_0.6.0.bb
@@ -39,6 +39,7 @@ PACKAGECONFIG[gpg] = "--enable-gpg,--disable-gpg,\
39PACKAGECONFIG[curl] = "--enable-curl,--disable-curl,curl" 39PACKAGECONFIG[curl] = "--enable-curl,--disable-curl,curl"
40PACKAGECONFIG[ssl-curl] = "--enable-ssl-curl,--disable-ssl-curl,curl openssl" 40PACKAGECONFIG[ssl-curl] = "--enable-ssl-curl,--disable-ssl-curl,curl openssl"
41PACKAGECONFIG[sha256] = "--enable-sha256,--disable-sha256" 41PACKAGECONFIG[sha256] = "--enable-sha256,--disable-sha256"
42PACKAGECONFIG[zstd] = "--enable-zstd,--disable-zstd,zstd"
42PACKAGECONFIG[libsolv] = "--with-libsolv,--without-libsolv,libsolv" 43PACKAGECONFIG[libsolv] = "--with-libsolv,--without-libsolv,libsolv"
43 44
44EXTRA_OECONF:class-native = "--localstatedir=/${@os.path.relpath('${localstatedir}', '${STAGING_DIR_NATIVE}')} --sysconfdir=/${@os.path.relpath('${sysconfdir}', '${STAGING_DIR_NATIVE}')}" 45EXTRA_OECONF:class-native = "--localstatedir=/${@os.path.relpath('${localstatedir}', '${STAGING_DIR_NATIVE}')} --sysconfdir=/${@os.path.relpath('${sysconfdir}', '${STAGING_DIR_NATIVE}')}"