cubieboard2-uboot: fix copy/pasta in boot.txt.
This commit is contained in:
parent
1017e86c45
commit
d2e42d1173
2 changed files with 3 additions and 5 deletions
|
@ -2,10 +2,8 @@ part uuid ${devtype} ${devnum}:${bootpart} uuid
|
||||||
setenv bootargs console=${console} root=PARTUUID=${uuid} rw rootwait
|
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} ${kernel_addr_r} /boot/zImage; then
|
||||||
if load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r}
|
if load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r} /boot/dtbs/${fdtfile}; then
|
||||||
/boot/dtbs/${fdtfile}; then
|
if load ${devtype} ${devnum}:${bootpart} ${ramdisk_addr_r} /boot/initramfs-linux.img; 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};
|
bootz ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r};
|
||||||
else
|
else
|
||||||
bootz ${kernel_addr_r} - ${fdt_addr_r};
|
bootz ${kernel_addr_r} - ${fdt_addr_r};
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'cubieboard2-uboot'
|
# Template file for 'cubieboard2-uboot'
|
||||||
pkgname=cubieboard2-uboot
|
pkgname=cubieboard2-uboot
|
||||||
version=2015.01
|
version=2015.01
|
||||||
revision=1
|
revision=2
|
||||||
wrksrc="u-boot-${version}"
|
wrksrc="u-boot-${version}"
|
||||||
hostmakedepends="bc git sunxi-tools uboot-mkimage"
|
hostmakedepends="bc git sunxi-tools uboot-mkimage"
|
||||||
short_desc="U-Boot for cubieboard2"
|
short_desc="U-Boot for cubieboard2"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue