All of lore.kernel.org
 help / color / mirror / Atom feed
* [BUGFIX PATCH] configs: synquacer: Fix dfu_alt_info to use nor1
@ 2021-11-10  0:40 Masami Hiramatsu
  2021-11-10 11:55 ` Ilias Apalodimas
  2021-11-16 19:25 ` Tom Rini
  0 siblings, 2 replies; 3+ messages in thread
From: Masami Hiramatsu @ 2021-11-10  0:40 UTC (permalink / raw)
  To: Simon Glass, Tom Rini, Heinrich Schuchardt, Marek Behún
  Cc: Masami Hiramatsu, Jassi Brar, Ilias Apalodimas, Masahisa Kojima,
	Takahiro Akashi, u-boot

Fix dfu_alt_info to use nor1 instead of the device name.
This reverts a part of commit 59bd18d4c4d7 ("configs: synquacer:
Remove mtdparts settings and update DFU setting") because the
commit a4f2d8341455 ("mtd: spi: nor: force mtd name to "nor%d"")
changed the mtd device naming scheme to nor%d.

Signed-off-by: Masami Hiramatsu <masami.hiramatsu@linaro.org>
---
 include/configs/synquacer.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/configs/synquacer.h b/include/configs/synquacer.h
index 4503cf3f6d..8fe10d7485 100644
--- a/include/configs/synquacer.h
+++ b/include/configs/synquacer.h
@@ -62,7 +62,7 @@
 /* #define CONFIG_SYS_PCI_64BIT		1 */
 
 #define DEFAULT_DFU_ALT_INFO "dfu_alt_info="				\
-			"mtd mx66u51235f=u-boot.bin raw 200000 100000;"	\
+			"mtd nor1=u-boot.bin raw 200000 100000;"	\
 			"fip.bin raw 180000 78000;"			\
 			"optee.bin raw 500000 100000\0"
 


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

* Re: [BUGFIX PATCH] configs: synquacer: Fix dfu_alt_info to use nor1
  2021-11-10  0:40 [BUGFIX PATCH] configs: synquacer: Fix dfu_alt_info to use nor1 Masami Hiramatsu
@ 2021-11-10 11:55 ` Ilias Apalodimas
  2021-11-16 19:25 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Ilias Apalodimas @ 2021-11-10 11:55 UTC (permalink / raw)
  To: Masami Hiramatsu
  Cc: Simon Glass, Tom Rini, Heinrich Schuchardt, Marek Behún,
	Jassi Brar, Masahisa Kojima, Takahiro Akashi, u-boot

On Wed, 10 Nov 2021 at 02:40, Masami Hiramatsu
<masami.hiramatsu@linaro.org> wrote:
>
> Fix dfu_alt_info to use nor1 instead of the device name.
> This reverts a part of commit 59bd18d4c4d7 ("configs: synquacer:
> Remove mtdparts settings and update DFU setting") because the
> commit a4f2d8341455 ("mtd: spi: nor: force mtd name to "nor%d"")
> changed the mtd device naming scheme to nor%d.
>
> Signed-off-by: Masami Hiramatsu <masami.hiramatsu@linaro.org>
> ---
>  include/configs/synquacer.h |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/configs/synquacer.h b/include/configs/synquacer.h
> index 4503cf3f6d..8fe10d7485 100644
> --- a/include/configs/synquacer.h
> +++ b/include/configs/synquacer.h
> @@ -62,7 +62,7 @@
>  /* #define CONFIG_SYS_PCI_64BIT                1 */
>
>  #define DEFAULT_DFU_ALT_INFO "dfu_alt_info="                           \
> -                       "mtd mx66u51235f=u-boot.bin raw 200000 100000;" \
> +                       "mtd nor1=u-boot.bin raw 200000 100000;"        \
>                         "fip.bin raw 180000 78000;"                     \
>                         "optee.bin raw 500000 100000\0"
>
>

Acked-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>

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

* Re: [BUGFIX PATCH] configs: synquacer: Fix dfu_alt_info to use nor1
  2021-11-10  0:40 [BUGFIX PATCH] configs: synquacer: Fix dfu_alt_info to use nor1 Masami Hiramatsu
  2021-11-10 11:55 ` Ilias Apalodimas
@ 2021-11-16 19:25 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Tom Rini @ 2021-11-16 19:25 UTC (permalink / raw)
  To: Masami Hiramatsu
  Cc: Simon Glass, Heinrich Schuchardt, Marek Behún, Jassi Brar,
	Ilias Apalodimas, Masahisa Kojima, Takahiro Akashi, u-boot

[-- Attachment #1: Type: text/plain, Size: 558 bytes --]

On Wed, Nov 10, 2021 at 09:40:07AM +0900, Masami Hiramatsu wrote:

> Fix dfu_alt_info to use nor1 instead of the device name.
> This reverts a part of commit 59bd18d4c4d7 ("configs: synquacer:
> Remove mtdparts settings and update DFU setting") because the
> commit a4f2d8341455 ("mtd: spi: nor: force mtd name to "nor%d"")
> changed the mtd device naming scheme to nor%d.
> 
> Signed-off-by: Masami Hiramatsu <masami.hiramatsu@linaro.org>
> Acked-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>

Applied to u-boot/master, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

end of thread, other threads:[~2021-11-16 19:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-10  0:40 [BUGFIX PATCH] configs: synquacer: Fix dfu_alt_info to use nor1 Masami Hiramatsu
2021-11-10 11:55 ` Ilias Apalodimas
2021-11-16 19:25 ` 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.