diff options
author | Simon Glass <sjg@chromium.org> | 2016-02-29 15:25:50 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-03-14 15:34:50 -0600 |
commit | 782b97805e9f59cc2b4d3aa67a8a03248e8cd722 (patch) | |
tree | b93d2ae4964b3cdeb1660ac609cc2a98a9526dd0 /include/configs/sandbox.h | |
parent | a696d768c1274d667be86abe72869461b9fe0073 (diff) | |
download | u-boot-imx-782b97805e9f59cc2b4d3aa67a8a03248e8cd722.zip u-boot-imx-782b97805e9f59cc2b4d3aa67a8a03248e8cd722.tar.gz u-boot-imx-782b97805e9f59cc2b4d3aa67a8a03248e8cd722.tar.bz2 |
dm: sandbox: Enable cbfs and cramfs
Enable these two filesystems to provide better build coverage in sandbox.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tested-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'include/configs/sandbox.h')
-rw-r--r-- | include/configs/sandbox.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index 786bb11..f73d040 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -44,6 +44,9 @@ #define CONFIG_CMD_FAT #define CONFIG_CMD_EXT4 #define CONFIG_CMD_EXT4_WRITE +#define CONFIG_CMD_CBFS +#define CONFIG_CMD_CRAMFS +#define CONFIG_CRAMFS_CMDLINE #define CONFIG_CMD_PART #define CONFIG_DOS_PARTITION #define CONFIG_HOST_MAX_DEVICES 4 |