From 36d315972bb817152988931421f845a68b679953 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Tue, 3 Oct 2017 11:40:22 +1300 Subject: update: allow preserving temp directory If you're diagnosing problems with the bitbake server when running the update script, then you need to be able to look at bitbake-cookerdaemon.log, but you couldn't do that after the fact because the temporary directory it gets written out to was being unconditionally deleted. Add a --keep-temp option which preserves it and some debug messages to tell you where it is. Signed-off-by: Paul Eggleton --- layerindex/update.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'layerindex/update.py') diff --git a/layerindex/update.py b/layerindex/update.py index 2d578df8a7..d1e67a0eb6 100755 --- a/layerindex/update.py +++ b/layerindex/update.py @@ -85,6 +85,8 @@ def prepare_update_layer_command(options, branch, layer, initial=False): cmd += ' -d' elif options.loglevel == logging.ERROR: cmd += ' -q' + if options.keep_temp: + cmd += ' --keep-temp' return cmd def update_actual_branch(layerquery, fetchdir, branch, options, update_bitbake, bitbakepath): @@ -165,6 +167,9 @@ def main(): parser.add_option("-q", "--quiet", help = "Hide all output except error messages", action="store_const", const=logging.ERROR, dest="loglevel") + parser.add_option("", "--keep-temp", + help = "Preserve temporary directory at the end instead of deleting it", + action="store_true") options, args = parser.parse_args(sys.argv) if len(args) > 1: -- cgit 1.2.3-korg