diff options
author | Rob Herring <rob.herring@calxeda.com> | 2012-09-21 04:02:30 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-09-25 14:43:19 -0700 |
commit | 7405a133101e009c760b98dd4dbcdc49b82ec3b3 (patch) | |
tree | f47bc2c471396d8f49c76e5b5424f3afc923485f /common/Makefile | |
parent | 2f5016462710050ce6c052bbc87cba115f53a51f (diff) | |
download | u-boot-imx-7405a133101e009c760b98dd4dbcdc49b82ec3b3.zip u-boot-imx-7405a133101e009c760b98dd4dbcdc49b82ec3b3.tar.gz u-boot-imx-7405a133101e009c760b98dd4dbcdc49b82ec3b3.tar.bz2 |
combine block device load commands into common function
All the raw block load commands duplicate the same code. Starting with
the ide version as it has progress updates convert ide, usb, and scsi boot
commands to all use a common version.
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
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 22e8a6f..482795e 100644 --- a/common/Makefile +++ b/common/Makefile @@ -34,6 +34,7 @@ COBJS-$(CONFIG_SYS_HUSH_PARSER) += hush.o COBJS-y += s_record.o COBJS-$(CONFIG_SERIAL_MULTI) += serial.o COBJS-y += xyzModem.o +COBJS-y += cmd_disk.o # core command COBJS-y += cmd_boot.o |