diff options
author | Andreas Färber <afaerber@suse.de> | 2013-01-20 11:43:30 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-02-01 01:35:21 +0100 |
commit | 88e28512efd8d36476e50a78acb1dca8b41a3cf1 (patch) | |
tree | 817090e797171454bd9f3390c054267298b555b8 /target-unicore32/Makefile.objs | |
parent | 6b2578d678497dbce44ed7999d269fc973ae6e8f (diff) | |
download | qemu-88e28512efd8d36476e50a78acb1dca8b41a3cf1.tar.gz qemu-88e28512efd8d36476e50a78acb1dca8b41a3cf1.tar.bz2 qemu-88e28512efd8d36476e50a78acb1dca8b41a3cf1.zip |
target-unicore32: Mark as unmigratable
CPU_SAVE_VERSION 2 was bogus as both save and load would just throw a
hw_error(). Therefore we can without problems suppress registration of
"cpu_common" VMState by dropping CPU_SAVE_VERSION define and provide an
unmigratable "cpu" VMStateDescription for UniCore32CPU at device level
instead, where we can attach this the QOM way.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'target-unicore32/Makefile.objs')
-rw-r--r-- | target-unicore32/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-unicore32/Makefile.objs b/target-unicore32/Makefile.objs index 8e143da937..6b41b1e9ef 100644 --- a/target-unicore32/Makefile.objs +++ b/target-unicore32/Makefile.objs @@ -1,4 +1,4 @@ obj-y += translate.o op_helper.o helper.o cpu.o obj-y += ucf64_helper.o -obj-$(CONFIG_SOFTMMU) += machine.o softmmu.o +obj-$(CONFIG_SOFTMMU) += softmmu.o |