diff options
author | Aswath Govindraju <a-govindraju@ti.com> | 2021-06-01 16:51:47 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-06-08 21:38:53 -0400 |
commit | 8e3ea2da729df07f296611abeabba6cc67333daa (patch) | |
tree | a44e183bc4181581fa83309dd354e476a499683f /configs/pxm2_defconfig | |
parent | 2509493cc1482b2b07ea6fd883960cd6bc068af5 (diff) | |
download | u-boot-8e3ea2da729df07f296611abeabba6cc67333daa.tar.gz u-boot-8e3ea2da729df07f296611abeabba6cc67333daa.tar.bz2 u-boot-8e3ea2da729df07f296611abeabba6cc67333daa.zip |
usb: dfu: Migrate CONFIG_SYS_DFU_DATA_BUF_SIZE and CONFIG_SYS_DFU_MAX_FILE_SIZE to Kconfig
Currently the config options CONFIG_SYS_DFU_DATA_BUF_SIZE and
CONFIG_SYS_DFU_MAX_FILE_SIZE are being set in include/configs/<board>.h
files and also in <board_name>_defconfig files without a Kconfig option. It
is easier for users to set these configs in defconfig files than in config
header files as they are a part of the source code.
Add Kconfig symbols, and update the defconfigs by using tools/moveconfig.py
script.
Suggested-by: Pratyush Yadav <p.yadav@ti.com>
Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
Acked-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>
Acked-by: Matthias Brugger <mbrugger@suse.com>
Acked-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'configs/pxm2_defconfig')
-rw-r--r-- | configs/pxm2_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/pxm2_defconfig b/configs/pxm2_defconfig index eb70b6bbf8..8c21890ed7 100644 --- a/configs/pxm2_defconfig +++ b/configs/pxm2_defconfig @@ -75,6 +75,7 @@ CONFIG_BOOTCOUNT_LIMIT=y CONFIG_BOOTCOUNT_ENV=y CONFIG_DFU_NAND=y # CONFIG_SPL_DM_MMC is not set +CONFIG_SYS_DFU_DATA_BUF_SIZE=0x100000 CONFIG_MMC_OMAP_HS=y CONFIG_MTD=y CONFIG_MTD_RAW_NAND=y |