diff options
author | Simon Glass <sjg@chromium.org> | 2018-11-15 18:44:03 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-11-26 08:25:36 -0500 |
commit | d66ddafaf94386f8b92b190a09a0dc488a89149f (patch) | |
tree | b2c321722f6ca0490cae1deed943d7b1448d83b7 /cmd/Makefile | |
parent | 6d07d63d2f07497ba9846a5bcd3e5b9c417db931 (diff) | |
download | u-boot-d66ddafaf94386f8b92b190a09a0dc488a89149f.tar.gz u-boot-d66ddafaf94386f8b92b190a09a0dc488a89149f.tar.bz2 u-boot-d66ddafaf94386f8b92b190a09a0dc488a89149f.zip |
sandbox: Add a new 'sb' command
The old 'sb' command was deprecated in 2015 and replaced with 'host'. It
is useful to be able to access some internal sandbox state, particularly
for testing.
Resurrect the old command and provide a way to print some basic state
information (currently just the arguments to sandbox).
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd/Makefile')
-rw-r--r-- | cmd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Makefile b/cmd/Makefile index 0534ddc679..5ec2f9e8eb 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -115,6 +115,7 @@ obj-$(CONFIG_CMD_ROCKUSB) += rockusb.o obj-$(CONFIG_SANDBOX) += host.o obj-$(CONFIG_CMD_SATA) += sata.o obj-$(CONFIG_CMD_NVME) += nvme.o +obj-$(CONFIG_SANDBOX) += sb.o obj-$(CONFIG_CMD_SF) += sf.o obj-$(CONFIG_CMD_SCSI) += scsi.o disk.o obj-$(CONFIG_CMD_SHA1SUM) += sha1sum.o |