summaryrefslogtreecommitdiffstats
path: root/common/Kconfig
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2020-06-11 20:52:18 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2020-06-18 14:45:56 +0200
commitfc02309887efe3d88e598f9079bf48f63427bcb5 (patch)
treea0476e7dfdedf434cb1e4baba3054fc783ded08a /common/Kconfig
parent5e2ebdbcbf07d045583a36523770cb2eb42cafee (diff)
downloadbarebox-fc02309887efe3d88e598f9079bf48f63427bcb5.tar.gz
barebox-fc02309887efe3d88e598f9079bf48f63427bcb5.tar.xz
fastboot: Drop support for downloading to buffer
The option to download to a buffer instead of a file was introduced because in some workloads it is required to have a contiguous image in memory. With recent changes now ramfs can provide such a buffer via memmap API even when it downloaded the data to a file. This makes the explicit download to buffer option unnecessary, so remove it. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/Kconfig')
-rw-r--r--common/Kconfig12
1 files changed, 0 insertions, 12 deletions
diff --git a/common/Kconfig b/common/Kconfig
index ac282d8955..0c342d8e84 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -1026,18 +1026,6 @@ config FASTBOOT_SPARSE
images that are bigger than the available memory. If unsure,
say yes here.
-config FASTBOOT_BUF
- bool
- prompt "Download files to temporary buffer instead of file"
- help
- With this option enabled the fastboot code will download files to a
- temporary buffer instead of a temporary file. Normally you want to
- use a file as this also works when your memory is fragmented. However,
- in some special cases, when the file consumer also better copes with
- a buffer, then using a buffer might be better.
-
- Say no here unless you know what you are doing.
-
config FASTBOOT_CMD_OEM
bool
prompt "Enable OEM commands"