diff options
author | Simon Glass <sjg@chromium.org> | 2014-04-10 20:01:29 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-05-29 17:48:21 -0400 |
commit | 30354978ff470470c15caea2566b61b5792ad277 (patch) | |
tree | 5f6b7ae28ec83cb06e49f9a39b0e0621279c095c /common/Makefile | |
parent | 66ded17dfc8110f0d9aa9d50fe140a320bfa4e53 (diff) | |
download | u-boot-30354978ff470470c15caea2566b61b5792ad277.zip u-boot-30354978ff470470c15caea2566b61b5792ad277.tar.gz u-boot-30354978ff470470c15caea2566b61b5792ad277.tar.bz2 |
Move command line API into cli.c
We now have a single entry point to the CLI, whether simple or hush. Put
this in its own file.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/Makefile')
-rw-r--r-- | common/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile index ae79865..81721f9 100644 --- a/common/Makefile +++ b/common/Makefile @@ -18,6 +18,7 @@ endif # We always have this since drivers/ddr/fs/interactive.c needs it obj-y += cli_simple.o +obj-y += cli.o obj-y += cli_readline.o obj-y += s_record.o obj-y += xyzModem.o |