All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnout Vandecappelle <arnout@mind.be>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] Add Freescale MX53 support
Date: Tue, 7 Feb 2012 00:00:33 +0100	[thread overview]
Message-ID: <201202070000.34270.arnout@mind.be> (raw)
In-Reply-To: <1328277370-18423-1-git-send-email-mbriand@adeneo-embedded.com>

 Thank you for this contribution!  We certainly need more defconfigs.

 Below are a few comments on your patch.  Please consider them and if
necessary re-post it.  If you will not be able to re-post it, let us know
so someone else can adopt it.

 We will certainly need a Signed-off-by tag on your patch, i.e. a line saying

Signed-off-by: Your Name <your@email.address>

This is a short way for you to assert that you are entitled to contribute
the patch under buildroot's GPL license.  See 
http://kerneltrap.org/files/Jeremy/DCO.txt for more details.


On Friday 03 February 2012 14:56:10 Mathieu Briand wrote:
> Buildroot config and Linux Kernel config.
> Binaries blob not supported yet.

 What does 'Binaries blob' mean?

> ---
>  board/freescale/mx53loco/linux.config |  175 +++++++++++++++++++++++++++++++++
>  configs/freescale_mx53loco_defconfig  |   19 ++++
>  2 files changed, 194 insertions(+), 0 deletions(-)
>  create mode 100644 board/freescale/mx53loco/linux.config
>  create mode 100644 configs/freescale_mx53loco_defconfig

 The processor is called "i.MX53", I believe.  We also usually don't 
include the vendor name in the processor identification.  So something
like configs/imx53loco_defconfig is probably more appropriate.  OTOH,
Freescale themselves seem to call i.MX3x processors "imx" and i.MX5x
processors "mx5"...


> diff --git a/board/freescale/mx53loco/linux.config b/board/freescale/mx53loco/linux.config
 Personally I'd prefer to use a kernel defconfig (mx5_defconfig), but
perhaps this one is more appropriate.

[snip]
> diff --git a/configs/freescale_mx53loco_defconfig b/configs/freescale_mx53loco_defconfig
> new file mode 100644
> index 0000000..dbf0e2c
> --- /dev/null
> +++ b/configs/freescale_mx53loco_defconfig
> @@ -0,0 +1,19 @@
> +# Architecture
> +BR2_arm=y
> +BR2_cortex_a8=y
> +
> +# System
> +BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
> +BR2_TARGET_UBOOT=y
> +BR2_TARGET_UBOOT_BOARDNAME="mx53loco"
> +BR2_TARGET_UBOOT_CUSTOM_GIT=y
> +BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL="http://opensource.freescale.com/pub/scm/imx/uboot-imx.git"
> +BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION="master"
> +
> +# Kernel
> +BR2_LINUX_KERNEL=y
> +BR2_LINUX_KERNEL_CUSTOM_GIT=y
> +BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL="http://opensource.freescale.com/pub/scm/imx/linux-2.6-imx.git"
> +BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION="master"

 I think it is better (more predictable) to specify an exact version instead
of the latest HEAD.  Either a git sha or a tarball, e.g. 
http://git.freescale.com/git/cgit.cgi/imx/linux-2.6-imx.git/snapshot/rel_imx_2.6.38_12.01.01.tar.gz
(if that is a relevant snapshot at all).

> +BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
> +BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/freescale/mx53loco/linux.config"
> 

 Regards,
 Arnout

-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

  reply	other threads:[~2012-02-06 23:00 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-03 12:47 [Buildroot] [PATCH] Add Freescale MX53 support Mathieu Briand
2012-02-03 13:56 ` Mathieu Briand
2012-02-06 23:00   ` Arnout Vandecappelle [this message]
2012-02-07  9:27     ` Peter Korsgaard
2012-02-07  9:31       ` Arnout Vandecappelle
2012-02-07 10:45         ` Peter Korsgaard
2012-02-07 10:06       ` Mathieu
2012-02-07 17:08         ` Arnout Vandecappelle
2012-02-07 10:22     ` Mathieu
2012-02-12 21:25       ` Peter Korsgaard
2012-02-13  9:43 ` Mathieu Briand
2012-02-13  9:56   ` Mathieu
2012-02-13 19:36   ` Arnout Vandecappelle
     [not found]   ` <28624_1329161809_q1DJaj6E025889_201202132036.29563.arnout@mind.be>
2012-02-14  8:31     ` [Buildroot] [RMX:###] " Mathieu Briand
2012-02-17 21:02   ` [Buildroot] " Peter Korsgaard
2012-02-17 21:23     ` Eric Bénard
2012-02-17 21:26       ` Peter Korsgaard

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=201202070000.34270.arnout@mind.be \
    --to=arnout@mind.be \
    --cc=buildroot@busybox.net \
    /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.