[oe-commits] [openembedded-core] 16/19: packagegroup-core-lsb/-full-cmdline: add bzip2

git at git.openembedded.org git at git.openembedded.org
Fri Oct 12 07:47:06 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit ca69d793e4b987bd5202e1359ff82c515ad65a5a
Author: Chen Qi <Qi.Chen at windriver.com>
AuthorDate: Fri Oct 12 10:24:51 2018 +0800

    packagegroup-core-lsb/-full-cmdline: add bzip2
    
    We are having the following error when using 'tar' from tar
    recipe to decompress .tar.bz2 files.
    
      tar (child): bzip2: Cannot exec: No such file or directory
      tar (child): Error is not recoverable: exiting now
      tar: Child returned status 2
      tar: Error is not recoverable: exiting now
    
    The tar package is introduced by these two packagegroups into image.
    
    >From the README file from tar's source codes:
    
      """
      ** gzip and bzip2.
    
      GNU tar uses the gzip and bzip2 programs to read and write compressed
      archives.  If you don't have these programs already, you need to
      install them.
      """
    
    So we'd better cluster gzip and bzip2 with tar. These two packagegroups
    already get 'gzip', so we also add 'bzip2'.
    
    Signed-off-by: Chen Qi <Qi.Chen at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-extended/packagegroups/packagegroup-core-full-cmdline.bb | 1 +
 meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb          | 1 +
 2 files changed, 2 insertions(+)

diff --git a/meta/recipes-extended/packagegroups/packagegroup-core-full-cmdline.bb b/meta/recipes-extended/packagegroups/packagegroup-core-full-cmdline.bb
index e861688..ffa8388 100644
--- a/meta/recipes-extended/packagegroups/packagegroup-core-full-cmdline.bb
+++ b/meta/recipes-extended/packagegroups/packagegroup-core-full-cmdline.bb
@@ -125,6 +125,7 @@ RDEPENDS_packagegroup-core-full-cmdline-initscripts = "\
     "
 
 RDEPENDS_packagegroup-core-full-cmdline-multiuser = "\
+    bzip2 \
     cracklib \
     gzip \
     shadow \
diff --git a/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb b/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb
index 933864a..6631547 100644
--- a/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb
+++ b/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb
@@ -136,6 +136,7 @@ RDEPENDS_packagegroup-core-lsb-core = "\
     bc \
     binutils \
     binutils-symlinks \
+    bzip2 \
     coreutils \
     cpio \
     cronie \

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list