1# WARNING! 2# 3# These modifications to os-release disable the bitbake parse 4# cache (for the os-release recipe only). Before copying 5# and pasting into another recipe ensure it is understood 6# what that means! 7 8OS_RELEASE_ROOTPATH ?= "${COREBASE}" 9def run_git(d, cmd): 10 try: 11 oeroot = d.getVar('OS_RELEASE_ROOTPATH', True) 12 return bb.process.run(("export PSEUDO_DISABLED=1; " + 13 "git --work-tree %s --git-dir %s/.git %s") 14 % (oeroot, oeroot, cmd))[0].strip('\n') 15 except Exception as e: 16 bb.warn("Unexpected exception from 'git' call: %s" % e) 17 pass 18# DISTRO_VERSION can be overridden by a bbappend or config, so it must be a 19# weak override. But, when a variable is weakly overridden the definition 20# and not the contents are used in the task-hash (for sstate reuse). We need 21# a strong variable in the vardeps chain for do_compile so that we get the 22# contents of the 'git describe --dirty' call. Create a strong/immediate 23# indirection via PHOSPHOR_OS_RELEASE_DISTRO_VERSION. 24PHOSPHOR_OS_RELEASE_DISTRO_VERSION := "${@run_git(d, 'describe --dirty')}" 25DISTRO_VERSION ??= "${PHOSPHOR_OS_RELEASE_DISTRO_VERSION}" 26EXTENDED_VERSION ??= "${PHOSPHOR_OS_RELEASE_DISTRO_VERSION}" 27VERSION = "${@'-'.join(d.getVar('VERSION_ID').split('-')[0:2])}" 28OPENBMC_TARGET_MACHINE = "${MACHINE}" 29OS_RELEASE_FIELDS:append = " BUILD_ID OPENBMC_TARGET_MACHINE EXTENDED_VERSION" 30# Ensure the git commands run every time bitbake is invoked. 31BB_DONT_CACHE = "1" 32# Make os-release available to other recipes. 33SYSROOT_DIRS:append = " ${sysconfdir}" 34