From 5d11769812f09c73d05e9fe550bbe351929f66d8 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Sun, 2 Feb 2025 18:28:36 -0700 Subject: meta-xilinx-core: qemu-multiarch-helper: Add -machine-path help Signed-off-by: Mark Hatle --- .../recipes-devtools/qemu/files/qemu-system-aarch64-multiarch | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/meta-xilinx-core/recipes-devtools/qemu/files/qemu-system-aarch64-multiarch b/meta-xilinx-core/recipes-devtools/qemu/files/qemu-system-aarch64-multiarch index f1a0c7d3..00fc41c3 100644 --- a/meta-xilinx-core/recipes-devtools/qemu/files/qemu-system-aarch64-multiarch +++ b/meta-xilinx-core/recipes-devtools/qemu/files/qemu-system-aarch64-multiarch @@ -58,8 +58,8 @@ if PMU_args and PLM_args: help_options = ['-h', '-help', '--help'] def help(status): print("AMD FPGA QEMU multiarch wrapper\nVersion 2025.1\n\nUsage:") - print(f" {sys.argv[0]} [-pmu-args ]") - print(f" {sys.argv[0]} [-plm-args ]\n") + print(f" {sys.argv[0]} [-pmu-args ] [-machine-path ]") + print(f" {sys.argv[0]} [-plm-args ] [-machine-path ]\n") if status == 0: print(f"\n") if set(PMU_args).intersection(set(help_options)): @@ -78,6 +78,8 @@ def help(status): apu_args_s = ' '.join(APU_args) help_cmd = f'{binpath}/qemu-system-aarch64 {apu_args_s}' + print(f" -machine-path - Optional path to use for multiarch files. This path must be less then about 100 characters.\n Note: if specified caller is responsible for cleaning up the directory on exist\n") + print(f"{help_cmd}\n") process = subprocess.Popen(help_cmd, shell=True, stderr=subprocess.PIPE) status = process.wait() -- cgit v1.2.3-54-g00ecf