NanoPi A64 boot.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set root partition to the second partition of boot device | |
part uuid ${devtype} ${devnum}:${bootpart} uuid | |
setenv bootargs console=${console} root=PARTUUID=${uuid} rw rootwait | |
if load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /boot/Image; then | |
setenv fdtfile allwinner/sun50i-a64-nanopi-a64.dtb | |
if load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r} /boot/dtbs/${fdtfile}; then | |
if load ${devtype} ${devnum}:${bootpart} ${ramdisk_addr_r} /boot/initramfs-linux.img; then | |
booti ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r}; | |
else | |
booti ${kernel_addr_r} - ${fdt_addr_r}; | |
fi; | |
fi; | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment