All of lore.kernel.org
 help / color / mirror / Atom feed
From: Denys Dmytriyenko <denys@ti.com>
To: <hzhang@ti.com>
Cc: meta-ti@yoctoproject.org
Subject: Re: [PATCH] keystone: u-boot: add build support for EMIF16 NAND gph image
Date: Tue, 1 Jul 2014 13:49:03 -0400	[thread overview]
Message-ID: <20140701174903.GG15788@edge> (raw)
In-Reply-To: <1404236714-29980-1-git-send-email-hzhang@ti.com>

Is it a duplicate?
http://git.yoctoproject.org/cgit.cgi/meta-ti/commit/?id=9277a0276f0c3a49793e53e57678455272042480


On Tue, Jul 01, 2014 at 01:45:14PM -0400, hzhang@ti.com wrote:
> From: Hao Zhang <hzhang@ti.com>
> 
> ---
>  recipes-bsp/u-boot/u-boot-keystone_2013.01.bb |   15 +++++++++++++--
>  1 file changed, 13 insertions(+), 2 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 5e5eb51..37f7738 100644
> --- a/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb
> +++ b/recipes-bsp/u-boot/u-boot-keystone_2013.01.bb
> @@ -4,7 +4,7 @@ DESCRIPTION = "u-boot bootloader for Multi-Core BU devices"
>  
>  COMPATIBLE_MACHINE = "keystone"
>  
> -PR = "r4+gitr${SRCPV}"
> +PR = "r5+gitr${SRCPV}"
>  
>  # Tag "K2_UBOOT_2013_01_14.05_16"
>  SRCREV = "fee500417b989fc9906d86e377b4d3d96033d54e"
> @@ -15,12 +15,13 @@ SRC_URI = "git://git.ti.com/keystone-linux/u-boot.git;protocol=git;branch=${BRAN
>  S = "${WORKDIR}/git"
>  
>  UBOOT_SUFFIX = "bin"
> -UBOOT_MAKE_TARGET = "u-boot-spi.gph"
> +UBOOT_MAKE_TARGET = "u-boot-spi.gph u-boot-nand.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"
> +UBOOT_NAND_GPH_BINARY = "u-boot-nand.gph"
>  
>  # SPI NOR Flash deployed images
>  UBOOT_SPI_SPL_IMAGE = "u-boot-spl-${MACHINE}-${PV}-${PR}.bin"
> @@ -29,6 +30,8 @@ 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"
> +UBOOT_NAND_GPH_IMAGE = "u-boot-nand-${MACHINE}-${PV}-${PR}.gph"
> +UBOOT_NAND_GPH_SYMLINK = "u-boot-nand-${MACHINE}.gph"
>  
>  do_install_append () {
>  	install ${S}/spl/${UBOOT_SPI_SPL_BINARY} ${D}/boot/${UBOOT_SPI_SPL_IMAGE}
> @@ -39,6 +42,9 @@ do_install_append () {
>  
>  	install ${S}/${UBOOT_SPI_GPH_BINARY} ${D}/boot/${UBOOT_SPI_GPH_IMAGE}
>  	ln -sf ${UBOOT_SPI_GPH_IMAGE} ${D}/boot/${UBOOT_SPI_GPH_BINARY}
> +
> +        install ${S}/${UBOOT_NAND_GPH_BINARY} ${D}/boot/${UBOOT_NAND_GPH_IMAGE}
> +        ln -sf ${UBOOT_NAND_GPH_IMAGE} ${D}/boot/${UBOOT_NAND_GPH_BINARY}
>  }
>  
>  do_deploy_append () {
> @@ -56,4 +62,9 @@ do_deploy_append () {
>  	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}
> +
> +        install ${S}/${UBOOT_NAND_GPH_BINARY} ${DEPLOYDIR}/${UBOOT_NAND_GPH_IMAGE}
> +        rm -f ${UBOOT_NAND_GPH_BINARY} ${UBOOT_NAND_GPH_SYMLINK}
> +        ln -sf ${UBOOT_NAND_GPH_IMAGE} ${UBOOT_NAND_GPH_SYMLINK}
> +        ln -sf ${UBOOT_NAND_GPH_IMAGE} ${UBOOT_NAND_GPH_BINARY}
>  }
> -- 
> 1.7.9.5
> 
> -- 
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti


  reply	other threads:[~2014-07-01 17:49 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-01 17:45 [PATCH] keystone: u-boot: add build support for EMIF16 NAND gph image hzhang
2014-07-01 17:49 ` Denys Dmytriyenko [this message]
  -- strict thread matches above, loose matches on Subject: below --
2014-05-28 18:49 hzhang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140701174903.GG15788@edge \
    --to=denys@ti.com \
    --cc=hzhang@ti.com \
    --cc=meta-ti@yoctoproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.