image: use ucert to append signature
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
This commit is contained in:
parent
7a52ce3faf
commit
848b455d2e
1 changed files with 6 additions and 0 deletions
|
@ -309,6 +309,12 @@ metadata_json = \
|
||||||
|
|
||||||
define Build/append-metadata
|
define Build/append-metadata
|
||||||
$(if $(SUPPORTED_DEVICES),-echo $(call metadata_json,$(SUPPORTED_DEVICES)) | fwtool -I - $@)
|
$(if $(SUPPORTED_DEVICES),-echo $(call metadata_json,$(SUPPORTED_DEVICES)) | fwtool -I - $@)
|
||||||
|
[ -s "$(BUILD_KEY)" -a -s "$(BUILD_KEY).ucert" ] && { \
|
||||||
|
cp "$(BUILD_KEY).ucert" "$@.ucert" ;\
|
||||||
|
usign -S -m "$@" -s "$(BUILD_KEY)" -x "$@.sig" ;\
|
||||||
|
ucert -A -c "$@.ucert" -x "$@.sig" ;\
|
||||||
|
fwtool -S "$@.ucert" "$@" ;\
|
||||||
|
}
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/kernel2minor
|
define Build/kernel2minor
|
||||||
|
|
Loading…
Reference in a new issue