sbsiglist: Add utility for creating EFI_SIGNATURE_LISTs
KEK, db and dbx updates need to be written as EFI_SIGNATURE_LIST structures, so create a simple tool to create them. Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com>
This commit is contained in:
parent
0ca483d5d0
commit
591847bb79
3 changed files with 295 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
|
||||
AM_CFLAGS = -Wall -Wextra --std=gnu99
|
||||
|
||||
bin_PROGRAMS = sbsign sbverify sbattach sbvarsign
|
||||
bin_PROGRAMS = sbsign sbverify sbattach sbvarsign sbsiglist
|
||||
|
||||
coff_headers = coff/external.h coff/pe.h coff/i386.h coff/x86_64.h
|
||||
|
||||
|
@ -26,6 +26,10 @@ sbvarsign_LDADD = $(common_LDADD) $(uuid_LIBS)
|
|||
sbvarsign_CPPFLAGS = $(EFI_CPPFLAGS)
|
||||
sbvarsign_CFLAGS = $(AM_CFLAGS) $(uuid_CFLAGS) $(common_CFLAGS)
|
||||
|
||||
sbsiglist_SOURCES = sbsiglist.c $(common_SOURCES)
|
||||
sbsiglist_LDADD = $(common_LDADD) $(uuid_LIBS)
|
||||
sbsiglist_CPPFLAGS = $(EFI_CPPFLAGS)
|
||||
sbsiglist_CFLAGS = $(AM_CFLAGS) $(common_CFLAGS)
|
||||
|
||||
man1_MANS = docs/sbsign.1 docs/sbverify.1 docs/sbattach.1
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue