diff options
author | Alexandru Tiniuc <tiniuc.alexandru@gmail.com> | 2017-09-01 16:11:22 +0100 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2017-09-05 13:27:35 -0400 |
commit | a5343f76b4afac7ceaa329d9dd91dc7ffb75c6be (patch) | |
tree | cd0307b4a44f0a783131e94e2d76538d2f521ef1 | |
parent | 90c1046b58c50f127ea711d83874a1dc4b68f7ed (diff) | |
download | meta-virtualization-a5343f76b4afac7ceaa329d9dd91dc7ffb75c6be.tar.gz |
singularity: Added dependency to e2fsprogs-mke2fs
While the recipe was functional under an image based on core-image-
full-cmdline, when tested with core-image-minimal runtime issues
appeared: Singularity was unable to create a filesystem within the
container. This change fixes this issue.
Signed-off-by: Alexandru Tiniuc <tiniuc.alexandru@gmail.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | recipes-containers/singularity/singularity_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-containers/singularity/singularity_git.bb b/recipes-containers/singularity/singularity_git.bb index 8b977400..6fee8f35 100644 --- a/recipes-containers/singularity/singularity_git.bb +++ b/recipes-containers/singularity/singularity_git.bb | |||
@@ -2,7 +2,7 @@ | |||
2 | # Singularity build / config: read up on the dev-so test for more info) | 2 | # Singularity build / config: read up on the dev-so test for more info) |
3 | INSANE_SKIP_${PN} += "dev-so" | 3 | INSANE_SKIP_${PN} += "dev-so" |
4 | 4 | ||
5 | RDEPENDS_${PN} += "glibc python3 ca-certificates openssl bash" | 5 | RDEPENDS_${PN} += "glibc python3 ca-certificates openssl bash e2fsprogs-mke2fs" |
6 | # Singularity expects to find python3 under the name python, therefore both | 6 | # Singularity expects to find python3 under the name python, therefore both |
7 | # cannot be installed at the same time. | 7 | # cannot be installed at the same time. |
8 | RCONFLICTS_${PN} = "python" | 8 | RCONFLICTS_${PN} = "python" |