All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] odroid-go2: two small config changes
@ 2021-02-22  9:25 Roger Pau Monné
  2021-02-22  9:25 ` [PATCH 1/2] odroid-go2: do not disable EFI Roger Pau Monné
  2021-02-22  9:25 ` [PATCH 2/2] odroid-go2: fix default FDT file path Roger Pau Monné
  0 siblings, 2 replies; 5+ messages in thread
From: Roger Pau Monné @ 2021-02-22  9:25 UTC (permalink / raw)
  To: u-boot

Hello,

The following series contain two config changes for odroid go2 board.

Roger Pau Monn? (2):
  odroid-go2: do not disable EFI
  odroid-go2: fix default FDT file path

 configs/odroid-go2_defconfig | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

-- 
2.30.1

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

* [PATCH 1/2] odroid-go2: do not disable EFI
  2021-02-22  9:25 [PATCH 0/2] odroid-go2: two small config changes Roger Pau Monné
@ 2021-02-22  9:25 ` Roger Pau Monné
  2021-02-24 10:08   ` Roger Pau Monné
  2021-02-22  9:25 ` [PATCH 2/2] odroid-go2: fix default FDT file path Roger Pau Monné
  1 sibling, 1 reply; 5+ messages in thread
From: Roger Pau Monné @ 2021-02-22  9:25 UTC (permalink / raw)
  To: u-boot

Remove the unset of the EFI loader, it's possible for U-Boot to
provide a EFI environment on this board, and it's also required by
the FreeBSD loader which mandated EFI on Aarch64.

Signed-off-by: Roger Pau Monn? <royger@FreeBSD.org>
---
 configs/odroid-go2_defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/configs/odroid-go2_defconfig b/configs/odroid-go2_defconfig
index 5632b15611..be7ba09334 100644
--- a/configs/odroid-go2_defconfig
+++ b/configs/odroid-go2_defconfig
@@ -109,4 +109,3 @@ CONFIG_SPL_TINY_MEMSET=y
 CONFIG_TPL_TINY_MEMSET=y
 CONFIG_LZO=y
 CONFIG_ERRNO_STR=y
-# CONFIG_EFI_LOADER is not set
-- 
2.30.1

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

* [PATCH 2/2] odroid-go2: fix default FDT file path
  2021-02-22  9:25 [PATCH 0/2] odroid-go2: two small config changes Roger Pau Monné
  2021-02-22  9:25 ` [PATCH 1/2] odroid-go2: do not disable EFI Roger Pau Monné
@ 2021-02-22  9:25 ` Roger Pau Monné
  2021-02-24 10:09   ` Roger Pau Monné
  1 sibling, 1 reply; 5+ messages in thread
From: Roger Pau Monné @ 2021-02-22  9:25 UTC (permalink / raw)
  To: u-boot

The path in the Linux kernel dts directory is
rockchip/rk3326-odroid-go2.dtb.

That also seems to match the FDT path set on other boards (ie:
rock64-rk3328 for example).

Signed-off-by: Roger Pau Monne <royger@FreeBSD.org>
---
 configs/odroid-go2_defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/odroid-go2_defconfig b/configs/odroid-go2_defconfig
index be7ba09334..6aa41e3755 100644
--- a/configs/odroid-go2_defconfig
+++ b/configs/odroid-go2_defconfig
@@ -24,7 +24,7 @@ CONFIG_FIT=y
 CONFIG_FIT_VERBOSE=y
 CONFIG_FIT_BEST_MATCH=y
 CONFIG_SPL_LOAD_FIT=y
-CONFIG_DEFAULT_FDT_FILE="rk3326-odroidgo2.dtb"
+CONFIG_DEFAULT_FDT_FILE="rockchip/rk3326-odroid-go2.dtb"
 # CONFIG_CONSOLE_MUX is not set
 # CONFIG_DISPLAY_CPUINFO is not set
 CONFIG_DISPLAY_BOARDINFO_LATE=y
-- 
2.30.1

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

* [PATCH 1/2] odroid-go2: do not disable EFI
  2021-02-22  9:25 ` [PATCH 1/2] odroid-go2: do not disable EFI Roger Pau Monné
@ 2021-02-24 10:08   ` Roger Pau Monné
  0 siblings, 0 replies; 5+ messages in thread
From: Roger Pau Monné @ 2021-02-24 10:08 UTC (permalink / raw)
  To: u-boot

Forgot to add maintainer, doing it now, sorry for the spam.

On Mon, Feb 22, 2021 at 10:25:58AM +0100, Roger Pau Monn? wrote:
> Remove the unset of the EFI loader, it's possible for U-Boot to
> provide a EFI environment on this board, and it's also required by
> the FreeBSD loader which mandated EFI on Aarch64.
> 
> Signed-off-by: Roger Pau Monn? <royger@FreeBSD.org>
> ---
>  configs/odroid-go2_defconfig | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/configs/odroid-go2_defconfig b/configs/odroid-go2_defconfig
> index 5632b15611..be7ba09334 100644
> --- a/configs/odroid-go2_defconfig
> +++ b/configs/odroid-go2_defconfig
> @@ -109,4 +109,3 @@ CONFIG_SPL_TINY_MEMSET=y
>  CONFIG_TPL_TINY_MEMSET=y
>  CONFIG_LZO=y
>  CONFIG_ERRNO_STR=y
> -# CONFIG_EFI_LOADER is not set
> -- 
> 2.30.1
> 

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

* [PATCH 2/2] odroid-go2: fix default FDT file path
  2021-02-22  9:25 ` [PATCH 2/2] odroid-go2: fix default FDT file path Roger Pau Monné
@ 2021-02-24 10:09   ` Roger Pau Monné
  0 siblings, 0 replies; 5+ messages in thread
From: Roger Pau Monné @ 2021-02-24 10:09 UTC (permalink / raw)
  To: u-boot

Forgot to Cc the maintainer, doing it now, sorry for the spam.

On Mon, Feb 22, 2021 at 10:25:59AM +0100, Roger Pau Monn? wrote:
> The path in the Linux kernel dts directory is
> rockchip/rk3326-odroid-go2.dtb.
> 
> That also seems to match the FDT path set on other boards (ie:
> rock64-rk3328 for example).
> 
> Signed-off-by: Roger Pau Monne <royger@FreeBSD.org>
> ---
>  configs/odroid-go2_defconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configs/odroid-go2_defconfig b/configs/odroid-go2_defconfig
> index be7ba09334..6aa41e3755 100644
> --- a/configs/odroid-go2_defconfig
> +++ b/configs/odroid-go2_defconfig
> @@ -24,7 +24,7 @@ CONFIG_FIT=y
>  CONFIG_FIT_VERBOSE=y
>  CONFIG_FIT_BEST_MATCH=y
>  CONFIG_SPL_LOAD_FIT=y
> -CONFIG_DEFAULT_FDT_FILE="rk3326-odroidgo2.dtb"
> +CONFIG_DEFAULT_FDT_FILE="rockchip/rk3326-odroid-go2.dtb"
>  # CONFIG_CONSOLE_MUX is not set
>  # CONFIG_DISPLAY_CPUINFO is not set
>  CONFIG_DISPLAY_BOARDINFO_LATE=y
> -- 
> 2.30.1
> 

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

end of thread, other threads:[~2021-02-24 10:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-22  9:25 [PATCH 0/2] odroid-go2: two small config changes Roger Pau Monné
2021-02-22  9:25 ` [PATCH 1/2] odroid-go2: do not disable EFI Roger Pau Monné
2021-02-24 10:08   ` Roger Pau Monné
2021-02-22  9:25 ` [PATCH 2/2] odroid-go2: fix default FDT file path Roger Pau Monné
2021-02-24 10:09   ` Roger Pau Monné

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.