From: Alexander Kanavin Date: Fri, 30 Jul 2021 11:45:05 +0000 (+0200) Subject: devtool: print a warning on upgrades if PREFERRED_VERSION is set X-Git-Tag: uninative-3.3~128 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0b0f53eed0aadbf45d9eead96ebf7725cc7447e6;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git devtool: print a warning on upgrades if PREFERRED_VERSION is set Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- diff --git a/scripts/lib/devtool/upgrade.py b/scripts/lib/devtool/upgrade.py index 63362b4900c..826a3f955fc 100644 --- a/scripts/lib/devtool/upgrade.py +++ b/scripts/lib/devtool/upgrade.py @@ -583,6 +583,9 @@ def upgrade(args, config, basepath, workspace): logger.info('New recipe is %s' % rf) if license_diff: logger.info('License checksums have been updated in the new recipe; please refer to it for the difference between the old and the new license texts.') + preferred_version = rd.getVar('PREFERRED_VERSION_%s' % rd.getVar('PN')) + if preferred_version: + logger.warning('Version is pinned to %s via PREFERRED_VERSION; it may need adjustment to match the new version before any further steps are taken' % preferred_version) finally: tinfoil.shutdown() return 0