alarm/uboot-clearfog to 2013.01-4

This commit is contained in:
moonman 2016-03-01 22:52:44 -07:00
parent 90fc98c45e
commit 4b4293e98c
2 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@ buildarch=4
pkgbase=uboot-clearfog
pkgname=('uboot-clearfog')
pkgver=2013.01
pkgrel=3
pkgrel=4
arch=('armv7h')
url="http://git.denx.de/u-boot.git/"
license=('GPL')
@ -16,7 +16,7 @@ source=('u-boot-clearfog.mmc.xz'
'sd_fusing.sh')
md5sums=('7d4703da3cb5e278801512eaf3833987'
'f8530ce3e88e48ab4342d7a8cd791a95'
'0d5c13ccc7045af73de8685d4f961bb7'
'74553971c70ec14195955bbd579b63a6'
'cb9ea2fa6f4436c2645b0e465597a734')

View file

@ -13,5 +13,5 @@ mainargs=setenv bootargs console=${console} root=${root} rw rootwait ${optargs}
loadkernel=ext4load mmc 0:1 ${loadaddr} ${bootdir}/${bootfilez}
loadfdt=ext4load mmc 0:1 ${fdtaddr} ${fdtdir}/${fdtfile}
loadrd=ext4load mmc 0:1 ${rdaddr} ${bootdir}/${rdfile}
startboot=run mainargs; run loadkernel; run loadfdt; if run loadrd; then bootz ${loadaddr} ${rdaddr}:${filesize} ${fdtaddr}; else bootz ${loadaddr} - ${fdtaddr}; fi;
startboot=date reset; date reset; run mainargs; run loadkernel; run loadfdt; if run loadrd; then bootz ${loadaddr} ${rdaddr}:${filesize} ${fdtaddr}; else bootz ${loadaddr} - ${fdtaddr}; fi;
loaduenv=echo Checking for: ${bootdir}/uEnv.txt ...; if test -e mmc 0:1 ${bootdir}/uEnv.txt; then ext4load mmc 0:1 ${loadaddr} ${bootdir}/uEnv.txt; env import -t ${loadaddr} ${filesize}; echo Loaded environment from ${bootdir}/uEnv.txt; echo Checking if uenvcmd is set ...; if test -n ${uenvcmd}; then echo Running uenvcmd ...; run uenvcmd; fi; fi;