diff options
author | Tom Rini <trini@konsulko.com> | 2018-06-01 09:52:15 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-06-01 09:52:15 -0400 |
commit | caa2a2e5ab44d87faf51fafc780ecc985e0c05d6 (patch) | |
tree | da4f3cba6cdfbeae5f723a9ebf00bd29c8ae31bb /cmd/Kconfig | |
parent | c90c43cda8c376f949266f920bbb49119aef0b00 (diff) | |
parent | 277b1333b780acd8ddb761c9160c06ffdf1c3901 (diff) | |
download | u-boot-caa2a2e5ab44d87faf51fafc780ecc985e0c05d6.tar.gz |
Merge branch 'master' of git://git.denx.de/u-boot-usb
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 1a1ca60237..48a2a5720c 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -137,8 +137,6 @@ config AUTOBOOT_STOP_STR_SHA256 endmenu -source "cmd/fastboot/Kconfig" - config BUILD_BIN2C bool @@ -650,6 +648,18 @@ config CMD_DM can be useful to see the state of driver model for debugging or interest. +config CMD_FASTBOOT + bool "fastboot - Android fastboot support" + depends on FASTBOOT + help + This enables the command "fastboot" which enables the Android + fastboot mode for the platform. Fastboot is a protocol for + downloading images, flashing and device control used on + Android devices. Fastboot requires either the network stack + enabled or support for acting as a USB device. + + See doc/README.android-fastboot for more information. + config CMD_FDC bool "fdcboot - Boot from floppy device" help @@ -823,6 +833,14 @@ config CMD_MMC_RPMB Enable the commands for reading, writing and programming the key for the Replay Protection Memory Block partition in eMMC. +config CMD_MMC_SWRITE + bool "mmc swrite" + depends on CMD_MMC && MMC_WRITE + select IMAGE_SPARSE + help + Enable support for the "mmc swrite" command to write Android sparse + images to eMMC. + config CMD_NAND bool "nand" default y if NAND_SUNXI |