All of lore.kernel.org
 help / color / mirror / Atom feed
From: Denys Dmytriyenko <denys@ti.com>
To: <hzhang@ti.com>
Cc: meta-arago@arago-project.org
Subject: Re: [PATCH] recovery-kernel: add recovery kernel dtb build for K2L and K2E
Date: Fri, 29 May 2015 15:34:33 -0400	[thread overview]
Message-ID: <20150529193433.GO16418@edge> (raw)
In-Reply-To: <1432758765-28548-1-git-send-email-hzhang@ti.com>

Ack

On Wed, May 27, 2015 at 04:32:45PM -0400, hzhang@ti.com wrote:
> From: Hao Zhang <hzhang@ti.com>
> 
> The patch adds the Linux recovery kernel device tree build for K2L and
> K2E devices based on kernel v3.10.72.
> 
> Signed-off-by: Hao Zhang <hzhang@ti.com>
> ---
>  .../recovery-kernel/recovery-kernel_1.0.bb         |   18 ++++++++++++------
>  1 file changed, 12 insertions(+), 6 deletions(-)
> 
> diff --git a/meta-arago-extras/recipes-kernel/recovery-kernel/recovery-kernel_1.0.bb b/meta-arago-extras/recipes-kernel/recovery-kernel/recovery-kernel_1.0.bb
> index ad3528e..6e4f9c7 100644
> --- a/meta-arago-extras/recipes-kernel/recovery-kernel/recovery-kernel_1.0.bb
> +++ b/meta-arago-extras/recipes-kernel/recovery-kernel/recovery-kernel_1.0.bb
> @@ -1,10 +1,10 @@
>  DESCRIPTION = "Recovery kernel building for Keystone EVM"
>  LICENSE = "GPLv2"
>  
> -PR = "r2"
> +PR = "r3"
>  COMPATIBLE_MACHINE = "keystone"
> -BRANCH = "master"
> -SRCREV = "9bc93706b37c39c3a95593dc3d56773e9b7425ad"
> +BRANCH = "v3.10.72/master"
> +SRCREV = "b9bad8fccc5f9c6bcd78363982b3249a15f193fb"
>  SRC_URI = "git://git.ti.com/keystone-linux/linux.git;protocol=git;branch=${BRANCH}"
>  S = "${WORKDIR}/git"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
> @@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
>  FILES_${PN} += "${bindir}/crashdump"
>  LINUX_ZIMAGE = "zImage"
>  KERNEL_MACHINE ?= "keystone2_recovery_defconfig"
> -KERNEL_DTBTYPE = "k2hk-evm-recovery.dtb"
> +KERNEL_DTBTYPE = "k2hk-evm-recovery.dtb k2l-evm-recovery.dtb k2e-evm-recovery.dtb "
>  CRASHDIR = "crashdump"
>  ARCH = "${TARGET_ARCH}"
>  CROSS_COMPILE = "${TARGET_PREFIX}"
> @@ -27,11 +27,17 @@ do_configure () {
>  do_compile() {
>  	make ${LINUX_ZIMAGE} KALLSYMS_EXTRA_PASS=1
>  	make ${KERNEL_DTBTYPE}
> -	dtc -I dtb -O dtb -p 2048 -o ${KERNEL_DTBTYPE} arch/arm/boot/dts/${KERNEL_DTBTYPE}
> +        for d in ${KERNEL_DTBTYPE}
> +        do
> +            dtc -I dtb -O dtb -p 2048 -o $d arch/arm/boot/dts/$d
> +        done
>  }
>  
>  do_install () {
>  	install -d ${D}${bindir}/${CRASHDIR}/
>  	install ${S}/arch/arm/boot/${LINUX_ZIMAGE} ${D}${bindir}/${CRASHDIR}
> -	install ${S}/${KERNEL_DTBTYPE} ${D}${bindir}/${CRASHDIR}
> +        for d in ${KERNEL_DTBTYPE}
> +        do
> +            install ${S}/$d ${D}${bindir}/${CRASHDIR}
> +        done
>  }
> -- 
> 1.7.9.5
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


      parent reply	other threads:[~2015-05-29 19:34 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-27 20:32 [PATCH] recovery-kernel: add recovery kernel dtb build for K2L and K2E hzhang
2015-05-29 13:46 ` Zhang, Hao
2015-05-29 19:34 ` Denys Dmytriyenko [this message]

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=20150529193433.GO16418@edge \
    --to=denys@ti.com \
    --cc=hzhang@ti.com \
    --cc=meta-arago@arago-project.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.