diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-05-21 07:49:58 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-05-28 18:55:08 -0400 |
commit | 005a804d0f3a0f0ace28a097142401ef9778e74c (patch) | |
tree | 59828c9f9ab56c12a88343f56125b325010da075 /cmd/Makefile | |
parent | 77934fdedfdd8a87d3b96c45b7bd540be60445d6 (diff) | |
download | u-boot-005a804d0f3a0f0ace28a097142401ef9778e74c.tar.gz |
cmd: remove unused `display` command
Compiling the display command leads to an error
undefined reference to `display_set'
No implementation of display_set() exists in U-Boot.
Eliminate the `display` command as well as the accompanying files.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd/Makefile')
-rw-r--r-- | cmd/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd/Makefile b/cmd/Makefile index 7864fcf95c..f982564ab9 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -45,7 +45,6 @@ obj-$(CONFIG_CMD_SOUND) += sound.o ifdef CONFIG_POST obj-$(CONFIG_CMD_DIAG) += diag.o endif -obj-$(CONFIG_CMD_DISPLAY) += display.o obj-$(CONFIG_CMD_DTIMG) += dtimg.o obj-$(CONFIG_CMD_ECHO) += echo.o obj-$(CONFIG_ENV_IS_IN_EEPROM) += eeprom.o |