diff options
author | Yang Zhong <yang.zhong@intel.com> | 2019-02-02 15:24:50 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-02-05 16:50:20 +0100 |
commit | 034c344e30137427c9a61fe57b3163ca50ade441 (patch) | |
tree | 98874c1b1c9f4e3e8cd687f3c3143ebd2f921067 | |
parent | 31be0a43b997c552376ab7639f3e0e7acef84984 (diff) |
hw/cris/Makefile.objs: Create CONFIG_* for cris
Add the new configs to default-configs/cris-sofmmu.mak.
Signed-off-by: Yang Zhong <yang.zhong@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20190202072456.6468-22-yang.zhong@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | default-configs/cris-softmmu.mak | 1 | ||||
-rw-r--r-- | hw/cris/Makefile.objs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/default-configs/cris-softmmu.mak b/default-configs/cris-softmmu.mak index d970d50158..a637c4b4bf 100644 --- a/default-configs/cris-softmmu.mak +++ b/default-configs/cris-softmmu.mak @@ -4,3 +4,4 @@ CONFIG_ETRAXFS=y CONFIG_NAND=y CONFIG_PTIMER=y CONFIG_PFLASH_CFI02=y +CONFIG_AXIS=y diff --git a/hw/cris/Makefile.objs b/hw/cris/Makefile.objs index 7624173f77..a4a27b3a13 100644 --- a/hw/cris/Makefile.objs +++ b/hw/cris/Makefile.objs @@ -1,2 +1,2 @@ obj-y += boot.o -obj-y += axis_dev88.o +obj-$(CONFIG_AXIS) += axis_dev88.o |