diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2021-06-02 11:35:27 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2021-06-07 14:42:47 +0100 |
commit | 7bb17a9263665c7cb0b93e6889e66bb62b9f71c1 (patch) | |
tree | b8f2d68561ac8d79e88d814d2c92d23f2da20af8 /tests/vm/Makefile.include | |
parent | e2d301780953dea5f0065bcfccf261c2bf3f7e98 (diff) | |
download | qemu-7bb17a9263665c7cb0b93e6889e66bb62b9f71c1.zip qemu-7bb17a9263665c7cb0b93e6889e66bb62b9f71c1.tar.gz qemu-7bb17a9263665c7cb0b93e6889e66bb62b9f71c1.tar.bz2 |
tests/vm: expose --source-path to scripts to find extra files
Currently the centos8 image expects to run an in-src build to find the
kick starter file. Fix this.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20210602103527.32021-1-alex.bennee@linaro.org>
Diffstat (limited to 'tests/vm/Makefile.include')
-rw-r--r-- | tests/vm/Makefile.include | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/vm/Makefile.include b/tests/vm/Makefile.include index e94d95e..f3a3a1c 100644 --- a/tests/vm/Makefile.include +++ b/tests/vm/Makefile.include @@ -84,6 +84,7 @@ $(IMAGES_DIR)/%.img: $(SRC_PATH)/tests/vm/% \ $(if $(QEMU_LOCAL),--build-path $(BUILD_DIR)) \ $(if $(EFI_AARCH64),--efi-aarch64 $(EFI_AARCH64)) \ $(if $(LOG_CONSOLE),--log-console) \ + --source-path $(SRC_PATH) \ --image "$@" \ --force \ --build-image $@, \ |