From ff1ee44794a7de9b3ab16e79186bbe3bb231e519 Mon Sep 17 00:00:00 2001 From: Herb Kuta Date: Thu, 30 May 2019 23:22:29 -0700 Subject: [PATCH] DRAFT mcf: Correct/improve messages (v7.1.1) --- scripts/mcf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/mcf b/scripts/mcf index c4d3d91..8c2d677 100755 --- a/scripts/mcf +++ b/scripts/mcf @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (c) 2008-2017 LG Electronics, Inc. +# Copyright (c) 2008-2019 LG Electronics, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -28,7 +28,7 @@ import glob import importlib.util import importlib.machinery -__version__ = "7.1.0 +__version__ = "7.1.1" logger = logging.getLogger(__name__) @@ -134,10 +134,10 @@ def getopts(bblayers_only): variations = parser.add_argument_group('Build Instructions') variations.add_argument('-p', '--enable-parallel-make', dest='parallel_make', type=int, default=0, - help='maximum number of parallel tasks each submake of bitbake should spawn (default: 0 = 2x the number of processor cores)') + help='maximum number of parallel tasks each submake of bitbake should spawn (default: 0 means 2x the number of processor cores)') variations.add_argument('-b', '--enable-bb-number-threads', dest='bb_number_threads', type=int, default=0, - help='maximum number of bitbake tasks to spawn (default: 0 = 2x the number of processor cores))') + help='maximum number of bitbake tasks to spawn (default: 0 means 2x the number of processor cores))') icecc = parser.add_argument_group('ICECC Configuration') @@ -508,7 +508,7 @@ def write_bblayers_conf(sourcedir, append): pass def update_layers(sourcedir): - logger.info('MCF-%s: Updating build directory' % __version__) + logger.info('MCF-%s: Updating layers' % __version__) layers_sanity = list() update_location = list() for layer in sorted(LAYERS.values(), key=lambda l: l["priority"]):