diff options
author | Tom Rini <trini@konsulko.com> | 2019-10-11 16:28:47 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-10-11 19:05:14 -0400 |
commit | ee8da596eba60dcf55dcb30b5288336c53919c99 (patch) | |
tree | 849a66750ab84117fd7fd2ea12e168c62ffc8930 /doc | |
parent | f18845c27ad86e118b074ce545ce685cb9a97561 (diff) | |
download | u-boot-ee8da596eba60dcf55dcb30b5288336c53919c99.tar.gz u-boot-ee8da596eba60dcf55dcb30b5288336c53919c99.tar.bz2 u-boot-ee8da596eba60dcf55dcb30b5288336c53919c99.zip |
sandbox: Remove sandbox_noblk build
At this point, all drivers that do not use CONFIG_BLK are past their
migration deadlines, so remove this config as it's no longer helpful and
hinders enhancing block drivers.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/arch/sandbox.rst | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/doc/arch/sandbox.rst b/doc/arch/sandbox.rst index 54933b5675..e1f4dde6f8 100644 --- a/doc/arch/sandbox.rst +++ b/doc/arch/sandbox.rst @@ -209,17 +209,12 @@ sandbox_flattree: We need this build so that we can test those inline functions, and we cannot build with both the inline functions and the non-inline functions since they are named the same. -sandbox_noblk: - builds without CONFIG_BLK, which means the legacy block - drivers are used. We cannot use both the legacy and driver-model block - drivers since they implement the same functions sandbox_spl: builds sandbox with SPL support, so you can run spl/u-boot-spl and it will start up and then load ./u-boot. It is also possible to run ./u-boot directly. -Of these sandbox_noblk can be removed once CONFIG_BLK is used everwhere, and -sandbox_spl can probably be removed since it is a superset of sandbox. +Of these sandbox_spl can probably be removed since it is a superset of sandbox. Most of the config options should be identical between these variants. |