summaryrefslogtreecommitdiffstats
path: root/scripts/lib/devtool/upgrade.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-09-28 15:51:40 +1300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-11 12:14:27 +0000
commit624a07a7665020f3c3e3d830d96bab41dfc8ec5e (patch)
tree0234b03d606618a579374ecabdce8b2d629a5083 /scripts/lib/devtool/upgrade.py
parent1d31cee42d7fdd0f7881a44447492efc2db3c95a (diff)
downloadpoky-624a07a7665020f3c3e3d830d96bab41dfc8ec5e.tar.gz
devtool: show some warnings for upgrade versions
* Show a warning in devtool upgrade if the version is less than the current version suggesting that the user may need to bump PE in the recipe * Show a warning in devtool add and devtool upgrade if the version looks like a pre-release version suggesting using a version number that won't mess up the progression when you come to upgrade to the final release version. (From OE-Core rev: 92c4d9be9ed365c449ea1ac5a18ddb15e4a36b2d) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/devtool/upgrade.py')
-rw-r--r--scripts/lib/devtool/upgrade.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/lib/devtool/upgrade.py b/scripts/lib/devtool/upgrade.py
index 441dd35bbd..ab7acd16c6 100644
--- a/scripts/lib/devtool/upgrade.py
+++ b/scripts/lib/devtool/upgrade.py
@@ -33,7 +33,7 @@ sys.path = sys.path + [devtool_path]
33 33
34import oe.recipeutils 34import oe.recipeutils
35from devtool import standard 35from devtool import standard
36from devtool import exec_build_env_command, setup_tinfoil, DevtoolError, parse_recipe, use_external_build, update_unlockedsigs 36from devtool import exec_build_env_command, setup_tinfoil, DevtoolError, parse_recipe, use_external_build, update_unlockedsigs, check_prerelease_version
37 37
38logger = logging.getLogger('devtool') 38logger = logging.getLogger('devtool')
39 39
@@ -420,8 +420,13 @@ def upgrade(args, config, basepath, workspace):
420 old_srcrev = None 420 old_srcrev = None
421 if old_srcrev and not args.srcrev: 421 if old_srcrev and not args.srcrev:
422 raise DevtoolError("Recipe specifies a SRCREV value; you must specify a new one when upgrading") 422 raise DevtoolError("Recipe specifies a SRCREV value; you must specify a new one when upgrading")
423 if rd.getVar('PV') == args.version and old_srcrev == args.srcrev: 423 old_ver = rd.getVar('PV')
424 if old_ver == args.version and old_srcrev == args.srcrev:
424 raise DevtoolError("Current and upgrade versions are the same version") 425 raise DevtoolError("Current and upgrade versions are the same version")
426 if args.version:
427 if bb.utils.vercmp_string(args.version, old_ver) < 0:
428 logger.warning('Upgrade version %s compares as less than the current version %s. If you are using a package feed for on-target upgrades or providing this recipe for general consumption, then you should increment PE in the recipe (or if there is no current PE value set, set it to "1")' % (args.version, old_ver))
429 check_prerelease_version(args.version, 'devtool upgrade')
425 430
426 rf = None 431 rf = None
427 try: 432 try: