diff options
author | John Arbuckle <programmingkidx@gmail.com> | 2021-08-31 12:50:20 -0400 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2021-09-15 15:54:02 +0200 |
commit | cd946e5c68fd033455c91ea6b16881022886efbb (patch) | |
tree | 0e23aac592514da0d78acb9b0a29ed336aabe2de /configure | |
parent | 68857f13aa0d74e6ad93dc0224fb070fcba2b936 (diff) |
configure: add missing pc-bios/qemu_vga.ndrv symlink in build tree
Ensure that a link to pc-bios/qemu_vga.ndrv is added to the build tree,
otherwise the optional MacOS client driver will not be loaded by OpenBIOS
when launching QEMU directly from the build directory.
Signed-off-by: John Arbuckle <programmingkidx@gmail.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20210831165020.84855-1-programmingkidx@gmail.com>
[lv: commit message rewording as suggested by Mark]
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -5052,7 +5052,9 @@ for bios_file in \ $source_path/pc-bios/openbios-* \ $source_path/pc-bios/u-boot.* \ $source_path/pc-bios/edk2-*.fd.bz2 \ - $source_path/pc-bios/palcode-* + $source_path/pc-bios/palcode-* \ + $source_path/pc-bios/qemu_vga.ndrv + do LINKS="$LINKS pc-bios/$(basename $bios_file)" done |