| #
df57b34b |
| 19-Sep-2019 |
Jason Zhu <jason.zhu@rock-chips.com> |
fastboot: remove 'default y' from RK_AVB_LIBAVB_ENABLE_ATH_UNLOCK
Open RK_AVB_LIBAVB_ENABLE_ATH_UNLOCK if need advanced security requirements.
Change-Id: Ie01c6342d379b672fe69e367262496d97b5890e9 S
fastboot: remove 'default y' from RK_AVB_LIBAVB_ENABLE_ATH_UNLOCK
Open RK_AVB_LIBAVB_ENABLE_ATH_UNLOCK if need advanced security requirements.
Change-Id: Ie01c6342d379b672fe69e367262496d97b5890e9 Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>
show more ...
|
| #
d38ae1a6 |
| 19-Aug-2019 |
zain wang <wzz@rock-chips.com> |
fastboot: export CONFIG_RK_AVB_LIBAVB_ENABLE_ATH_UNLOCK
Relate to commit 46a8a26905fc ("fastboot: add RK_AVB_LIBAVB_ENABLE_ATH_UNLOCK config") Export config can help us select it easily.
Change-Id:
fastboot: export CONFIG_RK_AVB_LIBAVB_ENABLE_ATH_UNLOCK
Relate to commit 46a8a26905fc ("fastboot: add RK_AVB_LIBAVB_ENABLE_ATH_UNLOCK config") Export config can help us select it easily.
Change-Id: I43a210f1efb35ff679102c8686cbca219d2def97 Signed-off-by: zain wang <wzz@rock-chips.com>
show more ...
|
| #
c2ba77d9 |
| 05-Jan-2019 |
Jian Qiu <qiujian@rock-chips.com> |
lib: optee_client: Extract keymaster CA module
Extract keymaster CA module from OpteeClientInterface refactoring code for keymaster reads and writes form caller module
Change-Id: I1069fce0d29d9d981
lib: optee_client: Extract keymaster CA module
Extract keymaster CA module from OpteeClientInterface refactoring code for keymaster reads and writes form caller module
Change-Id: I1069fce0d29d9d9815f71e7f3b4d231754382acd Signed-off-by: Jian Qiu <qiujian@rock-chips.com>
show more ...
|
| #
65413a00 |
| 05-Jul-2018 |
Jian Qiu <qiujian@rock-chips.com> |
fastboot: add FASTBOOT_OEM_UNLOCK option
This enables the following fastboot commands: fastboot oem unlock fastboot oem unlock_accept fastboot oem lock fastboot getvar oem-unlock
Android 8.
fastboot: add FASTBOOT_OEM_UNLOCK option
This enables the following fastboot commands: fastboot oem unlock fastboot oem unlock_accept fastboot oem lock fastboot getvar oem-unlock
Android 8.1 need the oem unlock status attach to bootargs on boot.
Change-Id: Icc83451336a4dea2cbcf4927287de23bc8e28cb1 Signed-off-by: Jian Qiu <qiujian@rock-chips.com>
show more ...
|
| #
965eda41 |
| 07-Nov-2016 |
Jocelyn Bohr <bohr@google.com> |
Add support for fastboot command over UDP
The Raspberry Pi does not support USB device mode, so fastboot over USB does not work. This patch adds support for and partially implements the device side
Add support for fastboot command over UDP
The Raspberry Pi does not support USB device mode, so fastboot over USB does not work. This patch adds support for and partially implements the device side fastboot UDP protocol as a U-boot command. It requires an ip address set and ethernet initialized.
- Modify U-boot fastboot command to do fastboot over UDP - Add net/fastboot.c, which implements fastboot server functions - Handle QUERY and INIT fastboot packets - Add CONFIG_UDP_FUNCION_FASTBOOT to enable fastboot over UDP
Bug: 31887729 Test: Tested with fastboot, responds correctly to query and init packets.
Change-Id: I4045abaf7a4455d756b7c1c00215afaa90c70a6e
show more ...
|
| #
81ae24d4 |
| 06-Nov-2017 |
Kever Yang <kever.yang@rock-chips.com> |
fastboot: add buffer addr for RK3066
Change-Id: I0d39e50063ab040d1027d342081bc63a19c9389b Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
|
| #
48f6232e |
| 25-Aug-2017 |
Tom Rini <trini@konsulko.com> |
Kconfig: Migrate all of cmd/fastboot/Kconfig to defconfigs
- Move ANDROID_IMAGE_SUPPORT to top level Kconfig under images as it's not strictly part of fastboot. - Add some defaults for the fastboo
Kconfig: Migrate all of cmd/fastboot/Kconfig to defconfigs
- Move ANDROID_IMAGE_SUPPORT to top level Kconfig under images as it's not strictly part of fastboot. - Add some defaults for the fastboot buffer location and size - Migrate all options listed in cmd/fastboot/Kconfig - Cleanup the README
Signed-off-by: Tom Rini <trini@konsulko.com>
show more ...
|
| #
00fd59dd |
| 04-Aug-2017 |
Simon Glass <sjg@chromium.org> |
README: Drop information about commands
Most of this is duplicated in Kconfig help. Add some of that which is not, and remove the help from the README.
Signed-off-by: Simon Glass <sjg@chromium.org>
README: Drop information about commands
Most of this is duplicated in Kconfig help. Add some of that which is not, and remove the help from the README.
Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
show more ...
|
| #
2d221489 |
| 29-Nov-2016 |
Stefano Babic <sbabic@denx.de> |
Merge branch 'master' of git://git.denx.de/u-boot
Signed-off-by: Stefano Babic <sbabic@denx.de>
|
| #
c2948731 |
| 13-Nov-2016 |
Yann E. MORIN <yann.morin.1998@free.fr> |
fastboot: simplify the Kconfig logic
Currently, the fastboot item in menuconfig is a comment followed by a boolean option withan empty prompt, followed by a menu:
*** FASTBOOT *** [*]
fastboot: simplify the Kconfig logic
Currently, the fastboot item in menuconfig is a comment followed by a boolean option withan empty prompt, followed by a menu:
*** FASTBOOT *** [*] Fastboot support --->
This is not "nice-looking" at all...
Change the logic to make the boolean option a "menuconfig" rather than a mere "config", so that all dependent options gets groupped under a menu. The layout is now:
*** FASTBOOT *** [*] Fastboot support --->
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Simon Glass <sjg@chromium.org> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org>
show more ...
|
| #
9af5ba87 |
| 24-Oct-2016 |
Semen Protsenko <semen.protsenko@linaro.org> |
fastboot: Add CONFIG_FASTBOOT_USB_DEV option
Some boards (like AM57x EVM) has USB OTG controller other than 0. So in order to use correct controller number in compiled environment we should define C
fastboot: Add CONFIG_FASTBOOT_USB_DEV option
Some boards (like AM57x EVM) has USB OTG controller other than 0. So in order to use correct controller number in compiled environment we should define CONFIG_FASTBOOT_USB_DEV option.
For example, when doing "fastboot reboot-bootloader" we want to enter fastboot mode automatically. But to do so we need to provide controller number to "fastboot" command. If this procedure is defined in some config which is common to bunch of boards, and boards have different USB controller numbers, we can't just hardcode "fastboot 0" in the environment. We need to use configurable option, which this patch adds.
Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org> Reviewed-by: Tom Rini <trini@konsulko.com>
show more ...
|
| #
6f6c8630 |
| 09-Sep-2016 |
Petr Kulhavy <brain@jikos.cz> |
fastboot: move FASTBOOT_FLASH options into Kconfig
Move FASTBOOT_MBR_NAME and FASTBOOT_GPT_NAME into Kconfig. Add dependency on the FASTBOOT_FLASH setting (also for FASTBOOT_MBR_NAME). Remove the no
fastboot: move FASTBOOT_FLASH options into Kconfig
Move FASTBOOT_MBR_NAME and FASTBOOT_GPT_NAME into Kconfig. Add dependency on the FASTBOOT_FLASH setting (also for FASTBOOT_MBR_NAME). Remove the now redundant GPT_ENTRY_NAME.
Signed-off-by: Petr Kulhavy <brain@jikos.cz> Reviewed-by: Tom Rini <trini@konsulko.com> Acked-by: Steve Rae <steve.rae@raedomain.com> Reviewed-by: Simon Glass <sjg@chromium.org> [trini: Add FIXME about xxx_PARTITION needing to be in Kconfig] Signed-off-by: Tom Rini <trini@konsulko.com>
show more ...
|
| #
e016f0b2 |
| 16-Aug-2016 |
Steve Rae <steve.rae@raedomain.com> |
fastboot: implement Kconfig
implement Kconfig for the 'fastboot' feature set
Signed-off-by: Steve Rae <steve.rae@raedomain.com>
|