From ca23f860d1d5ed83cfa5eece8911d26a593b2f3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Stehl=C3=A9?= Date: Fri, 9 Jan 2026 17:38:15 +0100 Subject: [PATCH] package/xen: xen tools need coreutils stat at runtime MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Xen tools scripts need the stat program from coreutils to work correctly, and not the one from busybox. One such example is the /etc/xen/scripts/locking.sh script, which will cause timeouts for operations such as "xl block-attach", or when starting a DomU with a disk. Add the dependency on coreutils to fix this. Signed-off-by: Vincent Stehlé Cc: Alistair Francis Signed-off-by: Julien Olivain --- package/xen/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/xen/Config.in b/package/xen/Config.in index 70a06f3cbf..e8168ca8c8 100644 --- a/package/xen/Config.in +++ b/package/xen/Config.in @@ -35,6 +35,7 @@ config BR2_PACKAGE_XEN_TOOLS 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 + select BR2_PACKAGE_COREUTILS # runtime (stat) help The Xen tools can be accessed by the xl command.