[U-Boot] [PATCH v2 0/2] davinci: omapl138_lcdk: enable commonly used commands

Hi,
This patch series enables some commonly used commands for OMAP-L138 LCDK.
v1->v2: Change to using CONFIG_TI_COMMON_CMD_OPTIONS
Sekhar Nori (2): davinci: da8xxevm: add support for TI_COMMON_CMD_OPTIONS davinci: omapl138_lcdk: switch to using TI_COMMON_CMD_OPTIONS
board/davinci/da8xxevm/Kconfig | 2 ++ configs/omapl138_lcdk_defconfig | 12 ++---------- 2 files changed, 4 insertions(+), 10 deletions(-)

OMAP-L138 LCDK board can benefit from using the commonly used commands enabled by TI_COMMON_CMD_OPTIONS.
Source the relevant Kconfig file so TI_COMMON_CMD_OPTIONS can be enabled for OMAP-L138 LCDK board in a future patch.
Signed-off-by: Sekhar Nori nsekhar@ti.com --- board/davinci/da8xxevm/Kconfig | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/board/davinci/da8xxevm/Kconfig b/board/davinci/da8xxevm/Kconfig index 7d0de1d0fa51..0935abfd42ab 100644 --- a/board/davinci/da8xxevm/Kconfig +++ b/board/davinci/da8xxevm/Kconfig @@ -22,4 +22,6 @@ config SYS_VENDOR config SYS_CONFIG_NAME default "omapl138_lcdk"
+source "board/ti/common/Kconfig" + endif

On Thu, May 11, 2017 at 08:14:21PM +0530, Sekhar Nori wrote:
OMAP-L138 LCDK board can benefit from using the commonly used commands enabled by TI_COMMON_CMD_OPTIONS.
Source the relevant Kconfig file so TI_COMMON_CMD_OPTIONS can be enabled for OMAP-L138 LCDK board in a future patch.
Signed-off-by: Sekhar Nori nsekhar@ti.com
Reviewed-by: Tom Rini trini@konsulko.com

On Thu, May 11, 2017 at 08:14:21PM +0530, Sekhar Nori wrote:
OMAP-L138 LCDK board can benefit from using the commonly used commands enabled by TI_COMMON_CMD_OPTIONS.
Source the relevant Kconfig file so TI_COMMON_CMD_OPTIONS can be enabled for OMAP-L138 LCDK board in a future patch.
Signed-off-by: Sekhar Nori nsekhar@ti.com Reviewed-by: Tom Rini trini@konsulko.com
Applied to u-boot/master, thanks!

Now that we support using TI_COMMON_CMD_OPTIONS, we dont have to enable a number of commands explicitly in the defconfig if we enable TI_COMMON_CMD_OPTIONS.
Enable TI_COMMON_CMD_OPTIONS and regenerate the defconfig using "make savedefconfig".
CMD_GPIO has been kept disabled because there is no GPIO support (yet) on OMAP-L138 LCDK.
Signed-off-by: Sekhar Nori nsekhar@ti.com --- configs/omapl138_lcdk_defconfig | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-)
diff --git a/configs/omapl138_lcdk_defconfig b/configs/omapl138_lcdk_defconfig index 7a5a78f4944b..752ff5d860a1 100644 --- a/configs/omapl138_lcdk_defconfig +++ b/configs/omapl138_lcdk_defconfig @@ -1,6 +1,7 @@ CONFIG_ARM=y CONFIG_ARCH_DAVINCI=y CONFIG_TARGET_OMAPL138_LCDK=y +CONFIG_TI_COMMON_CMD_OPTIONS=y CONFIG_SPL_LIBCOMMON_SUPPORT=y CONFIG_SPL_LIBGENERIC_SUPPORT=y CONFIG_SPL_MMC_SUPPORT=y @@ -15,19 +16,10 @@ CONFIG_SPL=y CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0xb5 CONFIG_HUSH_PARSER=y CONFIG_SYS_PROMPT="U-Boot > " -CONFIG_CMD_BOOTZ=y # CONFIG_CMD_IMLS is not set -CONFIG_CMD_ASKENV=y # CONFIG_CMD_FLASH is not set -CONFIG_CMD_MMC=y -CONFIG_CMD_PART=y +# CONFIG_CMD_GPIO is not set # CONFIG_CMD_SETEXPR is not set -CONFIG_CMD_DHCP=y -CONFIG_CMD_MII=y -CONFIG_CMD_PING=y -CONFIG_CMD_EXT2=y -CONFIG_CMD_FAT=y -CONFIG_CMD_FS_GENERIC=y CONFIG_CMD_DIAG=y CONFIG_CMD_UBI=y CONFIG_SYS_NAND_U_BOOT_LOCATIONS=y

On Thu, May 11, 2017 at 08:14:22PM +0530, Sekhar Nori wrote:
Now that we support using TI_COMMON_CMD_OPTIONS, we dont have to enable a number of commands explicitly in the defconfig if we enable TI_COMMON_CMD_OPTIONS.
Enable TI_COMMON_CMD_OPTIONS and regenerate the defconfig using "make savedefconfig".
CMD_GPIO has been kept disabled because there is no GPIO support (yet) on OMAP-L138 LCDK.
Signed-off-by: Sekhar Nori nsekhar@ti.com
Reviewed-by: Tom Rini trini@konsulko.com

On Thu, May 11, 2017 at 08:14:22PM +0530, Sekhar Nori wrote:
Now that we support using TI_COMMON_CMD_OPTIONS, we dont have to enable a number of commands explicitly in the defconfig if we enable TI_COMMON_CMD_OPTIONS.
Enable TI_COMMON_CMD_OPTIONS and regenerate the defconfig using "make savedefconfig".
CMD_GPIO has been kept disabled because there is no GPIO support (yet) on OMAP-L138 LCDK.
Signed-off-by: Sekhar Nori nsekhar@ti.com Reviewed-by: Tom Rini trini@konsulko.com
Applied to u-boot/master, thanks!
participants (2)
-
Sekhar Nori
-
Tom Rini