-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools arch x86: Add Intel SDSi provisiong tool
Add tool for key certificate and activation payload provisioning on Intel CPUs supporting Software Defined Silicon (SDSi). Signed-off-by: David E. Box <david.e.box@linux.intel.com> Link: https://lore.kernel.org/r/20220225012457.1661574-1-david.e.box@linux.intel.com Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
- Loading branch information
David E. Box
authored and
Hans de Goede
committed
Mar 2, 2022
1 parent
faabb26
commit f6d92cf
Showing
3 changed files
with
580 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
# Makefile for Intel Software Defined Silicon provisioning tool | ||
|
||
intel_sdsi: intel_sdsi.c | ||
|
||
CFLAGS = -Wextra | ||
|
||
BINDIR ?= /usr/sbin | ||
|
||
override CFLAGS += -O2 -Wall | ||
|
||
%: %.c | ||
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) | ||
|
||
.PHONY : clean | ||
clean : | ||
@rm -f intel_sdsi | ||
|
||
install : intel_sdsi | ||
install -d $(DESTDIR)$(BINDIR) | ||
install -m 755 -p intel_sdsi $(DESTDIR)$(BINDIR)/intel_sdsi |
Oops, something went wrong.