summaryrefslogtreecommitdiff
path: root/unmaintained/uboot-usbarmory/boot.txt
diff options
context:
space:
mode:
Diffstat (limited to 'unmaintained/uboot-usbarmory/boot.txt')
-rw-r--r--unmaintained/uboot-usbarmory/boot.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/unmaintained/uboot-usbarmory/boot.txt b/unmaintained/uboot-usbarmory/boot.txt
new file mode 100644
index 000000000..2454291f8
--- /dev/null
+++ b/unmaintained/uboot-usbarmory/boot.txt
@@ -0,0 +1,12 @@
+part uuid ${devtype} ${devnum}:${bootpart} uuid
+setenv bootargs console=ttyGS0,115200 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/${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