rtems/bsp: Build packages for the beagle BSP.

Closes #3769
This commit is contained in:
Chris Johns
2019-07-14 15:11:46 +10:00
parent b1c2cb4f72
commit 831ae05364
14 changed files with 95 additions and 57 deletions

View File

@@ -575,9 +575,11 @@ class buildset:
staging_size = path.get_size(stagingroot)
if not self.opts.no_clean() or self.opts.always_clean():
log.notice('clean staging: %s' % (self.bset))
log.trace('cleanup: %s' % (stagingroot))
self.rmdir(stagingroot)
log.notice('Staging Size: %s' % (build.humanize_number(staging_size)))
log.trace('removing: %s' % (stagingroot))
if not self.opts.dry_run():
if path.exists(stagingroot):
path.removeall(stagingroot)
log.notice('Staging Size: %s' % (build.humanize_number(staging_size, 'B')))
except error.general as gerr:
if not build_error:
log.stderr(str(gerr))