diff options
author | Simon Glass <sjg@chromium.org> | 2014-10-13 23:42:11 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-10-22 10:36:52 -0600 |
commit | 0ae0cb7b50ab7836fb2a625a389d7a83698c2150 (patch) | |
tree | 59a26153bfd003ecc93c53883fcf5627e29c84d7 /test/dm/Makefile | |
parent | ebcab48a031fc96d5d6292564a35cf772d4e539c (diff) | |
download | u-boot-0ae0cb7b50ab7836fb2a625a389d7a83698c2150.tar.gz |
dm: sf: Add tests for SPI flash
Add a simple test for SPI that uses SPI flash. It operates by creating a
SPI flash file and using the 'sf test' command to test that all
operations work correctly.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com>
Diffstat (limited to 'test/dm/Makefile')
-rw-r--r-- | test/dm/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/dm/Makefile b/test/dm/Makefile index d1b9c9a48b..75d3d41536 100644 --- a/test/dm/Makefile +++ b/test/dm/Makefile @@ -19,4 +19,5 @@ obj-$(CONFIG_DM_TEST) += ut.o ifneq ($(CONFIG_SANDBOX),) obj-$(CONFIG_DM_GPIO) += gpio.o obj-$(CONFIG_DM_SPI) += spi.o +obj-$(CONFIG_DM_SPI_FLASH) += sf.o endif |