From c6b9cd9a11fe7fec6bfec2ddbd42c2851dba0011 Mon Sep 17 00:00:00 2001 From: Christian Stewart Date: Tue, 10 May 2022 17:40:06 -0700 Subject: [PATCH] package/qemu: add symlink to target qemu-system Scripts which use the buildroot host system to execute a qemu for the compiled buildroot output can use the symlink at host/bin/qemu-system to execute the appropriate qemu-system for the target, for example qemu-system-riscv64. Signed-off-by: Christian Stewart Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/qemu/qemu.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk index 9c2b819174..1bcffc2340 100644 --- a/package/qemu/qemu.mk +++ b/package/qemu/qemu.mk @@ -400,6 +400,12 @@ define HOST_QEMU_INSTALL_CMDS $(HOST_MAKE_ENV) $(MAKE) -C $(@D) install endef +# install symlink to qemu-system +define HOST_QEMU_POST_INSTALL_SYMLINK + ln -sf ./qemu-system-$(HOST_QEMU_ARCH) $(HOST_DIR)/bin/qemu-system +endef +HOST_QEMU_POST_INSTALL_HOOKS += HOST_QEMU_POST_INSTALL_SYMLINK + $(eval $(host-generic-package)) # variable used by other packages