mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

Add a new test to verify signing FIT images. Also includes testing for the newly introduced FIT_SIGN_INDIVIDUAL, UBOOT_MKIMAGE, UBOOT_MKIMAGE_SIGN, and UBOOT_MKIMAGE_SIGN_ARGS variables. (From OE-Core rev: 3c054762278fd8c5dd827dbac15f4fa066e6c19e) Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
437 B
Plaintext
20 lines
437 B
Plaintext
# Class to test UBOOT_MKIMAGE and UBOOT_MKIMAGE_SIGN
|
|
# (in conjunction with kernel-fitimage.bbclass)
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
UBOOT_MKIMAGE = "test_mkimage_wrapper"
|
|
UBOOT_MKIMAGE_SIGN = "test_mkimage_signing_wrapper"
|
|
|
|
test_mkimage_wrapper() {
|
|
echo "### uboot-mkimage wrapper message"
|
|
uboot-mkimage "$@"
|
|
}
|
|
|
|
test_mkimage_signing_wrapper() {
|
|
echo "### uboot-mkimage signing wrapper message"
|
|
uboot-mkimage "$@"
|
|
}
|
|
|