diff options
author | Ricardo Ribalda Delgado <ricardo@ribalda.com> | 2019-06-19 11:44:00 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-06-19 22:13:42 +0100 |
commit | 931ed3e4f8d077ce915265806f61c6685a7f2917 (patch) | |
tree | 714e78f0233e12aaf6397cbb344e5e70ff6bbb12 /meta/lib/oe/rootfs.py | |
parent | a935d4ce3b77bf7471455e068f46d3f9e4322a35 (diff) | |
download | poky-931ed3e4f8d077ce915265806f61c6685a7f2917.tar.gz |
rootfs: Fix dependency for every dpkg run
Avoid getting a warning on do_rootfs.
Fixes:
NOTE: Installing the following packages: libgdk-pixbuf-2.0-locale-en-gb glibc-locale-en-gb libatspi-locale-en-gb gstreamer1.0-locale-en-gb gtk+3-locale-en libatk-1.0-locale-en-gb gtk+3-locale-en-gb gstreamer1.0-plugins-good-locale-en-gb gstreamer1.0-plugins-base-locale-en-gb gstreamer1.0-plugins-bad-locale-en-gb libglib-2.0-locale-en-gb avahi-locale-en-gb vte-locale-en-gb xkeyboard-config-locale-en-gb
WARNING: Unable to install packages. Command '/workdir/build/tmp/work/qt5122-poky-linux/bottlecam-image/1.0-r0/recipe-sysroot-native/usr/bin/apt-get install --force-yes --allow-unauthenticated libgdk-pixbuf-2.0-locale-en-gb glibc-locale-en-gb libatspi-locale-en-gb gstreamer1.0-locale-en-gb gtk+3-locale-en libatk-1.0-locale-en-gb gtk+3-locale-en-gb gstreamer1.0-plugins-good-locale-en-gb gstreamer1.0-plugins-base-locale-en-gb gstreamer1.0-plugins-bad-locale-en-gb libglib-2.0-locale-en-gb avahi-locale-en-gb vte-locale-en-gb xkeyboard-config-locale-en-gb' returned 100:
Reading package lists...
Building dependency tree...
Reading state information...
(From OE-Core rev: 4e315dd23c52b75fd64dca89e7bffe25a0b0e6f9)
Signed-off-by: Ricardo Ribalda Delgado <ricardo@ribalda.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/rootfs.py')
-rw-r--r-- | meta/lib/oe/rootfs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index 9358f562c8..c62fa5f54a 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py | |||
@@ -647,6 +647,7 @@ class DpkgRootfs(DpkgOpkgRootfs): | |||
647 | if pkg_type in pkgs_to_install: | 647 | if pkg_type in pkgs_to_install: |
648 | self.pm.install(pkgs_to_install[pkg_type], | 648 | self.pm.install(pkgs_to_install[pkg_type], |
649 | [False, True][pkg_type == Manifest.PKG_TYPE_ATTEMPT_ONLY]) | 649 | [False, True][pkg_type == Manifest.PKG_TYPE_ATTEMPT_ONLY]) |
650 | self.pm.fix_broken_dependencies() | ||
650 | 651 | ||
651 | if self.progress_reporter: | 652 | if self.progress_reporter: |
652 | # Don't support attemptonly, so skip that | 653 | # Don't support attemptonly, so skip that |