clang-tidy: Add override keywords

Marked virtual functions with the `override` keyword to ensure
they correctly override base class functions. This resolves
-Winconsistent-missing-override warnings and improves code safety
and readability by explicitly indicating overridden functions.

'''
item_updater.hpp:120:18: [0m[0;1;31m
  error: [0m[1m'deleteAll' overrides a member function but is not marked 'override' [-Werror,-Winconsistent-missing-override
static/item_updater_static.hpp:75:10: [0m[0;1;31m
   error: [0m[1m'validateImage' overrides a member function but is not marked 'override' [-Werror,-Winconsistent-missing-override][0m
'''

Tested: Build verified

Change-Id: Iee2bb85498db72c8f2a9f265e0490fff9288f5f4
Signed-off-by: Jayanth Othayoth <ojayanth@gmail.com>
2 files changed
tree: 999e5cf42a01b3738cd3761cb8327245fa101100
  1. dbus/
  2. mmc/
  3. static/
  4. test/
  5. ubi/
  6. vpnor/
  7. .clang-format
  8. .gitignore
  9. .shellcheck
  10. activation.cpp
  11. activation.hpp
  12. functions.cpp
  13. functions.hpp
  14. generate-tar
  15. generate-ubi
  16. image_verify.cpp
  17. image_verify.hpp
  18. item_updater.cpp
  19. item_updater.hpp
  20. item_updater_main.cpp
  21. LICENSE
  22. meson.build
  23. meson.options
  24. msl_verify.cpp
  25. msl_verify.hpp
  26. msl_verify_main.cpp
  27. op-pnor-msl.service
  28. openpower-pnor-update@.service
  29. org.open_power.Software.Host.Updater.service
  30. OWNERS
  31. README.md
  32. utils.cpp
  33. utils.hpp
  34. version.cpp
  35. version.hpp
README.md

openpower-pnor-code-mgmt

OpenPower PNOR (Processor NOR) Code Management provides a set of host software management applications for OpenPower systems. The host firmware is stored on the PNOR chip. More information can be found at Software Architecture or Host Code Update

To Build

To build this package, do the following steps:

  1. meson build
  2. ninja -C build

To clean the repository run rm -r build.