aboutsummaryrefslogtreecommitdiff
path: root/platforms/Makefile.inc
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2015-07-03 13:49:16 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2015-07-03 17:09:44 +1000
commitef50b5f5ad2834996eabc7e10885659a1ef65196 (patch)
treeee96305dfa1f6254e6d212de9592ed243eda4380 /platforms/Makefile.inc
parent545c2d925d92ce0c0f50436596e5f6bb2cda8b81 (diff)
downloadskiboot-ef50b5f5ad2834996eabc7e10885659a1ef65196.zip
skiboot-ef50b5f5ad2834996eabc7e10885659a1ef65196.tar.gz
skiboot-ef50b5f5ad2834996eabc7e10885659a1ef65196.tar.bz2
plat/qemu: Add simple qemu platform
This adds support for running under qemu "powernv" platform, which is currently available via the qemu repository at: https://github.com/ozbenh/qemu branch "powernv" qemu can't yet create DT entries for ISA devices so we hard wire the UART and RTC devices in the device-tree like we do with other platforms. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'platforms/Makefile.inc')
-rw-r--r--platforms/Makefile.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/platforms/Makefile.inc b/platforms/Makefile.inc
index 12c82c8..90cd0f1 100644
--- a/platforms/Makefile.inc
+++ b/platforms/Makefile.inc
@@ -7,5 +7,6 @@ include $(SRC)/$(PLATDIR)/ibm-fsp/Makefile.inc
include $(SRC)/$(PLATDIR)/rhesus/Makefile.inc
include $(SRC)/$(PLATDIR)/astbmc/Makefile.inc
include $(SRC)/$(PLATDIR)/mambo/Makefile.inc
+include $(SRC)/$(PLATDIR)/qemu/Makefile.inc
-$(PLATFORMS): $(IBM_FSP) $(RHESUS) $(ASTBMC) $(MAMBO)
+$(PLATFORMS): $(IBM_FSP) $(RHESUS) $(ASTBMC) $(MAMBO) $(QEMU)