From bf18fd4cd183eab2e91b91d275fc62e2707b9182 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Stehl=C3=A9?= Date: Sun, 26 Jan 2025 18:34:01 +0100 Subject: [PATCH] package/xen: xen tools needs bash at runtime MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When the Xen tools are built, a number of init scripts are installed to the target. Some of those Xen scripts require bash to run: - /etc/init.d/S50xencommons - /etc/init.d/S50xen-watchdog - /etc/init.d/S60xendomains - /etc/xen/scripts/launch-xenstore - /usr/lib/xen/bin/xendomains Make sure to select bash when the Xen tools are selected (we need to select "busybox show others" for that, too). Suggested-by: Julien Olivain Signed-off-by: Vincent Stehlé Cc: Alistair Francis Signed-off-by: Julien Olivain --- package/xen/Config.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/xen/Config.in b/package/xen/Config.in index 577066666d..70a06f3cbf 100644 --- a/package/xen/Config.in +++ b/package/xen/Config.in @@ -33,6 +33,8 @@ config BR2_PACKAGE_XEN_TOOLS select BR2_PACKAGE_UTIL_LINUX_LIBUUID select BR2_PACKAGE_YAJL select BR2_PACKAGE_ARGP_STANDALONE if !BR2_TOOLCHAIN_USES_GLIBC + select BR2_PACKAGE_BASH # runtime (scripts) + select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS if BR2_PACKAGE_BUSYBOX # bash help The Xen tools can be accessed by the xl command.