mbox series

[0/3] Fix debug mode

Message ID 20250203-fix-dbg-v1-0-3575fb40f2bc@samsung.com (mailing list archive)
Headers show
Series Fix debug mode | expand

Message

Daniel Gomez Feb. 3, 2025, 12:35 p.m. UTC
This series fixes the make V=1 debug mode and adds a new
AV=<verbosity_level> to control Ansible playbook verbosity.

We can now see (again) the Ansible Playbook (ansible-playbook) calls and
have more control over the verbosity of the command. Example:

make V=1 AV=2
ansible-playbook -vv --connection=local \
        --inventory localhost, \
        playbooks/install_systemd_timesyncd.yml \
        -e 'ansible_python_interpreter=/usr/bin/python3'
ansible-playbook [core 2.18.1]

...

System clock synchronized: yes
              NTP service: active
          RTC in local TZ: no

PLAY RECAP ***
localhost                  : ok=8    changed=3    unreachable=0
failed=0    skipped=2    rescued=0    ignored=0

ansible-playbook -vv --connection=local \
        --inventory localhost, \
        playbooks/install_systemd_journal_remote.yml \
        -e 'ansible_python_interpreter=/usr/bin/python3'
...

Signed-off-by: Daniel Gomez <da.gomez@samsung.com>
---
Daniel Gomez (3):
      scripts: refs: remove Q overwrite
      Makefile: fix debug Q var
      ansible.Makefile: enhance ansible verbosity

 MAINTAINERS                              |  8 ++++++++
 Makefile                                 |  8 +++-----
 Makefile.btrfs_progs                     |  2 +-
 Makefile.build_qemu                      |  8 ++++----
 Makefile.hypervisor-tunings              |  2 +-
 Makefile.kdevops                         | 16 ++++++++--------
 Makefile.postfix                         |  2 +-
 scripts/ansible.Makefile                 |  4 ++++
 scripts/build.Makefile                   | 10 +++++-----
 scripts/install-menuconfig-deps.Makefile |  2 +-
 scripts/journal-server.Makefile          | 14 +++++++-------
 scripts/kconfig/Makefile                 |  4 ++++
 scripts/refs.Makefile                    |  2 --
 scripts/systemd-timesync.Makefile        |  6 +++---
 scripts/validate_av.py                   | 28 ++++++++++++++++++++++++++++
 15 files changed, 78 insertions(+), 38 deletions(-)
---
base-commit: bcea53d0710cc0722520430277c80279e90e0863
change-id: 20250131-fix-dbg-fe4b275d90c7

Best regards,