summaryrefslogtreecommitdiffstats
path: root/meta/classes/uboot-sign.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-28 23:28:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-02 15:44:10 +0100
commitbb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch)
tree76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/classes/uboot-sign.bbclass
parentfcc456ee4b8f619134abb4649db53c638074082c (diff)
downloadpoky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz
Convert to new override syntax
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/uboot-sign.bbclass')
-rw-r--r--meta/classes/uboot-sign.bbclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/classes/uboot-sign.bbclass b/meta/classes/uboot-sign.bbclass
index 9671cf76a5..fdf153248c 100644
--- a/meta/classes/uboot-sign.bbclass
+++ b/meta/classes/uboot-sign.bbclass
@@ -19,7 +19,7 @@
19# The tasks sequence is set as below, using DEPLOY_IMAGE_DIR as common place to 19# The tasks sequence is set as below, using DEPLOY_IMAGE_DIR as common place to
20# treat the device tree blob: 20# treat the device tree blob:
21# 21#
22# * u-boot:do_install_append 22# * u-boot:do_install:append
23# Install UBOOT_DTB_BINARY to datadir, so that kernel can use it for 23# Install UBOOT_DTB_BINARY to datadir, so that kernel can use it for
24# signing, and kernel will deploy UBOOT_DTB_BINARY after signs it. 24# signing, and kernel will deploy UBOOT_DTB_BINARY after signs it.
25# 25#
@@ -227,7 +227,7 @@ install_spl_helper() {
227 touch ${D}/${datadir}/${UBOOT_ITS_IMAGE} 227 touch ${D}/${datadir}/${UBOOT_ITS_IMAGE}
228} 228}
229 229
230do_install_append() { 230do_install:append() {
231 if [ "${PN}" = "${UBOOT_PN}" ]; then 231 if [ "${PN}" = "${UBOOT_PN}" ]; then
232 if [ -n "${UBOOT_CONFIG}" ]; then 232 if [ -n "${UBOOT_CONFIG}" ]; then
233 for config in ${UBOOT_MACHINE}; do 233 for config in ${UBOOT_MACHINE}; do
@@ -416,7 +416,7 @@ do_uboot_assemble_fitimage() {
416 416
417addtask uboot_assemble_fitimage before do_deploy after do_compile 417addtask uboot_assemble_fitimage before do_deploy after do_compile
418 418
419do_deploy_prepend_pn-${UBOOT_PN}() { 419do_deploy:prepend:pn-${UBOOT_PN}() {
420 if [ "${UBOOT_SIGN_ENABLE}" = "1" -a -n "${UBOOT_DTB_BINARY}" ] ; then 420 if [ "${UBOOT_SIGN_ENABLE}" = "1" -a -n "${UBOOT_DTB_BINARY}" ] ; then
421 concat_dtb 421 concat_dtb
422 fi 422 fi
@@ -446,7 +446,7 @@ do_deploy_prepend_pn-${UBOOT_PN}() {
446 446
447} 447}
448 448
449do_deploy_append_pn-${UBOOT_PN}() { 449do_deploy:append:pn-${UBOOT_PN}() {
450 # If we're creating a u-boot fitImage, point u-boot.bin 450 # If we're creating a u-boot fitImage, point u-boot.bin
451 # symlink since it might get used by image recipes 451 # symlink since it might get used by image recipes
452 if [ "${UBOOT_FITIMAGE_ENABLE}" = "1" ] ; then 452 if [ "${UBOOT_FITIMAGE_ENABLE}" = "1" ] ; then