diff options
author | Alexander Bulekov <alxndr@bu.edu> | 2020-05-11 23:01:30 -0400 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2020-06-05 09:54:48 +0100 |
commit | 7a071a96d3ef48095892c1d1075c0181c8940058 (patch) | |
tree | fa65a01c0d7025d610749f54e6102e6c6ef664de /include | |
parent | 769335ecb1e8fd9c4317bdff7cfd0f84af7ab2f9 (diff) | |
download | qemu-7a071a96d3ef48095892c1d1075c0181c8940058.zip qemu-7a071a96d3ef48095892c1d1075c0181c8940058.tar.gz qemu-7a071a96d3ef48095892c1d1075c0181c8940058.tar.bz2 |
fuzz: add datadir for oss-fuzz compatability
This allows us to keep pc-bios in executable_dir/pc-bios, rather than
executable_dir/../pc-bios, which is incompatible with oss-fuzz' file
structure.
Signed-off-by: Alexander Bulekov <alxndr@bu.edu>
Reviewed-by: Darren Kenny <darren.kenny@oracle.com>
Message-id: 20200512030133.29896-2-alxndr@bu.edu
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/sysemu/sysemu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h index 26c0c80..3efccdb 100644 --- a/include/sysemu/sysemu.h +++ b/include/sysemu/sysemu.h @@ -15,6 +15,8 @@ extern const char *qemu_name; extern QemuUUID qemu_uuid; extern bool qemu_uuid_set; +void qemu_add_data_dir(const char *path); + void qemu_add_exit_notifier(Notifier *notify); void qemu_remove_exit_notifier(Notifier *notify); |