diff options
author | Adnan Ali <adnan.ali at codethink.co.uk> | 2014-07-22 14:52:51 +0100 |
---|---|---|
committer | James Thomas <james.thomas@codethink.co.uk> | 2014-07-22 14:54:09 +0100 |
commit | fb290319cd03293460f5dd79a064d07d742611cf (patch) | |
tree | 578434a395268c1de182e3fe764c1f50fe1d63d3 /include/config_fallbacks.h | |
parent | 5e84e28e6bbe4037019bae736c4cee4898fd14cc (diff) | |
download | u-boot-fb290319cd03293460f5dd79a064d07d742611cf.tar.gz |
Introduces btrfs file-system to read file from
volume/sub-volumes with btrload command. This
implementation has read-only support.
This btrfs implementation is based on syslinux btrfs
code
Diffstat (limited to 'include/config_fallbacks.h')
-rw-r--r-- | include/config_fallbacks.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/config_fallbacks.h b/include/config_fallbacks.h index d8339b26cc..0ee05633c2 100644 --- a/include/config_fallbacks.h +++ b/include/config_fallbacks.h @@ -42,6 +42,10 @@ #define CONFIG_EXT4_WRITE #endif +#if defined(CONFIG_CMD_BTR) && !defined(CONFIG_FS_BTR) +#define CONFIG_FS_BTR +#endif + /* Rather than repeat this expression each time, add a define for it */ #if defined(CONFIG_CMD_IDE) || \ defined(CONFIG_CMD_SATA) || \ |