summaryrefslogtreecommitdiffstats
path: root/meta/classes-global
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes-global')
-rw-r--r--meta/classes-global/package_ipk.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes-global/package_ipk.bbclass b/meta/classes-global/package_ipk.bbclass
index 71ffdd522a..209568ae5f 100644
--- a/meta/classes-global/package_ipk.bbclass
+++ b/meta/classes-global/package_ipk.bbclass
@@ -15,7 +15,7 @@ IPKGCONF_SDK_TARGET = "${WORKDIR}/opkg-sdk-target.conf"
15PKGWRITEDIRIPK = "${WORKDIR}/deploy-ipks" 15PKGWRITEDIRIPK = "${WORKDIR}/deploy-ipks"
16 16
17# Program to be used to build opkg packages 17# Program to be used to build opkg packages
18OPKGBUILDCMD ??= 'opkg-build -Z xz -a "${XZ_DEFAULTS}"' 18OPKGBUILDCMD ??= 'opkg-build -Z zstd -a "${ZSTD_DEFAULTS}"'
19 19
20OPKG_ARGS += "--force_postinstall --prefer-arch-to-version" 20OPKG_ARGS += "--force_postinstall --prefer-arch-to-version"
21OPKG_ARGS += "${@['', '--no-install-recommends'][d.getVar("NO_RECOMMENDATIONS") == "1"]}" 21OPKG_ARGS += "${@['', '--no-install-recommends'][d.getVar("NO_RECOMMENDATIONS") == "1"]}"
@@ -277,7 +277,7 @@ addtask do_package_write_ipk_setscene
277 277
278python () { 278python () {
279 if d.getVar('PACKAGES') != '': 279 if d.getVar('PACKAGES') != '':
280 deps = ' opkg-utils-native:do_populate_sysroot virtual/fakeroot-native:do_populate_sysroot xz-native:do_populate_sysroot' 280 deps = ' opkg-utils-native:do_populate_sysroot virtual/fakeroot-native:do_populate_sysroot zstd-native:do_populate_sysroot'
281 d.appendVarFlag('do_package_write_ipk', 'depends', deps) 281 d.appendVarFlag('do_package_write_ipk', 'depends', deps)
282 d.setVarFlag('do_package_write_ipk', 'fakeroot', "1") 282 d.setVarFlag('do_package_write_ipk', 'fakeroot', "1")
283 283