diff options
| author | Henrik Nordström <[email protected]> | 2013-11-10 10:26:56 -0700 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2014-01-08 17:24:03 -0700 |
| commit | f4d8de48f5a2aa1885daa0d425b8c0568a2ccb69 (patch) | |
| tree | d86aea3653bfff137f2a94bea66d5fbddcb59853 /include/configs | |
| parent | 60d18d3fe9d1a5db663711063cd0d5c915af377a (diff) | |
sandbox: block driver using host file/device as backing store
Provide a way to use any host file or device as a block device in U-Boot.
This can be used to provide filesystem access within U-Boot to an ext2
image file on the host, for example.
The support is plumbed into the filesystem and partition interfaces.
We don't want to print a message in the driver every time we find a missing
device. Pass the information back to the caller where a message can be printed
if desired.
Signed-off-by: Henrik Nordström <[email protected]>
Signed-off-by: Simon Glass <[email protected]>
- Removed change to part.c get_device_and_partition()
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'include/configs')
| -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 7e78a231d7a..98bdd70ffa9 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -39,6 +39,9 @@ #define CONFIG_CMD_FAT #define CONFIG_CMD_EXT4 #define CONFIG_CMD_EXT4_WRITE +#define CONFIG_CMD_PART +#define CONFIG_DOS_PARTITION +#define CONFIG_HOST_MAX_DEVICES 4 #define CONFIG_SYS_VSNPRINTF |
