On Tue, 12 Nov 2024 at 21:26, Caleb Connolly <caleb.conno...@linaro.org> wrote: > > Add a small utility for displaying some information about U-Boot and the > hardware it's running on in a similar fashion to the popular neofetch > tool for Linux [1]. > > While the output is meant to be useful, it should also be pleasing to > look at and perhaps entertaining. The ufetch command aims to bring this > to U-Boot, featuring a colorful ASCII art version of the U-Boot logo. > > [1]: https://en.wikipedia.org/wiki/Neofetch > > Signed-off-by: Caleb Connolly <caleb.conno...@linaro.org> > --- > Ephemeral screenshot: https://0x0.st/XkQU.png > > Changes since v1: > * Rework storage info to be more dynamic > * use print_size() helper everywhere > * manually walk RAM banks to report memory size correctly > * minor formatting changes and fixes > * MAINTAINERS entry > * V1: > https://lore.kernel.org/u-boot/20240808163153.2069650-1-caleb.conno...@linaro.org > --- > MAINTAINERS | 5 ++ > cmd/Kconfig | 7 ++ > cmd/Makefile | 1 + > cmd/ufetch.c | 224 +++++++++++++++++++++++++++++++++++++++++++++++++++ > 4 files changed, 237 insertions(+) > create mode 100644 cmd/ufetch.c
Reviewed-by: Simon Glass <s...@chromium.org>