diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2017-03-03 14:53:22 +0100 |
---|---|---|
committer | Jagan Teki <jagan@amarulasolutions.com> | 2017-04-07 11:23:46 +0530 |
commit | 2bc734b1eb9d77c1e9f64ed0ff364f293ce8d074 (patch) | |
tree | 41bb161c4f8e6913150923d6bc8cd01110b561db /cmd | |
parent | ed8f2a286d52b30cda3e68ede214f8a6d64c1116 (diff) | |
download | u-boot-2bc734b1eb9d77c1e9f64ed0ff364f293ce8d074.zip u-boot-2bc734b1eb9d77c1e9f64ed0ff364f293ce8d074.tar.gz u-boot-2bc734b1eb9d77c1e9f64ed0ff364f293ce8d074.tar.bz2 |
cmd: ubifs: Add a dependency on CMD_UBI
CMD_UBIFS can't compile without CMD_UBI enabled. Make sure we can't end up
in that case.
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Acked-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 85fe728..c9b17f0 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -858,6 +858,7 @@ config CMD_UBI config CMD_UBIFS tristate "Enable UBIFS - Unsorted block images filesystem commands" + depends on CMD_UBI select CRC32 select RBTREE if ARCH_SUNXI select LZO if ARCH_SUNXI |