diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2022-01-19 19:29:24 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-19 19:29:24 -0300 |
commit | 63073229b904c0c662cb75116a8c4dfaf03da1f4 (patch) | |
tree | 0977606ae3a29bfc6844c0d285a1b23ddc446abb /classes | |
parent | 1041425ee15140674d3fd721c6c85c5f59f5728b (diff) | |
parent | 9fa3004dab003fd616fea89c5a0baf6c48ce5a72 (diff) | |
download | meta-freescale-63073229b904c0c662cb75116a8c4dfaf03da1f4.tar.gz |
Merge pull request #954 from thochstein/recipes-bsp
u-boot-imx and recipes-bsp for 5.10.72-2.2.0
Diffstat (limited to 'classes')
-rw-r--r-- | classes/uuu_bootloader_tag.bbclass | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/classes/uuu_bootloader_tag.bbclass b/classes/uuu_bootloader_tag.bbclass new file mode 100644 index 00000000..fb6acd72 --- /dev/null +++ b/classes/uuu_bootloader_tag.bbclass | |||
@@ -0,0 +1,11 @@ | |||
1 | # Append a tag to the bootloader image used in the SD card image. The tag | ||
2 | # contains the size of the bootloader image so UUU can easily find the end of | ||
3 | # the bootloader in the SD card image. | ||
4 | do_deploy:append() { | ||
5 | if [ "${UUU_BOOTLOADER}" != "" ]; then | ||
6 | cp ${DEPLOYDIR}/${UUU_BOOTLOADER} ${DEPLOYDIR}/${UUU_BOOTLOADER_TAGGED} | ||
7 | ln -sf ${UUU_BOOTLOADER_TAGGED} ${DEPLOYDIR}/${UUU_BOOTLOADER} | ||
8 | stat -L -cUUUBURNXXOEUZX7+A-XY5601QQWWZ%sEND ${DEPLOYDIR}/${UUU_BOOTLOADER} \ | ||
9 | >> ${DEPLOYDIR}/${UUU_BOOTLOADER} | ||
10 | fi | ||
11 | } | ||