blob: 7c98d7b71e41171f3caa8a4585ae22c9c2d426e7 [file] [log] [blame]
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001# Class to test UBOOT_MKIMAGE and UBOOT_MKIMAGE_SIGN
2# (in conjunction with kernel-fitimage.bbclass)
3#
4# SPDX-License-Identifier: MIT
5#
6
7UBOOT_MKIMAGE = "test_mkimage_wrapper"
8UBOOT_MKIMAGE_SIGN = "test_mkimage_signing_wrapper"
9
10test_mkimage_wrapper() {
11 echo "### uboot-mkimage wrapper message"
12 uboot-mkimage "$@"
13}
14
15test_mkimage_signing_wrapper() {
16 echo "### uboot-mkimage signing wrapper message"
17 uboot-mkimage "$@"
18}
19