diff mbox series

qconfig.py: Update resync message

Message ID 20241231235412.1605761-1-trini@konsulko.com
State Accepted
Commit a0defa4f358145d34e69bcd059b407ea853580cb
Delegated to: Tom Rini
Headers show
Series qconfig.py: Update resync message | expand

Commit Message

Tom Rini Dec. 31, 2024, 11:54 p.m. UTC
When using qconfig.py to resync defconfig files and commit the result,
update it to say:
Resync all defconfig files using qconfig.py

Signed-off-by: Tom Rini <trini@konsulko.com>
---
 tools/qconfig.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass Jan. 3, 2025, 1:41 a.m. UTC | #1
On Wed, 1 Jan 2025 at 12:54, Tom Rini <trini@konsulko.com> wrote:
>
> When using qconfig.py to resync defconfig files and commit the result,
> update it to say:
> Resync all defconfig files using qconfig.py
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
>  tools/qconfig.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
Tom Rini Jan. 18, 2025, 4:43 p.m. UTC | #2
On Tue, 31 Dec 2024 17:54:12 -0600, Tom Rini wrote:

> When using qconfig.py to resync defconfig files and commit the result,
> update it to say:
> Resync all defconfig files using qconfig.py
> 
> 

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/tools/qconfig.py b/tools/qconfig.py
index 058d72cf4bcc..259adbe1bc9e 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])