summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2019-07-01 11:49:36 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-27 18:05:18 +0100
commit4d63da3fad18264688debf0c3bce4b9d562c9d82 (patch)
treeec5a809a6f9cef8f85f4daf1855789e75ea2137b /meta
parenta51a3b1c82f80e8f7ff24c5090c21961640debf5 (diff)
downloadpoky-4d63da3fad18264688debf0c3bce4b9d562c9d82.tar.gz
uboot-sign.bbclass: Remove tab indentations in python code
Use 4 spaces to replace a tab. (From OE-Core rev: 2bf6098ac1cbbf7ed28522b7f7dce84c8341ce00) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/uboot-sign.bbclass20
1 files changed, 10 insertions, 10 deletions
diff --git a/meta/classes/uboot-sign.bbclass b/meta/classes/uboot-sign.bbclass
index 8ee904e7df..afaf46fe14 100644
--- a/meta/classes/uboot-sign.bbclass
+++ b/meta/classes/uboot-sign.bbclass
@@ -80,16 +80,16 @@ do_concat_dtb () {
80} 80}
81 81
82python () { 82python () {
83 uboot_pn = d.getVar('PREFERRED_PROVIDER_u-boot') or 'u-boot' 83 uboot_pn = d.getVar('PREFERRED_PROVIDER_u-boot') or 'u-boot'
84 if d.getVar('UBOOT_SIGN_ENABLE') == '1' and d.getVar('PN') == uboot_pn: 84 if d.getVar('UBOOT_SIGN_ENABLE') == '1' and d.getVar('PN') == uboot_pn:
85 kernel_pn = d.getVar('PREFERRED_PROVIDER_virtual/kernel') 85 kernel_pn = d.getVar('PREFERRED_PROVIDER_virtual/kernel')
86 86
87 # u-boot.dtb and u-boot-nodtb.bin are deployed _before_ do_deploy 87 # u-boot.dtb and u-boot-nodtb.bin are deployed _before_ do_deploy
88 # Thus, do_deploy_setscene will also populate them in DEPLOY_IMAGE_DIR 88 # Thus, do_deploy_setscene will also populate them in DEPLOY_IMAGE_DIR
89 bb.build.addtask('do_deploy_dtb', 'do_deploy', 'do_compile', d) 89 bb.build.addtask('do_deploy_dtb', 'do_deploy', 'do_compile', d)
90 90
91 # do_concat_dtb is scheduled _before_ do_install as it overwrite the 91 # do_concat_dtb is scheduled _before_ do_install as it overwrite the
92 # u-boot.bin in both DEPLOYDIR and DEPLOY_IMAGE_DIR. 92 # u-boot.bin in both DEPLOYDIR and DEPLOY_IMAGE_DIR.
93 bb.build.addtask('do_concat_dtb', 'do_install', None, d) 93 bb.build.addtask('do_concat_dtb', 'do_install', None, d)
94 d.appendVarFlag('do_concat_dtb', 'depends', ' %s:do_assemble_fitimage' % kernel_pn) 94 d.appendVarFlag('do_concat_dtb', 'depends', ' %s:do_assemble_fitimage' % kernel_pn)
95} 95}