summaryrefslogtreecommitdiffstats
path: root/recipes-core
diff options
context:
space:
mode:
authorSai Hari Chandana Kalluri <chandana.kalluri@xilinx.com>2020-05-01 21:20:37 -0700
committerBruce Ashfield <bruce.ashfield@gmail.com>2020-05-02 11:09:32 -0400
commit1c32ed6a9a73fcf174205e5790443a5fb32f9123 (patch)
tree80d62e0e795fe753e3adfb3c1b3789914cb8bfde /recipes-core
parent0bf60a7198cbb4abdd2bee24c255569f920d5e7a (diff)
downloadmeta-virtualization-1c32ed6a9a73fcf174205e5790443a5fb32f9123.tar.gz
busybox_vmsep.inc: busybox changes for runx support
Runx needs busybox static binary that contains symlinks to mount. However, in zeus, busybox by default uses BUSYBOX_SPLIT_SUID = 1. With the variable set, busybox binary gets split into two busybox.suid and busybox.nosuid busybox.suid contains links to mount while runx recipes pulls in busybox.nosuid. When vmsep is enabled, set BUSYBOX_SPLIT_SUID = 0 so that an unstripped busybox binary is generated which contains all the required links including mount. Signed-off-by: Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-core')
-rw-r--r--recipes-core/busybox/busybox_vmsep.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/recipes-core/busybox/busybox_vmsep.inc b/recipes-core/busybox/busybox_vmsep.inc
index b70a065c..d4b1e6cc 100644
--- a/recipes-core/busybox/busybox_vmsep.inc
+++ b/recipes-core/busybox/busybox_vmsep.inc
@@ -6,3 +6,4 @@ SRC_URI += " \
6# we do this to get the target binary available to recipes that 6# we do this to get the target binary available to recipes that
7# depend on busybox 7# depend on busybox
8SYSROOT_DIRS += "/bin" 8SYSROOT_DIRS += "/bin"
9BUSYBOX_SPLIT_SUID = "0"