From d737d4e1734b9f1aa3bb590133b3e9f99b89b00c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Mon, 5 Oct 2015 06:45:36 -0300 Subject: uboot-sunxi-linux-libre: add new package to [libre] --- libre/uboot-sunxi-linux-libre/boot.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 libre/uboot-sunxi-linux-libre/boot.txt (limited to 'libre/uboot-sunxi-linux-libre/boot.txt') 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 -- cgit v1.2.3-2-g168b