mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-05 02:51:00 +00:00
0bf61aced2
Provide a way for sandbox MMC to present data from a backing file. This allows a filesystem to be created on the host and easily served via an emulated mmc device. Signed-off-by: Simon Glass <sjg@chromium.org>
18 lines
311 B
Text
18 lines
311 B
Text
Sandbox MMC
|
|
===========
|
|
|
|
Required properties:
|
|
- compatible : "sandbox,mmc"
|
|
|
|
Optional properties:
|
|
- filename : Name of backing file, if any. This is mapped into the MMC device
|
|
so can be used to provide a filesystem or other test data
|
|
|
|
|
|
Example
|
|
-------
|
|
|
|
mmc2 {
|
|
compatible = "sandbox,mmc";
|
|
non-removable;
|
|
};
|