All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 1/2] configs: am57xx_evm_defconfig: Enable 'bcb' command
@ 2019-07-25 17:20 Sam Protsenko
  2019-07-25 17:20 ` [U-Boot] [PATCH v2 2/2] configs: am57xx_evm_defconfig: Enable 'dtimg' command Sam Protsenko
  2019-08-01  3:36 ` [U-Boot] [PATCH v2 1/2] configs: am57xx_evm_defconfig: Enable 'bcb' command Tom Rini
  0 siblings, 2 replies; 4+ messages in thread
From: Sam Protsenko @ 2019-07-25 17:20 UTC (permalink / raw)
  To: u-boot

It is essential to have an access to BCB area of 'misc' partition on
Android devices [1]. For BeagleBoard X15 the 'bcb' command will be
further used for reboot reason implementation and booting to recovery.
It can be also used for debugging reasons, like checking RescueParty
messages in BCB area.

[1] doc/android/bcb.txt

Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
---
Changes in v2:
  - Handle HS defconfigs

 configs/am57xx_evm_defconfig        | 1 +
 configs/am57xx_hs_evm_defconfig     | 1 +
 configs/am57xx_hs_evm_usb_defconfig | 1 +
 3 files changed, 3 insertions(+)

diff --git a/configs/am57xx_evm_defconfig b/configs/am57xx_evm_defconfig
index a3de7a4ec4..a1b8d2d988 100644
--- a/configs/am57xx_evm_defconfig
+++ b/configs/am57xx_evm_defconfig
@@ -29,6 +29,7 @@ CONFIG_SPL_OS_BOOT=y
 CONFIG_SPL_SPI_LOAD=y
 CONFIG_SPL_YMODEM_SUPPORT=y
 CONFIG_CMD_SPL=y
+CONFIG_CMD_BCB=y
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_SETEXPR is not set
 # CONFIG_CMD_PMIC is not set
diff --git a/configs/am57xx_hs_evm_defconfig b/configs/am57xx_hs_evm_defconfig
index d2548ff660..4563e98401 100644
--- a/configs/am57xx_hs_evm_defconfig
+++ b/configs/am57xx_hs_evm_defconfig
@@ -31,6 +31,7 @@ CONFIG_SPL_SEPARATE_BSS=y
 CONFIG_SPL_DMA_SUPPORT=y
 # CONFIG_SPL_NAND_SUPPORT is not set
 CONFIG_SPL_SPI_LOAD=y
+CONFIG_CMD_BCB=y
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_SETEXPR is not set
 # CONFIG_CMD_PMIC is not set
diff --git a/configs/am57xx_hs_evm_usb_defconfig b/configs/am57xx_hs_evm_usb_defconfig
index b52d321a69..20063d1ebb 100644
--- a/configs/am57xx_hs_evm_usb_defconfig
+++ b/configs/am57xx_hs_evm_usb_defconfig
@@ -36,6 +36,7 @@ CONFIG_SPL_SPI_LOAD=y
 CONFIG_SPL_USB_GADGET=y
 CONFIG_SPL_DFU=y
 CONFIG_SPL_YMODEM_SUPPORT=y
+CONFIG_CMD_BCB=y
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_SETEXPR is not set
 # CONFIG_CMD_PMIC is not set
-- 
2.20.1

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

* [U-Boot] [PATCH v2 2/2] configs: am57xx_evm_defconfig: Enable 'dtimg' command
  2019-07-25 17:20 [U-Boot] [PATCH v2 1/2] configs: am57xx_evm_defconfig: Enable 'bcb' command Sam Protsenko
@ 2019-07-25 17:20 ` Sam Protsenko
  2019-08-01  3:36   ` Tom Rini
  2019-08-01  3:36 ` [U-Boot] [PATCH v2 1/2] configs: am57xx_evm_defconfig: Enable 'bcb' command Tom Rini
  1 sibling, 1 reply; 4+ messages in thread
From: Sam Protsenko @ 2019-07-25 17:20 UTC (permalink / raw)
  To: u-boot

We are going to implement DTBO partition for BeagleBoard X15 further. To
support this, 'dtimg' command must be enabled.

Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
---
Changes in v2:
  - Handle HS defconfigs

 configs/am57xx_evm_defconfig        | 1 +
 configs/am57xx_hs_evm_defconfig     | 1 +
 configs/am57xx_hs_evm_usb_defconfig | 1 +
 3 files changed, 3 insertions(+)

diff --git a/configs/am57xx_evm_defconfig b/configs/am57xx_evm_defconfig
index a1b8d2d988..96de6f48c9 100644
--- a/configs/am57xx_evm_defconfig
+++ b/configs/am57xx_evm_defconfig
@@ -28,6 +28,7 @@ CONFIG_SPL_DMA_SUPPORT=y
 CONFIG_SPL_OS_BOOT=y
 CONFIG_SPL_SPI_LOAD=y
 CONFIG_SPL_YMODEM_SUPPORT=y
+CONFIG_CMD_DTIMG=y
 CONFIG_CMD_SPL=y
 CONFIG_CMD_BCB=y
 # CONFIG_CMD_FLASH is not set
diff --git a/configs/am57xx_hs_evm_defconfig b/configs/am57xx_hs_evm_defconfig
index 4563e98401..d776a0b244 100644
--- a/configs/am57xx_hs_evm_defconfig
+++ b/configs/am57xx_hs_evm_defconfig
@@ -31,6 +31,7 @@ CONFIG_SPL_SEPARATE_BSS=y
 CONFIG_SPL_DMA_SUPPORT=y
 # CONFIG_SPL_NAND_SUPPORT is not set
 CONFIG_SPL_SPI_LOAD=y
+CONFIG_CMD_DTIMG=y
 CONFIG_CMD_BCB=y
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_SETEXPR is not set
diff --git a/configs/am57xx_hs_evm_usb_defconfig b/configs/am57xx_hs_evm_usb_defconfig
index 20063d1ebb..6419c53296 100644
--- a/configs/am57xx_hs_evm_usb_defconfig
+++ b/configs/am57xx_hs_evm_usb_defconfig
@@ -36,6 +36,7 @@ CONFIG_SPL_SPI_LOAD=y
 CONFIG_SPL_USB_GADGET=y
 CONFIG_SPL_DFU=y
 CONFIG_SPL_YMODEM_SUPPORT=y
+CONFIG_CMD_DTIMG=y
 CONFIG_CMD_BCB=y
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_SETEXPR is not set
-- 
2.20.1

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

* [U-Boot] [PATCH v2 1/2] configs: am57xx_evm_defconfig: Enable 'bcb' command
  2019-07-25 17:20 [U-Boot] [PATCH v2 1/2] configs: am57xx_evm_defconfig: Enable 'bcb' command Sam Protsenko
  2019-07-25 17:20 ` [U-Boot] [PATCH v2 2/2] configs: am57xx_evm_defconfig: Enable 'dtimg' command Sam Protsenko
@ 2019-08-01  3:36 ` Tom Rini
  1 sibling, 0 replies; 4+ messages in thread
From: Tom Rini @ 2019-08-01  3:36 UTC (permalink / raw)
  To: u-boot

On Thu, Jul 25, 2019 at 08:20:18PM +0300, Sam Protsenko wrote:

> It is essential to have an access to BCB area of 'misc' partition on
> Android devices [1]. For BeagleBoard X15 the 'bcb' command will be
> further used for reboot reason implementation and booting to recovery.
> It can be also used for debugging reasons, like checking RescueParty
> messages in BCB area.
> 
> [1] doc/android/bcb.txt
> 
> Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>

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: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190731/069806db/attachment.sig>

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

* [U-Boot] [PATCH v2 2/2] configs: am57xx_evm_defconfig: Enable 'dtimg' command
  2019-07-25 17:20 ` [U-Boot] [PATCH v2 2/2] configs: am57xx_evm_defconfig: Enable 'dtimg' command Sam Protsenko
@ 2019-08-01  3:36   ` Tom Rini
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2019-08-01  3:36 UTC (permalink / raw)
  To: u-boot

On Thu, Jul 25, 2019 at 08:20:19PM +0300, Sam Protsenko wrote:

> We are going to implement DTBO partition for BeagleBoard X15 further. To
> support this, 'dtimg' command must be enabled.
> 
> Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>

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: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190731/7dcb8465/attachment.sig>

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

end of thread, other threads:[~2019-08-01  3:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-25 17:20 [U-Boot] [PATCH v2 1/2] configs: am57xx_evm_defconfig: Enable 'bcb' command Sam Protsenko
2019-07-25 17:20 ` [U-Boot] [PATCH v2 2/2] configs: am57xx_evm_defconfig: Enable 'dtimg' command Sam Protsenko
2019-08-01  3:36   ` Tom Rini
2019-08-01  3:36 ` [U-Boot] [PATCH v2 1/2] configs: am57xx_evm_defconfig: Enable 'bcb' command 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.