aboutsummaryrefslogtreecommitdiff
path: root/system/device_tree-stub.c
diff options
context:
space:
mode:
Diffstat (limited to 'system/device_tree-stub.c')
-rw-r--r--system/device_tree-stub.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/system/device_tree-stub.c b/system/device_tree-stub.c
new file mode 100644
index 0000000000..bddda6fa37
--- /dev/null
+++ b/system/device_tree-stub.c
@@ -0,0 +1,10 @@
+#include "qemu/osdep.h"
+#include "qapi/error.h"
+#include "qapi/qapi-commands-machine.h"
+
+#ifdef CONFIG_FDT
+void qmp_dumpdtb(const char *filename, Error **errp)
+{
+ error_setg(errp, "This machine doesn't have a FDT");
+}
+#endif