mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 03:49:32 +02:00
siteinfo: add SITECONFIG_SYSROOTCACHE definition in place of hard-coded path
siteconfig: use SITECONFIG_SYSROOTCACHE and use sstate-interceptfuncs Use the new sstate-interceptfuncs functionality to interpose do_siteconfig between the sstate_install and package. Signed-off-by: Jeff Polk <jeff.polk@windriver.com>
This commit is contained in:
committed by
Richard Purdie
parent
27dd7f82c9
commit
c3269e20bf
@@ -97,7 +97,7 @@ def siteinfo_get_files(d):
|
||||
sitefiles += fname + " "
|
||||
|
||||
# Now check for siteconfig cache files
|
||||
path_siteconfig = os.path.join(bb.data.getVar('STAGING_DATADIR', d, 1), bb.data.getVar('TARGET_SYS', d, 1) + "_config_site.d")
|
||||
path_siteconfig = bb.data.getVar('SITECONFIG_SYSROOTCACHE', d, 1)
|
||||
if os.path.isdir(path_siteconfig):
|
||||
for i in os.listdir(path_siteconfig):
|
||||
fname = os.path.join(path_siteconfig, i)
|
||||
@@ -127,5 +127,5 @@ def siteinfo_get_bits(d):
|
||||
#
|
||||
SITEINFO_ENDIANESS = "${@siteinfo_get_endianess(d)}"
|
||||
SITEINFO_BITS = "${@siteinfo_get_bits(d)}"
|
||||
|
||||
SITECONFIG_SYSROOTCACHE = "${STAGING_DATADIR}/${TARGET_SYS}_config_site.d"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user