All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
To: buildroot@busybox.net
Subject: [Buildroot] "output" directory for multiple targets
Date: Wed, 15 Dec 2010 11:29:08 +0100	[thread overview]
Message-ID: <20101215112908.009964e8@surf> (raw)
In-Reply-To: <201012142240.20508.yann.morin.1998@anciens.enib.fr>

On Tue, 14 Dec 2010 22:40:20 +0100
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> wrote:

> You can do out-of-tree builds, one for each of your devices:
>   mkdir device-1
>   cd device-1
>   make -C "/path/to/buildroot" O="$(pwd)" menuconfig
>   make
> 
> The first time you run 'make -C....', as above, it creates wrapper
> Makefile in $(pwd) that allows you to simply call make the following
> times.

Or, using the exact same feature, but differently, what I do is :

	cd buildroot/
	mkdir ../outputs/device1
	make O=../outputs/device1 menuconfig
	make O=../outputs/device1
	mkdir ../outputs/device2
	make O=../outputs/device2 menuconfig
	make O=../outputs/device2

and so on.

This O= feature is documented in our documentation,
http://buildroot.org/downloads/buildroot.html#using.

Regards,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

      parent reply	other threads:[~2010-12-15 10:29 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-14 21:34 [Buildroot] "output" directory for multiple targets Justin Mark
2010-12-14 21:40 ` Yann E. MORIN
2010-12-14 23:31   ` Justin Mark
2010-12-15 10:29   ` Thomas Petazzoni [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=20101215112908.009964e8@surf \
    --to=thomas.petazzoni@free-electrons.com \
    --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.