From a0defa4f358145d34e69bcd059b407ea853580cb Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Tue, 31 Dec 2024 17:54:12 -0600 Subject: [PATCH] qconfig.py: Update resync message When using qconfig.py to resync defconfig files and commit the result, update it to say: Resync all defconfig files using qconfig.py Reviewed-by: Simon Glass Signed-off-by: Tom Rini --- tools/qconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qconfig.py b/tools/qconfig.py index 058d72cf4bc..259adbe1bc9 100755 --- a/tools/qconfig.py +++ b/tools/qconfig.py @@ -1617,7 +1617,7 @@ def add_commit(configs): '\n '.join(configs)) else: msg = 'configs: Resync with savedefconfig' - msg += '\n\nRsync all defconfig files using moveconfig.py' + msg += '\n\nResync all defconfig files using qconfig.py' subprocess.call(['git', 'commit', '-s', '-m', msg]) -- 2.39.5