Home
last modified time | relevance | path

Searched refs:to_boolean (Results 1 – 15 of 15) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dccache.bbclass53 bb.utils.to_boolean(d.getVar('CCACHE_DISABLE'))):
H A Doverlayfs-etc.bbclass29 IMAGE_FEATURES_CONFLICTS_overlayfs-etc = "${@ 'package-management' if bb.utils.to_boolean(d.getVar(…
H A Dbuildstats.bbclass188 …if isinstance(e, bb.event.HeartbeatEvent) and bb.utils.to_boolean(d.getVar("BB_LOG_HOST_STAT_ON_IN…
265 if bb.utils.to_boolean(d.getVar("BB_LOG_HOST_STAT_ON_FAILURE")):
H A Dnpm.bbclass200 dev = bb.utils.to_boolean(d.getVar("NPM_INSTALL_DEV"), False)
256 if bb.utils.to_boolean(d.getVar("NPM_INSTALL_DEV"), False):
H A Dsstate.bbclass374 if bb.utils.to_boolean(d.getVar("SSTATE_VERIFY_SIG"), False):
769 if bb.utils.to_boolean(localdata.getVar('BB_NO_NETWORK')) and \
770 bb.utils.to_boolean(localdata.getVar('SSTATE_MIRROR_ALLOW_NETWORK')):
777 if bb.utils.to_boolean(d.getVar("SSTATE_VERIFY_SIG"), False):
975 if bb.utils.to_boolean(localdata.getVar('BB_NO_NETWORK')) and \
976 bb.utils.to_boolean(localdata.getVar('SSTATE_MIRROR_ALLOW_NETWORK')):
H A Dkernel.bbclass142 if image and bb.utils.to_boolean(d.getVar('INITRAMFS_IMAGE_BUNDLE')):
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dqa.py207 qa_fatal_errors = bb.utils.to_boolean(d.getVar("QA_ERRORS_FOUND"), False)
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/mc/
H A Dmc_4.8.27.bb33 CFLAGS:append:libc-musl = "${@' -DNCURSES_WIDECHAR=1' if bb.utils.to_boolean((d.getVar('ENABLE_WIDE…
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/
H A D__init__.py938 if bb.utils.to_boolean(d.getVar("BB_NO_NETWORK")):
1141 if bb.utils.to_boolean(d.getVar("BB_NO_NETWORK")):
1466 unpack = bb.utils.to_boolean(urldata.parm.get('unpack'), True)
1510 dos = bb.utils.to_boolean(urldata.parm.get('dos'), False)
1719 premirroronly = bb.utils.to_boolean(self.d.getVar("BB_FETCH_PREMIRRORONLY"))
H A Dnpmsw.py73 ud.dev = bb.utils.to_boolean(ud.parm.get("dev"), False)
H A Dhg.py88 if bb.utils.to_boolean(d.getVar("BB_FETCH_PREMIRRORONLY")):
H A Dgit.py339 if bb.utils.to_boolean(d.getVar("BB_FETCH_PREMIRRORONLY")):
/OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/
H A Dcreate_npm.py185 dev = bb.utils.to_boolean(str(extravalues.get("NPM_INSTALL_DEV", "0")), False)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dbuild.py423 if verboseShellLogging or bb.utils.to_boolean(d.getVar("BB_VERBOSE_LOGS", False)):
H A Dutils.py985 def to_boolean(string, default=None): function