aboutsummaryrefslogtreecommitdiff
path: root/hw/Makefile.inc
diff options
context:
space:
mode:
authorAlistair Popple <alistair@popple.id.au>2014-09-09 15:57:27 +1000
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2014-10-01 14:23:06 +1000
commitf671e7f9decd909afa784f974bbceb07189f38f4 (patch)
tree0480bd455477c242eca06ca49abd284338117c10 /hw/Makefile.inc
parent69a833b6e2fc1636e25539ce58bde6e72f1c3bec (diff)
downloadskiboot-f671e7f9decd909afa784f974bbceb07189f38f4.zip
skiboot-f671e7f9decd909afa784f974bbceb07189f38f4.tar.gz
skiboot-f671e7f9decd909afa784f974bbceb07189f38f4.tar.bz2
ipmi: Refactored ipmi layer to use generic backend
The initial implementation of the ipmi stack was still tightly coupled with the backend (in this case bt). This patch refactors the ipmi code to use a generic backend device. The core ipmi messaging functionality and the implementation of specific commands has also been split into different files. Signed-off-by: Alistair Popple <alistair@popple.id.au> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'hw/Makefile.inc')
-rw-r--r--hw/Makefile.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/Makefile.inc b/hw/Makefile.inc
index 320e33b..3f372b1 100644
--- a/hw/Makefile.inc
+++ b/hw/Makefile.inc
@@ -10,6 +10,6 @@ HW=hw/built-in.o
include $(SRC)/hw/fsp/Makefile.inc
include $(SRC)/hw/ec/Makefile.inc
include $(SRC)/hw/ast-bmc/Makefile.inc
+include $(SRC)/hw/ipmi/Makefile.inc
-$(HW): $(HW_OBJS:%=hw/%) $(FSP) $(EC) $(AST_BMC)
-
+$(HW): $(HW_OBJS:%=hw/%) $(FSP) $(EC) $(AST_BMC) $(IPMI)