From 86d462c05d57f0bb4df582453d0d0b2d7cabc6ff Mon Sep 17 00:00:00 2001 From: Caleb Connolly Date: Fri, 15 Nov 2024 01:47:29 +0100 Subject: cmd: add a fetch utility 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 Reviewed-by: Simon Glass Acked-by: Ilias Apalodimas Tested-by: Mattijs Korpershoek # vim3 Tested-by: Neil Armstrong # on SM8560-QRD Acked-by: Heinrich Schuchardt Tested-by: Tony Dinh Signed-off-by: Caleb Connolly --- cmd/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd/Makefile') diff --git a/cmd/Makefile b/cmd/Makefile index d1f369deec0..1e6d3128c8c 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -53,6 +53,7 @@ obj-$(CONFIG_CMD_CPU) += cpu.o obj-$(CONFIG_CMD_DATE) += date.o obj-$(CONFIG_CMD_DEMO) += demo.o obj-$(CONFIG_CMD_DM) += dm.o +obj-$(CONFIG_CMD_UFETCH) += ufetch.o obj-$(CONFIG_CMD_SOUND) += sound.o ifdef CONFIG_POST obj-$(CONFIG_CMD_DIAG) += diag.o -- cgit v1.3.1