mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-06-15 05:20:01 +00:00
Fix sbsign command usage
The previous make target was passing all of the target's prerequisites as boot images to sbsign, causing it to fail.
This commit is contained in:
parent
9c64b6278c
commit
16f4f47f5c
5
Makefile
5
Makefile
@ -235,7 +235,10 @@ endif
|
||||
|
||||
ifneq ($(origin ENABLE_SBSIGN),undefined)
|
||||
%.efi.signed: %.efi shim.key shim.crt
|
||||
$(SBSIGN) --key shim.key --cert shim.crt --output $@ $<
|
||||
@$(SBSIGN) \
|
||||
--key certdb/shim.key \
|
||||
--cert certdb/shim.crt \
|
||||
--output $@ $<
|
||||
else
|
||||
%.efi.signed: %.efi certdb/secmod.db
|
||||
$(PESIGN) -n certdb -i $< -c "shim" -s -o $@ -f
|
||||
|
Loading…
Reference in New Issue
Block a user