From: Robert Yang Date: Fri, 23 Nov 2018 10:10:11 +0000 (+0800) Subject: uboot-sign.bbclass: Remove tab indentations in python code X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Frbt%2Fuboot_py;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git uboot-sign.bbclass: Remove tab indentations in python code Use 4 spaces to replace a tab. Signed-off-by: Robert Yang --- diff --git a/meta/classes/uboot-sign.bbclass b/meta/classes/uboot-sign.bbclass index 0e5e1b1a703..03100b8a5fa 100644 --- a/meta/classes/uboot-sign.bbclass +++ b/meta/classes/uboot-sign.bbclass @@ -93,14 +93,14 @@ do_install_append() { } python () { - if d.getVar('UBOOT_SIGN_ENABLE') == '1' and d.getVar('PN') == d.getVar('UBOOT_PN'): - kernel_pn = d.getVar('PREFERRED_PROVIDER_virtual/kernel') + if d.getVar('UBOOT_SIGN_ENABLE') == '1' and d.getVar('PN') == d.getVar('UBOOT_PN'): + kernel_pn = d.getVar('PREFERRED_PROVIDER_virtual/kernel') - # Make "bitbake u-boot -cdeploy" deploys the signed u-boot.dtb - d.appendVarFlag('do_deploy', 'depends', ' %s:do_deploy' % kernel_pn) + # Make "bitbake u-boot -cdeploy" deploys the signed u-boot.dtb + d.appendVarFlag('do_deploy', 'depends', ' %s:do_deploy' % kernel_pn) - # kernerl's do_deploy is a litle special, so we can't use - # do_deploy_append, otherwise it would override - # kernel_do_deploy. - d.appendVarFlag('do_deploy', 'prefuncs', ' concat_dtb') + # kernerl's do_deploy is a litle special, so we can't use + # do_deploy_append, otherwise it would override + # kernel_do_deploy. + d.appendVarFlag('do_deploy', 'prefuncs', ' concat_dtb') }