summaryrefslogtreecommitdiff
path: root/libre/uboot-sunxi-linux-libre/boot.txt
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-10-05 06:45:36 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-10-05 06:53:44 -0300
commitd737d4e1734b9f1aa3bb590133b3e9f99b89b00c (patch)
tree53e884be9ec57216cf685447fc6072aaf27cc48b /libre/uboot-sunxi-linux-libre/boot.txt
parent8f4210ea6e51b01c5ca354c1092e63e8639fdd98 (diff)
uboot-sunxi-linux-libre: add new package to [libre]
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