xref: /OK3568_Linux_fs/yocto/poky/meta-selftest/classes/test-mkimage-wrapper.bbclass (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1# 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
20