diff options
author | Claudio Carvalho <cclaudio@linux.vnet.ibm.com> | 2016-09-28 05:01:10 -0300 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2016-10-10 15:29:35 +1100 |
commit | 36a91394b62c379b2420bc1877b7a1557b4f63df (patch) | |
tree | 9a242ce6e459efa61694b4dbf7b561e8e541e68e /libstb/Makefile.inc | |
parent | b64d937194e8a51c39c3a32e08ebebc4ae4bf4f5 (diff) | |
download | skiboot-36a91394b62c379b2420bc1877b7a1557b4f63df.zip skiboot-36a91394b62c379b2420bc1877b7a1557b4f63df.tar.gz skiboot-36a91394b62c379b2420bc1877b7a1557b4f63df.tar.bz2 |
libstb/drivers: add romcode driver
This adds a driver for the ROM verification code. The driver is compatible
with 'ibm,secureboot-v1'.
The presense of a verification code in the platform is indicated by the
presence of the ibm,secureboot node in the device tree.
The ibm,secureboot node is documented in 'doc/device-tree/ibm,secureboot.rst'
Signed-off-by: Claudio Carvalho <cclaudio@linux.vnet.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'libstb/Makefile.inc')
-rw-r--r-- | libstb/Makefile.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libstb/Makefile.inc b/libstb/Makefile.inc index 8b057de..b4463cf 100644 --- a/libstb/Makefile.inc +++ b/libstb/Makefile.inc @@ -8,4 +8,6 @@ LIBSTB_SRCS = container.c rom.c tpm_chip.c LIBSTB_OBJS = $(LIBSTB_SRCS:%.c=%.o) LIBSTB = $(LIBSTB_DIR)/built-in.o -$(LIBSTB): $(LIBSTB_OBJS:%=$(LIBSTB_DIR)/%) +include $(SRC)/$(LIBSTB_DIR)/drivers/Makefile.inc + +$(LIBSTB): $(LIBSTB_OBJS:%=$(LIBSTB_DIR)/%) $(DRIVERS) |