diff options
| -rw-r--r-- | meta/classes/sstate.bbclass | 45 |
1 files changed, 44 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 6762e32cfb..02594a7d33 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
| @@ -3,6 +3,7 @@ SSTATE_VERSION = "2" | |||
| 3 | SSTATE_MANIFESTS ?= "${TMPDIR}/sstate-control" | 3 | SSTATE_MANIFESTS ?= "${TMPDIR}/sstate-control" |
| 4 | SSTATE_MANFILEBASE = "${SSTATE_MANIFESTS}/manifest-${SSTATE_MANMACH}-" | 4 | SSTATE_MANFILEBASE = "${SSTATE_MANIFESTS}/manifest-${SSTATE_MANMACH}-" |
| 5 | SSTATE_MANFILEPREFIX = "${SSTATE_MANFILEBASE}${PN}" | 5 | SSTATE_MANFILEPREFIX = "${SSTATE_MANFILEBASE}${PN}" |
| 6 | SSTATE_MASTERMANIFEST = "${SSTATE_MANIFESTS}/master.list" | ||
| 6 | 7 | ||
| 7 | def generate_sstatefn(spec, hash, d): | 8 | def generate_sstatefn(spec, hash, d): |
| 8 | if not hash: | 9 | if not hash: |
| @@ -17,6 +18,7 @@ SSTATE_EXTRAPATH = "" | |||
| 17 | SSTATE_EXTRAPATHWILDCARD = "" | 18 | SSTATE_EXTRAPATHWILDCARD = "" |
| 18 | SSTATE_PATHSPEC = "${SSTATE_DIR}/${SSTATE_EXTRAPATHWILDCARD}*/${SSTATE_PKGSPEC}" | 19 | SSTATE_PATHSPEC = "${SSTATE_DIR}/${SSTATE_EXTRAPATHWILDCARD}*/${SSTATE_PKGSPEC}" |
| 19 | 20 | ||
| 21 | SSTATE_DUPWHITELIST = "${DEPLOY_DIR_IMAGE}/ ${DEPLOY_DIR}/licenses/ ${DEPLOY_DIR_IPK}/all/ ${DEPLOY_DIR_RPM}/all ${DEPLOY_DIR_DEB}/all/" | ||
| 20 | 22 | ||
| 21 | SSTATE_SCAN_FILES ?= "*.la *-config *_config" | 23 | SSTATE_SCAN_FILES ?= "*.la *-config *_config" |
| 22 | SSTATE_SCAN_CMD ?= 'find ${SSTATE_BUILDDIR} \( -name "${@"\" -o -name \"".join(d.getVar("SSTATE_SCAN_FILES", True).split())}" \) -type f' | 24 | SSTATE_SCAN_CMD ?= 'find ${SSTATE_BUILDDIR} \( -name "${@"\" -o -name \"".join(d.getVar("SSTATE_SCAN_FILES", True).split())}" \) -type f' |
| @@ -125,7 +127,6 @@ def sstate_install(ss, d): | |||
| 125 | locks.append(bb.utils.lockfile(lock)) | 127 | locks.append(bb.utils.lockfile(lock)) |
| 126 | 128 | ||
| 127 | for state in ss['dirs']: | 129 | for state in ss['dirs']: |
| 128 | oe.path.copytree(state[1], state[2]) | ||
| 129 | for walkroot, dirs, files in os.walk(state[1]): | 130 | for walkroot, dirs, files in os.walk(state[1]): |
| 130 | bb.debug(2, "Staging files from %s to %s" % (state[1], state[2])) | 131 | bb.debug(2, "Staging files from %s to %s" % (state[1], state[2])) |
| 131 | for file in files: | 132 | for file in files: |
| @@ -140,9 +141,35 @@ def sstate_install(ss, d): | |||
| 140 | if not dstdir.endswith("/"): | 141 | if not dstdir.endswith("/"): |
| 141 | dstdir = dstdir + "/" | 142 | dstdir = dstdir + "/" |
| 142 | shareddirs.append(dstdir) | 143 | shareddirs.append(dstdir) |
| 144 | |||
| 145 | # Check the file list for conflicts against the master manifest | ||
| 146 | mastermanifest = d.getVar("SSTATE_MASTERMANIFEST", True) | ||
| 147 | whitelist = d.getVar("SSTATE_DUPWHITELIST", True) | ||
| 148 | lock = bb.utils.lockfile(mastermanifest + ".lock") | ||
| 149 | fileslist = [line.strip() for line in open(mastermanifest)] | ||
| 150 | bb.utils.unlockfile(lock) | ||
| 151 | match = [] | ||
| 152 | for f in sharedfiles: | ||
| 153 | if f in fileslist: | ||
| 154 | realmatch = True | ||
| 155 | for w in whitelist: | ||
| 156 | if f.startswith(w): | ||
| 157 | realmatch = False | ||
| 158 | break | ||
| 159 | if realmatch: | ||
| 160 | match.append(f) | ||
| 161 | if match: | ||
| 162 | bb.warn("The recipe is trying to install files into a shared area when those files already exist. Those files are:\n %s" % "\n ".join(match)) | ||
| 163 | |||
| 164 | # Write out the manifest and add to the task's manifest file | ||
| 165 | lock = bb.utils.lockfile(mastermanifest + ".lock") | ||
| 166 | mf = open(mastermanifest, "a") | ||
| 143 | f = open(manifest, "w") | 167 | f = open(manifest, "w") |
| 144 | for file in sharedfiles: | 168 | for file in sharedfiles: |
| 169 | mf.write(file + "\n") | ||
| 145 | f.write(file + "\n") | 170 | f.write(file + "\n") |
| 171 | bb.utils.unlockfile(lock) | ||
| 172 | |||
| 146 | # We want to ensure that directories appear at the end of the manifest | 173 | # We want to ensure that directories appear at the end of the manifest |
| 147 | # so that when we test to see if they should be deleted any contents | 174 | # so that when we test to see if they should be deleted any contents |
| 148 | # added by the task will have been removed first. | 175 | # added by the task will have been removed first. |
| @@ -152,6 +179,10 @@ def sstate_install(ss, d): | |||
| 152 | f.write(di + "\n") | 179 | f.write(di + "\n") |
| 153 | f.close() | 180 | f.close() |
| 154 | 181 | ||
| 182 | # Run the actual file install | ||
| 183 | for state in ss['dirs']: | ||
| 184 | oe.path.copytree(state[1], state[2]) | ||
| 185 | |||
| 155 | for postinst in (d.getVar('SSTATEPOSTINSTFUNCS', True) or '').split(): | 186 | for postinst in (d.getVar('SSTATEPOSTINSTFUNCS', True) or '').split(): |
| 156 | bb.build.exec_func(postinst, d) | 187 | bb.build.exec_func(postinst, d) |
| 157 | 188 | ||
| @@ -268,6 +299,18 @@ def sstate_clean_manifest(manifest, d): | |||
| 268 | except OSError: | 299 | except OSError: |
| 269 | pass | 300 | pass |
| 270 | 301 | ||
| 302 | # Remove the entries from the master manifest | ||
| 303 | mastermanifest = d.getVar("SSTATE_MASTERMANIFEST", True) | ||
| 304 | lock = bb.utils.lockfile(mastermanifest + ".lock") | ||
| 305 | mf = open(mastermanifest + ".new", "w") | ||
| 306 | for line in open(mastermanifest, "r"): | ||
| 307 | if not line or line in entries: | ||
| 308 | continue | ||
| 309 | mf.write(line) | ||
| 310 | mf.close() | ||
| 311 | os.rename(mastermanifest + ".new", mastermanifest) | ||
| 312 | bb.utils.unlockfile(lock) | ||
| 313 | |||
| 271 | oe.path.remove(manifest) | 314 | oe.path.remove(manifest) |
| 272 | 315 | ||
| 273 | def sstate_clean(ss, d): | 316 | def sstate_clean(ss, d): |
