git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
26be18f
)
arm: total_compute: Support Debian boot
author
Leo Yan
<leo.yan@arm.com>
Fri, 25 Oct 2024 17:18:20 +0000
(18:18 +0100)
committer
Tom Rini
<trini@konsulko.com>
Mon, 4 Nov 2024 20:50:44 +0000
(14:50 -0600)
Add booting option for Debian system.
Signed-off-by: Leo Yan <leo.yan@arm.com>
board/armltd/total_compute/total_compute.env
patch
|
blob
|
history
diff --git
a/board/armltd/total_compute/total_compute.env
b/board/armltd/total_compute/total_compute.env
index
93460aa
..
7924632
100644
(file)
--- a/
board/armltd/total_compute/total_compute.env
+++ b/
board/armltd/total_compute/total_compute.env
@@
-31,5
+31,9
@@
bootcmd=
elif iminfo ${load_addr}; then
echo 'Booting FIT image...';
bootm ${load_addr} ${load_addr} ${fdt_addr_r};
+ else;
+ echo 'Booting Debian...';
+ set bootargs $bootargs root=/dev/mmcblk0p1 rw;
+ booti ${kernel_addr_r} - ${fdt_addr_r};
fi;
echo 'ERROR: No valid image to boot the system. Aborting boot sequence.';