Skip to content

Instantly share code, notes, and snippets.

@jelly
Created December 9, 2018 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jelly/6ec1e156b5da3830fc74d643bd1c0f1a to your computer and use it in GitHub Desktop.
Save jelly/6ec1e156b5da3830fc74d643bd1c0f1a to your computer and use it in GitHub Desktop.
NanoPi A64 boot.cmd
# 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