diff options
author | Claudio Carvalho <cclaudio@linux.vnet.ibm.com> | 2016-09-28 05:01:07 -0300 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2016-10-10 15:26:43 +1100 |
commit | fab5418b256817e2695aa653d4840bfa5b5be53b (patch) | |
tree | b01af002f2bbd64dc78df626511ca1151f3e8729 /Makefile.main | |
parent | 154e85cc937d5cf6b3c50328805e2de7ea56381c (diff) | |
download | skiboot-fab5418b256817e2695aa653d4840bfa5b5be53b.zip skiboot-fab5418b256817e2695aa653d4840bfa5b5be53b.tar.gz skiboot-fab5418b256817e2695aa653d4840bfa5b5be53b.tar.bz2 |
libstb: add required container header structures
The full container header layout will be released soon either as
a separate github project or as part of hostboot.
This adds the secure boot header structures required by skiboot,
and also implements some helper routines related to containers.
Signed-off-by: Claudio Carvalho <cclaudio@linux.vnet.ibm.com>
[stewart@linux.vnet.ibm.com: Add unit test, print utility, use zero length
arrays to ensure sizeof() works correctly, add parsing function]
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'Makefile.main')
-rw-r--r-- | Makefile.main | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.main b/Makefile.main index ac74e46..86a54be 100644 --- a/Makefile.main +++ b/Makefile.main @@ -152,6 +152,7 @@ include $(SRC)/libpore/Makefile.inc include $(SRC)/libc/Makefile.inc include $(SRC)/ccan/Makefile.inc include $(SRC)/$(DEVSRC)/Makefile.inc +include $(SRC)/libstb/Makefile.inc # hack for travis-ci and coverity gard: @@ -165,7 +166,7 @@ pflash-coverity: all: $(SUBDIRS) $(TARGET).lid $(TARGET).lid.xz $(TARGET).map extract-gcov -OBJS := $(ASM) $(CORE) $(HW) $(PLATFORMS) $(LIBFDT) $(LIBFLASH) +OBJS := $(ASM) $(CORE) $(HW) $(PLATFORMS) $(LIBFDT) $(LIBFLASH) $(LIBSTB) ifeq ($(PORE),1) OBJS += $(LIBPORE) endif |