summaryrefslogtreecommitdiff
path: root/gnu/bootloader
diff options
context:
space:
mode:
authorArtyom V. Poptsov <poptsov.artyom@gmail.com>2026-01-07 10:21:37 +0300
committerRutherther <rutherther@ditigal.xyz>2026-01-16 20:13:41 +0100
commit9015ab3622c7056eab362e21ae265c35d185fe5c (patch)
tree628b9dac96ce9b80b31d0d75ca13b6a745fc62b6 /gnu/bootloader
parent7782a47f7fbf7775ac0af1b46fa1ec0ddab99eb1 (diff)
gnu: install-starfive-visionfive2-uEnv.txt: Set extra options.
* gnu/bootloader/u-boot.scm (install-starfive-visionfive2-uEnv.txt): Set "boot_targets" and "bootcmd_mmc1". Change-Id: I0ce157d66e792af605cfdb7cc5dbecf6e5171c5a Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/bootloader')
-rw-r--r--gnu/bootloader/u-boot.scm7
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/bootloader/u-boot.scm b/gnu/bootloader/u-boot.scm
index 3b20fd721d4..349bb724184 100644
--- a/gnu/bootloader/u-boot.scm
+++ b/gnu/bootloader/u-boot.scm
@@ -138,7 +138,12 @@ is BLOCK-SIZE * COUNT, or FILE size if COUNT is not given."
;; starfive_visionfive2.dtb. We cannot guarantee that users will
;; update this U-Boot, so set the FDT explicitly.
(plain-file "uEnv.txt"
- "fdtfile=starfive/jh7110-starfive-visionfive-2-v1.3b.dtb")))
+ (string-join
+ (list
+ "boot_targets=mmc1 nvme0 mmc0 dhcp"
+ "bootcmd_mmc1=bootflow scan"
+ "fdtfile=starfive/jh7110-starfive-visionfive-2-v1.3b.dtb")
+ "\n"))))
;;;