cubieboard2-uboot: remove useless uEnv.txt; use boot.cmd instead and remove console=tty0.

This commit is contained in:
Juan RP 2014-01-26 14:51:29 +01:00
parent 523f54b8eb
commit c1e93daab2
3 changed files with 3 additions and 5 deletions

View file

@ -1,5 +1,5 @@
setenv bootargs console=ttyS0,115200 console=tty0 root=/dev/mmcblk0p2 rw rootwait panic=10 ${extra}
setenv machid 0x10bb
setenv bootargs console=ttyS0,115200 root=/dev/mmcblk0p2 rw rootwait panic=10 ${extra}
fatload mmc 0 0x43000000 script.bin || ext2load mmc 0 0x43000000 boot/script.bin
fatload mmc 0 0x48000000 uImage || ext2load mmc 0 0x48000000 uImage boot/uImage
bootm 0x48000000
setenv machid 0x10bb

View file

@ -1 +0,0 @@
machid=0x10bb

View file

@ -1,7 +1,7 @@
# Template file for 'cubieboard2-uboot'
pkgname=cubieboard2-uboot
version=v2013.10
revision=5
revision=6
wrksrc="u-boot-sunxi-${version/v/}-sunxi"
hostmakedepends="sunxi-tools uboot-mkimage"
short_desc="Cubieboard2 U-Boot files for SD booting"
@ -31,5 +31,4 @@ do_install() {
vinstall script.bin 644 boot
vinstall boot.scr 644 boot
vinstall ${FILESDIR}/cubieboard2.bootcmd 644 boot boot.cmd
vinstall ${FILESDIR}/cubieboard2.env 644 boot uEnv.txt
}