From: Richard Leitner Date: Thu, 29 Oct 2020 10:07:02 +0000 (+0100) Subject: deb: replace deprecated apt force-yes argument X-Git-Tag: yocto-3.2.1~85 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=4af737e2643f498d1ff4c387207bd8c4f3d405b8;p=openembedded-core.git deb: replace deprecated apt force-yes argument apt-get deprecated --force-yes in favor of various options starting with --allow [1]. Replace it to avoid the following warning: W: --force-yes is deprecated, use one of the options starting with --allow instead. [1] https://salsa.debian.org/apt-team/apt/-/blob/master/debian/changelog Signed-off-by: Richard Leitner Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oe/package_manager/deb/__init__.py b/meta/lib/oe/package_manager/deb/__init__.py index 72155b178c..26157f591a 100644 --- a/meta/lib/oe/package_manager/deb/__init__.py +++ b/meta/lib/oe/package_manager/deb/__init__.py @@ -282,7 +282,7 @@ class DpkgPM(OpkgDpkgPM): os.environ['APT_CONFIG'] = self.apt_conf_file - cmd = "%s %s install --force-yes --allow-unauthenticated --no-remove %s" % \ + cmd = "%s %s install --allow-downgrades --allow-remove-essential --allow-change-held-packages --allow-unauthenticated --no-remove %s" % \ (self.apt_get_cmd, self.apt_args, ' '.join(pkgs)) try: