summaryrefslogtreecommitdiff
path: root/drivers/fastboot
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2023-08-09 13:15:51 -0400
committerTom Rini <[email protected]>2023-08-09 13:15:51 -0400
commit321d7b4d875a77552a969dd6ea5bbed2644fcb0c (patch)
treedf15c6c203dcdd35fe15f7dae4ff024f82d5a618 /drivers/fastboot
parent1e1437d9f8b5be362afdd0212dbae6c41f53f3d8 (diff)
parent06b51f77f5be60200a5f0037509c191b102e5e00 (diff)
Merge branch '2023-08-09-misc-cleanups' into next
- Rework the arch linker scripts to be consistent for all, support Kconfig fragments in the board directory and fix some Kconfig options that were hex-type by default of 0 not 0x0.
Diffstat (limited to 'drivers/fastboot')
-rw-r--r--drivers/fastboot/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/fastboot/Kconfig b/drivers/fastboot/Kconfig
index a3df9aa3d0f..837c6f1180d 100644
--- a/drivers/fastboot/Kconfig
+++ b/drivers/fastboot/Kconfig
@@ -56,7 +56,7 @@ config FASTBOOT_BUF_ADDR
ROCKCHIP_RK3399
default 0x280000 if ROCKCHIP_RK3368
default 0x100000 if ARCH_ZYNQMP
- default 0 if SANDBOX
+ default 0x0 if SANDBOX
help
The fastboot protocol requires a large memory buffer for
downloads. Define this to the starting RAM address to use for