diff --git a/stubs/Makefile.objs b/stubs/Makefile.objs index ca2197e6fb16f5a483e5aaef1a926a15efe922e6..7672c69a292848f0295a8fe89c48a438e59bbc1b 100644 --- a/stubs/Makefile.objs +++ b/stubs/Makefile.objs @@ -7,4 +7,5 @@ stub-obj-y += get-fd.o stub-obj-y += set-fd-handler.o stub-obj-y += reset.o stub-obj-y += vmstate.o +stub-obj-y += sysbus.o stub-obj-$(CONFIG_WIN32) += fd-register.o diff --git a/stubs/sysbus.c b/stubs/sysbus.c new file mode 100644 index 0000000000000000000000000000000000000000..e13496582b3a487d468f0c3fdc635fda9695bdcf --- /dev/null +++ b/stubs/sysbus.c @@ -0,0 +1,6 @@ +#include "hw/qdev-core.h" + +BusState *sysbus_get_default(void) +{ + return NULL; +}