summaryrefslogtreecommitdiff
path: root/libre/uboot-sunxi-linux-libre/boot.txt
diff options
context:
space:
mode:
Diffstat (limited to 'libre/uboot-sunxi-linux-libre/boot.txt')
-rw-r--r--libre/uboot-sunxi-linux-libre/boot.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/libre/uboot-sunxi-linux-libre/boot.txt b/libre/uboot-sunxi-linux-libre/boot.txt
new file mode 100644
index 000000000..bd8417edd
--- /dev/null
+++ b/libre/uboot-sunxi-linux-libre/boot.txt
@@ -0,0 +1,19 @@
+part uuid ${devtype} ${devnum}:${bootpart} uuid
+setenv bootargs console=${console} root=PARTUUID=${uuid} rw rootwait
+
+if load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /boot/vmlinuz-linux-libre; then
+ if load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r} /boot/dtbs/linux-libre/${fdtfile}; then
+ if load ${devtype} ${devnum}:${bootpart} ${ramdisk_addr_r} /boot/initramfs-linux-libre.img; then
+ bootz ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r};
+ else
+ bootz ${kernel_addr_r} - ${fdt_addr_r};
+ fi;
+ fi;
+fi
+
+if load ${devtype} ${devnum}:${bootpart} 0x48000000 /boot/uImage-linux-libre; then
+ if load ${devtype} ${devnum}:${bootpart} 0x43000000 /boot/uboot-sunxi-linux-libre/script.bin; then
+ setenv bootm_boot_mode sec;
+ bootm 0x48000000;
+ fi;
+fi