All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 0/2] davinci: omapl138_lcdk: enable commonly used commands
@ 2017-05-11 14:44 Sekhar Nori
  2017-05-11 14:44 ` [U-Boot] [PATCH v2 1/2] davinci: omapl138_lcdk: add support for TI_COMMON_CMD_OPTIONS Sekhar Nori
  2017-05-11 14:44 ` [U-Boot] [PATCH v2 2/2] davinci: omapl138_lcdk: switch to using TI_COMMON_CMD_OPTIONS Sekhar Nori
  0 siblings, 2 replies; 7+ messages in thread
From: Sekhar Nori @ 2017-05-11 14:44 UTC (permalink / raw)
  To: u-boot

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(-)

-- 
2.9.0

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH v2 1/2] davinci: omapl138_lcdk: add support for TI_COMMON_CMD_OPTIONS
  2017-05-11 14:44 [U-Boot] [PATCH v2 0/2] davinci: omapl138_lcdk: enable commonly used commands Sekhar Nori
@ 2017-05-11 14:44 ` Sekhar Nori
  2017-05-11 15:27   ` Tom Rini
  2017-05-12 17:24   ` [U-Boot] [U-Boot, v2, " Tom Rini
  2017-05-11 14:44 ` [U-Boot] [PATCH v2 2/2] davinci: omapl138_lcdk: switch to using TI_COMMON_CMD_OPTIONS Sekhar Nori
  1 sibling, 2 replies; 7+ messages in thread
From: Sekhar Nori @ 2017-05-11 14:44 UTC (permalink / raw)
  To: u-boot

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
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH v2 2/2] davinci: omapl138_lcdk: switch to using TI_COMMON_CMD_OPTIONS
  2017-05-11 14:44 [U-Boot] [PATCH v2 0/2] davinci: omapl138_lcdk: enable commonly used commands Sekhar Nori
  2017-05-11 14:44 ` [U-Boot] [PATCH v2 1/2] davinci: omapl138_lcdk: add support for TI_COMMON_CMD_OPTIONS Sekhar Nori
@ 2017-05-11 14:44 ` Sekhar Nori
  2017-05-11 15:28   ` Tom Rini
  2017-05-12 17:24   ` [U-Boot] [U-Boot, v2, " Tom Rini
  1 sibling, 2 replies; 7+ messages in thread
From: Sekhar Nori @ 2017-05-11 14:44 UTC (permalink / raw)
  To: u-boot

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
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH v2 1/2] davinci: omapl138_lcdk: add support for TI_COMMON_CMD_OPTIONS
  2017-05-11 14:44 ` [U-Boot] [PATCH v2 1/2] davinci: omapl138_lcdk: add support for TI_COMMON_CMD_OPTIONS Sekhar Nori
@ 2017-05-11 15:27   ` Tom Rini
  2017-05-12 17:24   ` [U-Boot] [U-Boot, v2, " Tom Rini
  1 sibling, 0 replies; 7+ messages in thread
From: Tom Rini @ 2017-05-11 15:27 UTC (permalink / raw)
  To: u-boot

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>

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170511/59d0a047/attachment.sig>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH v2 2/2] davinci: omapl138_lcdk: switch to using TI_COMMON_CMD_OPTIONS
  2017-05-11 14:44 ` [U-Boot] [PATCH v2 2/2] davinci: omapl138_lcdk: switch to using TI_COMMON_CMD_OPTIONS Sekhar Nori
@ 2017-05-11 15:28   ` Tom Rini
  2017-05-12 17:24   ` [U-Boot] [U-Boot, v2, " Tom Rini
  1 sibling, 0 replies; 7+ messages in thread
From: Tom Rini @ 2017-05-11 15:28 UTC (permalink / raw)
  To: u-boot

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>

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170511/c6f02a14/attachment.sig>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [U-Boot, v2, 1/2] davinci: omapl138_lcdk: add support for TI_COMMON_CMD_OPTIONS
  2017-05-11 14:44 ` [U-Boot] [PATCH v2 1/2] davinci: omapl138_lcdk: add support for TI_COMMON_CMD_OPTIONS Sekhar Nori
  2017-05-11 15:27   ` Tom Rini
@ 2017-05-12 17:24   ` Tom Rini
  1 sibling, 0 replies; 7+ messages in thread
From: Tom Rini @ 2017-05-12 17:24 UTC (permalink / raw)
  To: u-boot

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!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170512/22867769/attachment.sig>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [U-Boot, v2, 2/2] davinci: omapl138_lcdk: switch to using TI_COMMON_CMD_OPTIONS
  2017-05-11 14:44 ` [U-Boot] [PATCH v2 2/2] davinci: omapl138_lcdk: switch to using TI_COMMON_CMD_OPTIONS Sekhar Nori
  2017-05-11 15:28   ` Tom Rini
@ 2017-05-12 17:24   ` Tom Rini
  1 sibling, 0 replies; 7+ messages in thread
From: Tom Rini @ 2017-05-12 17:24 UTC (permalink / raw)
  To: u-boot

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!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170512/4626b4be/attachment.sig>

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-05-12 17:24 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-11 14:44 [U-Boot] [PATCH v2 0/2] davinci: omapl138_lcdk: enable commonly used commands Sekhar Nori
2017-05-11 14:44 ` [U-Boot] [PATCH v2 1/2] davinci: omapl138_lcdk: add support for TI_COMMON_CMD_OPTIONS Sekhar Nori
2017-05-11 15:27   ` Tom Rini
2017-05-12 17:24   ` [U-Boot] [U-Boot, v2, " Tom Rini
2017-05-11 14:44 ` [U-Boot] [PATCH v2 2/2] davinci: omapl138_lcdk: switch to using TI_COMMON_CMD_OPTIONS Sekhar Nori
2017-05-11 15:28   ` Tom Rini
2017-05-12 17:24   ` [U-Boot] [U-Boot, v2, " Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.