cubieboard2-uboot: fix copy/pasta in boot.txt.

This commit is contained in:
Juan RP 2015-05-21 09:18:57 +02:00
parent 1017e86c45
commit d2e42d1173
2 changed files with 3 additions and 5 deletions

View file

@ -2,10 +2,8 @@ part uuid ${devtype} ${devnum}:${bootpart} uuid
setenv bootargs console=${console} root=PARTUUID=${uuid} rw rootwait
if load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /boot/zImage; then
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
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
bootz ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r};
else
bootz ${kernel_addr_r} - ${fdt_addr_r};

View file

@ -1,7 +1,7 @@
# Template file for 'cubieboard2-uboot'
pkgname=cubieboard2-uboot
version=2015.01
revision=1
revision=2
wrksrc="u-boot-${version}"
hostmakedepends="bc git sunxi-tools uboot-mkimage"
short_desc="U-Boot for cubieboard2"