summaryrefslogtreecommitdiff
path: root/qemu-config.c
diff options
context:
space:
mode:
authorAlexander Graf <agraf@suse.de>2012-06-20 20:46:22 +0200
committerAlexander Graf <agraf@suse.de>2012-06-24 01:04:51 +0200
commitcaedc737d27dd697641cb75ef6c5c27562c8044a (patch)
tree59202f2fbf419a920b1677989633fec89c951cb5 /qemu-config.c
parent45e9dfb2fdd6ab7b60f823a1ee5ed2f2722beaf6 (diff)
downloadqemu-caedc737d27dd697641cb75ef6c5c27562c8044a.tar.gz
PPC: e500: allow users to set the /compatible property via -machine
Device trees usually have a node /compatible, which indicate which machine type we're looking at. For quick prototyping, it can be very useful to change the contents of that node via the command line. Thus, introduce a new option to -machine called dt_compatible, which when set changes the /compatible contents to its value. Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'qemu-config.c')
-rw-r--r--qemu-config.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/qemu-config.c b/qemu-config.c
index 2cd27262e9..5c3296b8c6 100644
--- a/qemu-config.c
+++ b/qemu-config.c
@@ -591,6 +591,10 @@ static QemuOptsList qemu_machine_opts = {
.name = "phandle_start",
.type = QEMU_OPT_STRING,
.help = "The first phandle ID we may generate dynamically",
+ }, {
+ .name = "dt_compatible",
+ .type = QEMU_OPT_STRING,
+ .help = "Overrides the \"compatible\" property of the dt root node",
},
{ /* End of list */ }
},