All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] u-boot-keystone: Update keystone u-boot to latest version
@ 2014-01-28  3:41 Sam Nelson
  2014-01-28  3:50 ` Denys Dmytriyenko
  0 siblings, 1 reply; 4+ messages in thread
From: Sam Nelson @ 2014-01-28  3:41 UTC (permalink / raw)
  To: meta-ti

- Update license and checksum
- Update source URL
- Added SPI Nor binaries and deployed images
- Update script to configure, compile, install, deploy

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
---
 recipes-bsp/u-boot/u-boot-keystone_2013.01.bb |   75 +++++++++++++++++++++++--
 1 file changed, 71 insertions(+), 4 deletions(-)

diff --git a/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb b/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb
index 788d813..d225cea 100644
--- a/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb
+++ b/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb
@@ -1,16 +1,83 @@
 require u-boot-ti.inc
 
 DESCRIPTION = "u-boot bootloader for Multi-Core BU devices"
+LICENSE = "GPLv2+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb"
 
 COMPATIBLE_MACHINE = "keystone"
 
-PR = "r2+gitr${SRCPV}"
+PACKAGE_ARCH = "${MACHINE_ARCH}"
 
-SRC_URI = "git://arago-project.org/git/projects/u-boot-keystone.git;protocol=git;branch=${BRANCH}"
+PR = "r3+gitr${SRCPV}"
+
+# for nightly switch the two below
+SRC_URI = "git://git.ti.com/keystone-linux/u-boot.git;protocol=git;branch=${BRANCH}"
 
 BRANCH = "master"
 
-# DEV.MCSDK-03.00.00.07
-SRCREV = "82f40e857d853165310d0753e79235aefb65d7ba"
+#Tag "K2_UBOOT_2013-01_13.12"
+SRCREV = "e4b19a8d418e35bf2bd63eba485afd5d9e436188"
+
+EXTRA_OEMAKE = 'CROSS_COMPILE=${TARGET_PREFIX} CC="${TARGET_PREFIX}gcc ${TOOLCHAIN_OPTIONS}"'
+
+S = "${WORKDIR}/git"
 
 UBOOT_SUFFIX = "bin"
+
+UBOOT_MAKE_TARGET = "u-boot-spi.gph"
+# SPI NOR Flash binaries
+UBOOT_SPI_SPL_BINARY = "u-boot-spl.bin"
+UBOOT_SPI_BINARY = "u-boot.img"
+UBOOT_SPI_GPH_BINARY = "u-boot-spi.gph"
+# SPI NOR Flash deployed images
+UBOOT_SPI_SPL_IMAGE = "u-boot-spl-${MACHINE}-${PV}-${PR}.bin"
+UBOOT_SPI_SPL_SYMLINK = "u-boot-spl-${MACHINE}.bin"
+UBOOT_SPI_IMAGE = "u-boot-${MACHINE}-${PV}-${PR}.img"
+UBOOT_SPI_SYMLINK = "u-boot-${MACHINE}.img"
+UBOOT_SPI_GPH_IMAGE = "u-boot-spi-${MACHINE}-${PV}-${PR}.gph"
+UBOOT_SPI_GPH_SYMLINK = "u-boot-spi-${MACHINE}.gph"
+
+do_configure () {
+	oe_runmake ${UBOOT_MACHINE}
+}
+
+do_compile () {
+	unset LDFLAGS
+	unset CFLAGS
+	unset CPPFLAGS
+	oe_runmake ${UBOOT_MAKE_TARGET}
+}
+
+do_install () {
+	install -d ${D}/boot
+	install ${S}/${UBOOT_BINARY} ${D}/boot/${UBOOT_IMAGE}
+	install ${S}/spl/${UBOOT_SPI_SPL_BINARY} ${D}/boot/${UBOOT_SPI_SPL_IMAGE}
+	install ${S}/${UBOOT_SPI_BINARY} ${D}/boot/${UBOOT_SPI_IMAGE}
+	install ${S}/${UBOOT_SPI_GPH_BINARY} ${D}/boot/${UBOOT_SPI_GPH_IMAGE}
+	ln -sf ${UBOOT_IMAGE} ${D}/boot/${UBOOT_BINARY}
+	ln -sf ${UBOOT_SPI_SPL_IMAGE} ${D}/boot/${UBOOT_SPI_SPL_BINARY}
+	ln -sf ${UBOOT_SPI_IMAGE} ${D}/boot/${UBOOT_SPI_BINARY}
+	ln -sf ${UBOOT_SPI_GPH_IMAGE} ${D}/boot/${UBOOT_SPI_GPH_BINARY}
+}
+
+do_deploy () {
+	install -d ${DEPLOY_DIR_IMAGE}
+	install ${S}/${UBOOT_BINARY} ${DEPLOY_DIR_IMAGE}/${UBOOT_IMAGE}
+	install ${S}/spl/${UBOOT_SPI_SPL_BINARY} ${DEPLOY_DIR_IMAGE}/${UBOOT_SPI_SPL_IMAGE}
+	install ${S}/${UBOOT_SPI_BINARY} ${DEPLOY_DIR_IMAGE}/${UBOOT_SPI_IMAGE}
+	install ${S}/${UBOOT_SPI_GPH_BINARY} ${DEPLOY_DIR_IMAGE}/${UBOOT_SPI_GPH_IMAGE}
+
+	cd ${DEPLOY_DIR_IMAGE}
+	rm -f ${UBOOT_BINARY} ${UBOOT_SYMLINK}
+	ln -sf ${UBOOT_IMAGE} ${UBOOT_SYMLINK}
+	ln -sf ${UBOOT_IMAGE} ${UBOOT_BINARY}
+	rm -f ${UBOOT_SPI_SPL_BINARY} ${UBOOT_SPI_SPL_SYMLINK}
+	ln -sf ${UBOOT_SPI_SPL_IMAGE} ${UBOOT_SPI_SPL_SYMLINK}
+	ln -sf ${UBOOT_SPI_SPL_IMAGE} ${UBOOT_SPI_SPL_BINARY}
+	rm -f ${UBOOT_SPI_BINARY} ${UBOOT_SPI_SYMLINK}
+	ln -sf ${UBOOT_SPI_IMAGE} ${UBOOT_SPI_SYMLINK}
+	ln -sf ${UBOOT_SPI_IMAGE} ${UBOOT_SPI_BINARY}
+	rm -f ${UBOOT_SPI_GPH_BINARY} ${UBOOT_SPI_GPH_SYMLINK}
+	ln -sf ${UBOOT_SPI_GPH_IMAGE} ${UBOOT_SPI_GPH_SYMLINK}
+	ln -sf ${UBOOT_SPI_GPH_IMAGE} ${UBOOT_SPI_GPH_BINARY}
+}
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] u-boot-keystone: Update keystone u-boot to latest version
  2014-01-28  3:41 [PATCH] u-boot-keystone: Update keystone u-boot to latest version Sam Nelson
@ 2014-01-28  3:50 ` Denys Dmytriyenko
  2014-02-07 19:14   ` Denys Dmytriyenko
  0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2014-01-28  3:50 UTC (permalink / raw)
  To: Sam Nelson; +Cc: meta-ti

On Mon, Jan 27, 2014 at 10:41:31PM -0500, Sam Nelson wrote:
> - Update license and checksum
> - Update source URL
> - Added SPI Nor binaries and deployed images
> - Update script to configure, compile, install, deploy
> 
> Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> ---
>  recipes-bsp/u-boot/u-boot-keystone_2013.01.bb |   75 +++++++++++++++++++++++--
>  1 file changed, 71 insertions(+), 4 deletions(-)
> 
> diff --git a/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb b/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb
> index 788d813..d225cea 100644
> --- a/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb
> +++ b/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb
> @@ -1,16 +1,83 @@
>  require u-boot-ti.inc
>  
>  DESCRIPTION = "u-boot bootloader for Multi-Core BU devices"
> +LICENSE = "GPLv2+"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb"
>  
>  COMPATIBLE_MACHINE = "keystone"
>  
> -PR = "r2+gitr${SRCPV}"
> +PACKAGE_ARCH = "${MACHINE_ARCH}"
>  
> -SRC_URI = "git://arago-project.org/git/projects/u-boot-keystone.git;protocol=git;branch=${BRANCH}"
> +PR = "r3+gitr${SRCPV}"
> +
> +# for nightly switch the two below
> +SRC_URI = "git://git.ti.com/keystone-linux/u-boot.git;protocol=git;branch=${BRANCH}"
>  
>  BRANCH = "master"
>  
> -# DEV.MCSDK-03.00.00.07
> -SRCREV = "82f40e857d853165310d0753e79235aefb65d7ba"
> +#Tag "K2_UBOOT_2013-01_13.12"
> +SRCREV = "e4b19a8d418e35bf2bd63eba485afd5d9e436188"
> +
> +EXTRA_OEMAKE = 'CROSS_COMPILE=${TARGET_PREFIX} CC="${TARGET_PREFIX}gcc ${TOOLCHAIN_OPTIONS}"'
> +
> +S = "${WORKDIR}/git"
>  
>  UBOOT_SUFFIX = "bin"
> +
> +UBOOT_MAKE_TARGET = "u-boot-spi.gph"
> +# SPI NOR Flash binaries
> +UBOOT_SPI_SPL_BINARY = "u-boot-spl.bin"
> +UBOOT_SPI_BINARY = "u-boot.img"
> +UBOOT_SPI_GPH_BINARY = "u-boot-spi.gph"
> +# SPI NOR Flash deployed images
> +UBOOT_SPI_SPL_IMAGE = "u-boot-spl-${MACHINE}-${PV}-${PR}.bin"
> +UBOOT_SPI_SPL_SYMLINK = "u-boot-spl-${MACHINE}.bin"
> +UBOOT_SPI_IMAGE = "u-boot-${MACHINE}-${PV}-${PR}.img"
> +UBOOT_SPI_SYMLINK = "u-boot-${MACHINE}.img"
> +UBOOT_SPI_GPH_IMAGE = "u-boot-spi-${MACHINE}-${PV}-${PR}.gph"
> +UBOOT_SPI_GPH_SYMLINK = "u-boot-spi-${MACHINE}.gph"
> +
> +do_configure () {
> +	oe_runmake ${UBOOT_MACHINE}
> +}
> +
> +do_compile () {
> +	unset LDFLAGS
> +	unset CFLAGS
> +	unset CPPFLAGS
> +	oe_runmake ${UBOOT_MAKE_TARGET}
> +}
> +
> +do_install () {
> +	install -d ${D}/boot
> +	install ${S}/${UBOOT_BINARY} ${D}/boot/${UBOOT_IMAGE}
> +	install ${S}/spl/${UBOOT_SPI_SPL_BINARY} ${D}/boot/${UBOOT_SPI_SPL_IMAGE}
> +	install ${S}/${UBOOT_SPI_BINARY} ${D}/boot/${UBOOT_SPI_IMAGE}
> +	install ${S}/${UBOOT_SPI_GPH_BINARY} ${D}/boot/${UBOOT_SPI_GPH_IMAGE}
> +	ln -sf ${UBOOT_IMAGE} ${D}/boot/${UBOOT_BINARY}
> +	ln -sf ${UBOOT_SPI_SPL_IMAGE} ${D}/boot/${UBOOT_SPI_SPL_BINARY}
> +	ln -sf ${UBOOT_SPI_IMAGE} ${D}/boot/${UBOOT_SPI_BINARY}
> +	ln -sf ${UBOOT_SPI_GPH_IMAGE} ${D}/boot/${UBOOT_SPI_GPH_BINARY}
> +}
> +
> +do_deploy () {
> +	install -d ${DEPLOY_DIR_IMAGE}
> +	install ${S}/${UBOOT_BINARY} ${DEPLOY_DIR_IMAGE}/${UBOOT_IMAGE}
> +	install ${S}/spl/${UBOOT_SPI_SPL_BINARY} ${DEPLOY_DIR_IMAGE}/${UBOOT_SPI_SPL_IMAGE}
> +	install ${S}/${UBOOT_SPI_BINARY} ${DEPLOY_DIR_IMAGE}/${UBOOT_SPI_IMAGE}
> +	install ${S}/${UBOOT_SPI_GPH_BINARY} ${DEPLOY_DIR_IMAGE}/${UBOOT_SPI_GPH_IMAGE}
> +
> +	cd ${DEPLOY_DIR_IMAGE}
> +	rm -f ${UBOOT_BINARY} ${UBOOT_SYMLINK}
> +	ln -sf ${UBOOT_IMAGE} ${UBOOT_SYMLINK}
> +	ln -sf ${UBOOT_IMAGE} ${UBOOT_BINARY}
> +	rm -f ${UBOOT_SPI_SPL_BINARY} ${UBOOT_SPI_SPL_SYMLINK}
> +	ln -sf ${UBOOT_SPI_SPL_IMAGE} ${UBOOT_SPI_SPL_SYMLINK}
> +	ln -sf ${UBOOT_SPI_SPL_IMAGE} ${UBOOT_SPI_SPL_BINARY}
> +	rm -f ${UBOOT_SPI_BINARY} ${UBOOT_SPI_SYMLINK}
> +	ln -sf ${UBOOT_SPI_IMAGE} ${UBOOT_SPI_SYMLINK}
> +	ln -sf ${UBOOT_SPI_IMAGE} ${UBOOT_SPI_BINARY}
> +	rm -f ${UBOOT_SPI_GPH_BINARY} ${UBOOT_SPI_GPH_SYMLINK}
> +	ln -sf ${UBOOT_SPI_GPH_IMAGE} ${UBOOT_SPI_GPH_SYMLINK}
> +	ln -sf ${UBOOT_SPI_GPH_IMAGE} ${UBOOT_SPI_GPH_BINARY}
> +}

Most of the above logic is already provided by the standard u-boot.inc - it 
shouldn't be hard to extend it to support your special formats instead of 
re-implementing everything from scratch...

-- 
Denys


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] u-boot-keystone: Update keystone u-boot to latest version
  2014-01-28  3:50 ` Denys Dmytriyenko
@ 2014-02-07 19:14   ` Denys Dmytriyenko
  2014-02-10  3:44     ` Nelson, Sam
  0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2014-02-07 19:14 UTC (permalink / raw)
  To: Sam Nelson, meta-ti

Ping on the below - it's still pending resolution. Please let me know if you 
need further clarification or any help.


On Mon, Jan 27, 2014 at 10:50:20PM -0500, Denys Dmytriyenko wrote:
> On Mon, Jan 27, 2014 at 10:41:31PM -0500, Sam Nelson wrote:
> > - Update license and checksum
> > - Update source URL
> > - Added SPI Nor binaries and deployed images
> > - Update script to configure, compile, install, deploy
> > 
> > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> > ---
> >  recipes-bsp/u-boot/u-boot-keystone_2013.01.bb |   75 +++++++++++++++++++++++--
> >  1 file changed, 71 insertions(+), 4 deletions(-)
> > 
> > diff --git a/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb b/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb
> > index 788d813..d225cea 100644
> > --- a/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb
> > +++ b/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb
> > @@ -1,16 +1,83 @@
> >  require u-boot-ti.inc
> >  
> >  DESCRIPTION = "u-boot bootloader for Multi-Core BU devices"
> > +LICENSE = "GPLv2+"
> > +LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb"
> >  
> >  COMPATIBLE_MACHINE = "keystone"
> >  
> > -PR = "r2+gitr${SRCPV}"
> > +PACKAGE_ARCH = "${MACHINE_ARCH}"
> >  
> > -SRC_URI = "git://arago-project.org/git/projects/u-boot-keystone.git;protocol=git;branch=${BRANCH}"
> > +PR = "r3+gitr${SRCPV}"
> > +
> > +# for nightly switch the two below
> > +SRC_URI = "git://git.ti.com/keystone-linux/u-boot.git;protocol=git;branch=${BRANCH}"
> >  
> >  BRANCH = "master"
> >  
> > -# DEV.MCSDK-03.00.00.07
> > -SRCREV = "82f40e857d853165310d0753e79235aefb65d7ba"
> > +#Tag "K2_UBOOT_2013-01_13.12"
> > +SRCREV = "e4b19a8d418e35bf2bd63eba485afd5d9e436188"
> > +
> > +EXTRA_OEMAKE = 'CROSS_COMPILE=${TARGET_PREFIX} CC="${TARGET_PREFIX}gcc ${TOOLCHAIN_OPTIONS}"'
> > +
> > +S = "${WORKDIR}/git"
> >  
> >  UBOOT_SUFFIX = "bin"
> > +
> > +UBOOT_MAKE_TARGET = "u-boot-spi.gph"
> > +# SPI NOR Flash binaries
> > +UBOOT_SPI_SPL_BINARY = "u-boot-spl.bin"
> > +UBOOT_SPI_BINARY = "u-boot.img"
> > +UBOOT_SPI_GPH_BINARY = "u-boot-spi.gph"
> > +# SPI NOR Flash deployed images
> > +UBOOT_SPI_SPL_IMAGE = "u-boot-spl-${MACHINE}-${PV}-${PR}.bin"
> > +UBOOT_SPI_SPL_SYMLINK = "u-boot-spl-${MACHINE}.bin"
> > +UBOOT_SPI_IMAGE = "u-boot-${MACHINE}-${PV}-${PR}.img"
> > +UBOOT_SPI_SYMLINK = "u-boot-${MACHINE}.img"
> > +UBOOT_SPI_GPH_IMAGE = "u-boot-spi-${MACHINE}-${PV}-${PR}.gph"
> > +UBOOT_SPI_GPH_SYMLINK = "u-boot-spi-${MACHINE}.gph"
> > +
> > +do_configure () {
> > +	oe_runmake ${UBOOT_MACHINE}
> > +}
> > +
> > +do_compile () {
> > +	unset LDFLAGS
> > +	unset CFLAGS
> > +	unset CPPFLAGS
> > +	oe_runmake ${UBOOT_MAKE_TARGET}
> > +}
> > +
> > +do_install () {
> > +	install -d ${D}/boot
> > +	install ${S}/${UBOOT_BINARY} ${D}/boot/${UBOOT_IMAGE}
> > +	install ${S}/spl/${UBOOT_SPI_SPL_BINARY} ${D}/boot/${UBOOT_SPI_SPL_IMAGE}
> > +	install ${S}/${UBOOT_SPI_BINARY} ${D}/boot/${UBOOT_SPI_IMAGE}
> > +	install ${S}/${UBOOT_SPI_GPH_BINARY} ${D}/boot/${UBOOT_SPI_GPH_IMAGE}
> > +	ln -sf ${UBOOT_IMAGE} ${D}/boot/${UBOOT_BINARY}
> > +	ln -sf ${UBOOT_SPI_SPL_IMAGE} ${D}/boot/${UBOOT_SPI_SPL_BINARY}
> > +	ln -sf ${UBOOT_SPI_IMAGE} ${D}/boot/${UBOOT_SPI_BINARY}
> > +	ln -sf ${UBOOT_SPI_GPH_IMAGE} ${D}/boot/${UBOOT_SPI_GPH_BINARY}
> > +}
> > +
> > +do_deploy () {
> > +	install -d ${DEPLOY_DIR_IMAGE}
> > +	install ${S}/${UBOOT_BINARY} ${DEPLOY_DIR_IMAGE}/${UBOOT_IMAGE}
> > +	install ${S}/spl/${UBOOT_SPI_SPL_BINARY} ${DEPLOY_DIR_IMAGE}/${UBOOT_SPI_SPL_IMAGE}
> > +	install ${S}/${UBOOT_SPI_BINARY} ${DEPLOY_DIR_IMAGE}/${UBOOT_SPI_IMAGE}
> > +	install ${S}/${UBOOT_SPI_GPH_BINARY} ${DEPLOY_DIR_IMAGE}/${UBOOT_SPI_GPH_IMAGE}
> > +
> > +	cd ${DEPLOY_DIR_IMAGE}
> > +	rm -f ${UBOOT_BINARY} ${UBOOT_SYMLINK}
> > +	ln -sf ${UBOOT_IMAGE} ${UBOOT_SYMLINK}
> > +	ln -sf ${UBOOT_IMAGE} ${UBOOT_BINARY}
> > +	rm -f ${UBOOT_SPI_SPL_BINARY} ${UBOOT_SPI_SPL_SYMLINK}
> > +	ln -sf ${UBOOT_SPI_SPL_IMAGE} ${UBOOT_SPI_SPL_SYMLINK}
> > +	ln -sf ${UBOOT_SPI_SPL_IMAGE} ${UBOOT_SPI_SPL_BINARY}
> > +	rm -f ${UBOOT_SPI_BINARY} ${UBOOT_SPI_SYMLINK}
> > +	ln -sf ${UBOOT_SPI_IMAGE} ${UBOOT_SPI_SYMLINK}
> > +	ln -sf ${UBOOT_SPI_IMAGE} ${UBOOT_SPI_BINARY}
> > +	rm -f ${UBOOT_SPI_GPH_BINARY} ${UBOOT_SPI_GPH_SYMLINK}
> > +	ln -sf ${UBOOT_SPI_GPH_IMAGE} ${UBOOT_SPI_GPH_SYMLINK}
> > +	ln -sf ${UBOOT_SPI_GPH_IMAGE} ${UBOOT_SPI_GPH_BINARY}
> > +}
> 
> Most of the above logic is already provided by the standard u-boot.inc - it 
> shouldn't be hard to extend it to support your special formats instead of 
> re-implementing everything from scratch...
> 
> -- 
> Denys
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti
> 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] u-boot-keystone: Update keystone u-boot to latest version
  2014-02-07 19:14   ` Denys Dmytriyenko
@ 2014-02-10  3:44     ` Nelson, Sam
  0 siblings, 0 replies; 4+ messages in thread
From: Nelson, Sam @ 2014-02-10  3:44 UTC (permalink / raw)
  To: Dmytriyenko, Denys, meta-ti

I can eliminate do_compile & do_configure functions and also  see some of the statements repeated in do_install function  can be removed.
But in  do-deploy  the directory to which the images are copied are different from 
u-boot.inc.
( U-boot.inc copies to DEPLOY_DIR whereas u-boot-keystone recipe copies to DEPLOY_DIR_IMAGE directory). 
So not much can be modified here.  I will send updated patch.
With regards,
Sam


> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Friday, February 07, 2014 2:14 PM
> To: Nelson, Sam; meta-ti@yoctoproject.org
> Subject: Re: [meta-ti] [PATCH] u-boot-keystone: Update keystone u-boot to
> latest version
> 
> Ping on the below - it's still pending resolution. Please let me know if you
> need further clarification or any help.
> 
> 
> On Mon, Jan 27, 2014 at 10:50:20PM -0500, Denys Dmytriyenko wrote:
> > On Mon, Jan 27, 2014 at 10:41:31PM -0500, Sam Nelson wrote:
> > > - Update license and checksum
> > > - Update source URL
> > > - Added SPI Nor binaries and deployed images
> > > - Update script to configure, compile, install, deploy
> > >
> > > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> > > ---
> > >  recipes-bsp/u-boot/u-boot-keystone_2013.01.bb |   75
> +++++++++++++++++++++++--
> > >  1 file changed, 71 insertions(+), 4 deletions(-)
> > >
> > > diff --git a/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb b/recipes-
> bsp/u-boot/u-boot-keystone_2013.01.bb
> > > index 788d813..d225cea 100644
> > > --- a/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb
> > > +++ b/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb
> > > @@ -1,16 +1,83 @@
> > >  require u-boot-ti.inc
> > >
> > >  DESCRIPTION = "u-boot bootloader for Multi-Core BU devices"
> > > +LICENSE = "GPLv2+"
> > > +LIC_FILES_CHKSUM =
> "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb"
> > >
> > >  COMPATIBLE_MACHINE = "keystone"
> > >
> > > -PR = "r2+gitr${SRCPV}"
> > > +PACKAGE_ARCH = "${MACHINE_ARCH}"
> > >
> > > -SRC_URI = "git://arago-project.org/git/projects/u-boot-
> keystone.git;protocol=git;branch=${BRANCH}"
> > > +PR = "r3+gitr${SRCPV}"
> > > +
> > > +# for nightly switch the two below
> > > +SRC_URI = "git://git.ti.com/keystone-linux/u-
> boot.git;protocol=git;branch=${BRANCH}"
> > >
> > >  BRANCH = "master"
> > >
> > > -# DEV.MCSDK-03.00.00.07
> > > -SRCREV = "82f40e857d853165310d0753e79235aefb65d7ba"
> > > +#Tag "K2_UBOOT_2013-01_13.12"
> > > +SRCREV = "e4b19a8d418e35bf2bd63eba485afd5d9e436188"
> > > +
> > > +EXTRA_OEMAKE = 'CROSS_COMPILE=${TARGET_PREFIX}
> CC="${TARGET_PREFIX}gcc ${TOOLCHAIN_OPTIONS}"'
> > > +
> > > +S = "${WORKDIR}/git"
> > >
> > >  UBOOT_SUFFIX = "bin"
> > > +
> > > +UBOOT_MAKE_TARGET = "u-boot-spi.gph"
> > > +# SPI NOR Flash binaries
> > > +UBOOT_SPI_SPL_BINARY = "u-boot-spl.bin"
> > > +UBOOT_SPI_BINARY = "u-boot.img"
> > > +UBOOT_SPI_GPH_BINARY = "u-boot-spi.gph"
> > > +# SPI NOR Flash deployed images
> > > +UBOOT_SPI_SPL_IMAGE = "u-boot-spl-${MACHINE}-${PV}-${PR}.bin"
> > > +UBOOT_SPI_SPL_SYMLINK = "u-boot-spl-${MACHINE}.bin"
> > > +UBOOT_SPI_IMAGE = "u-boot-${MACHINE}-${PV}-${PR}.img"
> > > +UBOOT_SPI_SYMLINK = "u-boot-${MACHINE}.img"
> > > +UBOOT_SPI_GPH_IMAGE = "u-boot-spi-${MACHINE}-${PV}-${PR}.gph"
> > > +UBOOT_SPI_GPH_SYMLINK = "u-boot-spi-${MACHINE}.gph"
> > > +
> > > +do_configure () {
> > > +	oe_runmake ${UBOOT_MACHINE}
> > > +}
> > > +
> > > +do_compile () {
> > > +	unset LDFLAGS
> > > +	unset CFLAGS
> > > +	unset CPPFLAGS
> > > +	oe_runmake ${UBOOT_MAKE_TARGET}
> > > +}
> > > +
> > > +do_install () {
> > > +	install -d ${D}/boot
> > > +	install ${S}/${UBOOT_BINARY} ${D}/boot/${UBOOT_IMAGE}
> > > +	install ${S}/spl/${UBOOT_SPI_SPL_BINARY}
> ${D}/boot/${UBOOT_SPI_SPL_IMAGE}
> > > +	install ${S}/${UBOOT_SPI_BINARY} ${D}/boot/${UBOOT_SPI_IMAGE}
> > > +	install ${S}/${UBOOT_SPI_GPH_BINARY}
> ${D}/boot/${UBOOT_SPI_GPH_IMAGE}
> > > +	ln -sf ${UBOOT_IMAGE} ${D}/boot/${UBOOT_BINARY}
> > > +	ln -sf ${UBOOT_SPI_SPL_IMAGE}
> ${D}/boot/${UBOOT_SPI_SPL_BINARY}
> > > +	ln -sf ${UBOOT_SPI_IMAGE} ${D}/boot/${UBOOT_SPI_BINARY}
> > > +	ln -sf ${UBOOT_SPI_GPH_IMAGE}
> ${D}/boot/${UBOOT_SPI_GPH_BINARY}
> > > +}
> > > +
> > > +do_deploy () {
> > > +	install -d ${DEPLOY_DIR_IMAGE}
> > > +	install ${S}/${UBOOT_BINARY}
> ${DEPLOY_DIR_IMAGE}/${UBOOT_IMAGE}
> > > +	install ${S}/spl/${UBOOT_SPI_SPL_BINARY}
> ${DEPLOY_DIR_IMAGE}/${UBOOT_SPI_SPL_IMAGE}
> > > +	install ${S}/${UBOOT_SPI_BINARY}
> ${DEPLOY_DIR_IMAGE}/${UBOOT_SPI_IMAGE}
> > > +	install ${S}/${UBOOT_SPI_GPH_BINARY}
> ${DEPLOY_DIR_IMAGE}/${UBOOT_SPI_GPH_IMAGE}
> > > +
> > > +	cd ${DEPLOY_DIR_IMAGE}
> > > +	rm -f ${UBOOT_BINARY} ${UBOOT_SYMLINK}
> > > +	ln -sf ${UBOOT_IMAGE} ${UBOOT_SYMLINK}
> > > +	ln -sf ${UBOOT_IMAGE} ${UBOOT_BINARY}
> > > +	rm -f ${UBOOT_SPI_SPL_BINARY} ${UBOOT_SPI_SPL_SYMLINK}
> > > +	ln -sf ${UBOOT_SPI_SPL_IMAGE} ${UBOOT_SPI_SPL_SYMLINK}
> > > +	ln -sf ${UBOOT_SPI_SPL_IMAGE} ${UBOOT_SPI_SPL_BINARY}
> > > +	rm -f ${UBOOT_SPI_BINARY} ${UBOOT_SPI_SYMLINK}
> > > +	ln -sf ${UBOOT_SPI_IMAGE} ${UBOOT_SPI_SYMLINK}
> > > +	ln -sf ${UBOOT_SPI_IMAGE} ${UBOOT_SPI_BINARY}
> > > +	rm -f ${UBOOT_SPI_GPH_BINARY} ${UBOOT_SPI_GPH_SYMLINK}
> > > +	ln -sf ${UBOOT_SPI_GPH_IMAGE} ${UBOOT_SPI_GPH_SYMLINK}
> > > +	ln -sf ${UBOOT_SPI_GPH_IMAGE} ${UBOOT_SPI_GPH_BINARY}
> > > +}
> >
> > Most of the above logic is already provided by the standard u-boot.inc - it
> > shouldn't be hard to extend it to support your special formats instead of
> > re-implementing everything from scratch...
> >
> > --
> > Denys
> > _______________________________________________
> > meta-ti mailing list
> > meta-ti@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/meta-ti
> >


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-02-10  3:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-28  3:41 [PATCH] u-boot-keystone: Update keystone u-boot to latest version Sam Nelson
2014-01-28  3:50 ` Denys Dmytriyenko
2014-02-07 19:14   ` Denys Dmytriyenko
2014-02-10  3:44     ` Nelson, Sam

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.