All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] packages build order and dependencies
@ 2013-07-12 10:56 Jan Pohanka
  2013-07-12 11:25 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: Jan Pohanka @ 2013-07-12 10:56 UTC (permalink / raw)
  To: buildroot

Hello all,

I would like to clarify myself how the order of the package build is 
defined. I thought that when I specify the package dependency in 
Kconfig, then the top one should be built first. But it seems that I 
need also it to add MY_PACKAGE_DEPENDENCIES variable in mk file. Am I right?

Like this example
# Kconfig
config MY_PACKAGE
     bool "my_package"
     depends on BR2_LINUX_KERNEL


#my_package.mk
...
#is this needed for building linux before my_package?
MY_PACKAGE_DEPENDENCIES += linux
...

best regards
Jan

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

* [Buildroot] packages build order and dependencies
  2013-07-12 10:56 [Buildroot] packages build order and dependencies Jan Pohanka
@ 2013-07-12 11:25 ` Thomas Petazzoni
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2013-07-12 11:25 UTC (permalink / raw)
  To: buildroot

Dear Jan Pohanka,

On Fri, 12 Jul 2013 12:56:00 +0200, Jan Pohanka wrote:

> I would like to clarify myself how the order of the package build is 
> defined. I thought that when I specify the package dependency in 
> Kconfig, then the top one should be built first. But it seems that I 
> need also it to add MY_PACKAGE_DEPENDENCIES variable in mk file. Am I right?

What defines the order of build is the <pkg>_DEPENDENCIES variable in
the package .mk file.

> Like this example
> # Kconfig
> config MY_PACKAGE
>      bool "my_package"
>      depends on BR2_LINUX_KERNEL

The Config.in stuff doesn't take care of anything build order. It's
just here to ensure consistency of the configuration, i.e that when one
package selects libpng, all packages that can optionally use libpng are
informed and can use it.

> #my_package.mk
> ...
> #is this needed for building linux before my_package?
> MY_PACKAGE_DEPENDENCIES += linux

Yes, this is precisely what tells Buildroot to build the 'linux'
package, then the 'my-package' package.

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

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

end of thread, other threads:[~2013-07-12 11:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-12 10:56 [Buildroot] packages build order and dependencies Jan Pohanka
2013-07-12 11:25 ` Thomas Petazzoni

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.