public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Mathew McBride <matt@traverse.com.au>
To: development@lists.ipfire.org
Subject: [PATCH 3/4] config: u-boot: bypass the u-boot script on Traverse Ten64
Date: Mon, 03 Oct 2022 06:20:18 +0000	[thread overview]
Message-ID: <20221003062019.19636-4-matt@traverse.com.au> (raw)
In-Reply-To: <20221003062019.19636-1-matt@traverse.com.au>

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

The Ten64 board runs a U-Boot which works best directly
booting EFI. Attempting to load your own DTB or other steps
will cause issues.
(see https://ten64doc.traverse.com.au/faq/#common-issues)

The current stable Ten64 firmware unfortunately searches for
boot.scr before bootaa64.efi. So redirect it back to the EFI path.

A future Ten64 firmware package will prefer EFI first before
any boot script avoiding this issue. I will provide a patch
reversing this when that day comes.

Signed-off-by: Mathew McBride <matt(a)traverse.com.au>
---
 config/u-boot/boot.cmd | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/config/u-boot/boot.cmd b/config/u-boot/boot.cmd
index 64e9c05bc..a27996780 100644
--- a/config/u-boot/boot.cmd
+++ b/config/u-boot/boot.cmd
@@ -1,3 +1,12 @@
+# Traverse Ten64 board can boot EFI directly
+# Redirect it to the EFI process already in the
+# bootloader
+# (Remove on release of the 1.x Ten64 firmwire package)
+if test "${board}" = "ten64"; then
+	load ${devtype} ${devnum}:2 ${kernel_addr_r} efi/boot/bootaa64.efi
+	bootefi ${kernel_addr_r} ${fdt_addr_r}
+fi;
+
 if test ${boot_dev} = ""; then
 	setenv boot_dev mmc;
 	setenv root_dev /dev/mmcblk0p3;
-- 
2.30.1


  parent reply	other threads:[~2022-10-03  6:20 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-03  6:20 [PATCH 0/4] kernel: aarch64: Add support for Traverse Ten64 board Mathew McBride
2022-10-03  6:20 ` [PATCH 1/4] linux: enable options for NXP Layerscape Mathew McBride
2022-10-04  8:57   ` Michael Tremer
2022-10-03  6:20 ` [PATCH 2/4] kernel: add patches for SFP support on NXP Layerscape/DPAA2 (arm64) Mathew McBride
2022-10-04  8:57   ` Michael Tremer
2022-10-03  6:20 ` Mathew McBride [this message]
2022-10-04  8:57   ` [PATCH 3/4] config: u-boot: bypass the u-boot script on Traverse Ten64 Michael Tremer
2022-10-03  6:20 ` [PATCH 4/4] initscripts: load RTC module (RX8025) for Ten64 board Mathew McBride
2022-10-04  8:57   ` Michael Tremer
2022-10-04  8:56 ` [PATCH 0/4] kernel: aarch64: Add support for Traverse " Michael Tremer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221003062019.19636-4-matt@traverse.com.au \
    --to=matt@traverse.com.au \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox