All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] yocto-bsp: add BBG dtb
@ 2016-05-31 18:11 Anders Darander
  2016-06-28 11:01 ` [meta-yocto-bsp][PATCH] " Anders Darander
  2016-07-06 10:13 ` [PATCH] " Burton, Ross
  0 siblings, 2 replies; 6+ messages in thread
From: Anders Darander @ 2016-05-31 18:11 UTC (permalink / raw)
  To: poky; +Cc: Anders Darander

As 4.4 is the default kernel version, we can add the dtb for the beaglebon green
to the list of dtb's to generate.

Signed-off-by: Anders Darander <anders@chargestorm.se>
---
 meta-yocto-bsp/conf/machine/beaglebone.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-yocto-bsp/conf/machine/beaglebone.conf b/meta-yocto-bsp/conf/machine/beaglebone.conf
index ea50acc..ad14a47 100644
--- a/meta-yocto-bsp/conf/machine/beaglebone.conf
+++ b/meta-yocto-bsp/conf/machine/beaglebone.conf
@@ -25,7 +25,7 @@ PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
 PREFERRED_VERSION_linux-yocto ?= "4.4%"
 
 KERNEL_IMAGETYPE = "zImage"
-KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb"
+KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb am335x-bonegreen.dtb"
 KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
 
 SPL_BINARY = "MLO"
-- 
2.8.1



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

* Re: [meta-yocto-bsp][PATCH] yocto-bsp: add BBG dtb
  2016-05-31 18:11 [PATCH] yocto-bsp: add BBG dtb Anders Darander
@ 2016-06-28 11:01 ` Anders Darander
  2016-07-06 10:13 ` [PATCH] " Burton, Ross
  1 sibling, 0 replies; 6+ messages in thread
From: Anders Darander @ 2016-06-28 11:01 UTC (permalink / raw)
  To: poky

Ping

* Anders Darander <anders@chargestorm.se> [160531 20:11]:

> As 4.4 is the default kernel version, we can add the dtb for the beaglebon green
> to the list of dtb's to generate.

> Signed-off-by: Anders Darander <anders@chargestorm.se>
> ---
>  meta-yocto-bsp/conf/machine/beaglebone.conf | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

> diff --git a/meta-yocto-bsp/conf/machine/beaglebone.conf b/meta-yocto-bsp/conf/machine/beaglebone.conf
> index ea50acc..ad14a47 100644
> --- a/meta-yocto-bsp/conf/machine/beaglebone.conf
> +++ b/meta-yocto-bsp/conf/machine/beaglebone.conf
> @@ -25,7 +25,7 @@ PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
>  PREFERRED_VERSION_linux-yocto ?= "4.4%"

>  KERNEL_IMAGETYPE = "zImage"
> -KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb"
> +KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb am335x-bonegreen.dtb"
>  KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"

>  SPL_BINARY = "MLO"


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

* Re: [PATCH] yocto-bsp: add BBG dtb
  2016-05-31 18:11 [PATCH] yocto-bsp: add BBG dtb Anders Darander
  2016-06-28 11:01 ` [meta-yocto-bsp][PATCH] " Anders Darander
@ 2016-07-06 10:13 ` Burton, Ross
  2016-07-06 10:52   ` Anders Darander
  1 sibling, 1 reply; 6+ messages in thread
From: Burton, Ross @ 2016-07-06 10:13 UTC (permalink / raw)
  To: Anders Darander; +Cc: Poky Project

[-- Attachment #1: Type: text/plain, Size: 484 bytes --]

On 31 May 2016 at 19:11, Anders Darander <anders@chargestorm.se> wrote:

> As 4.4 is the default kernel version, we can add the dtb for the beaglebon
> green
> to the list of dtb's to generate.
>

Default but not only: this breaks builds with the 4.1 kernel:

| make[3]: *** No rule to make target
`arch/arm/boot/dts/am335x-bonegreen.dtb'.  Stop.

(
https://autobuilder.yoctoproject.org/main/builders/nightly-arm-lsb/builds/812/steps/BuildImages_1/logs/stdio
)

Ross

[-- Attachment #2: Type: text/html, Size: 1153 bytes --]

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

* Re: [PATCH] yocto-bsp: add BBG dtb
  2016-07-06 10:13 ` [PATCH] " Burton, Ross
@ 2016-07-06 10:52   ` Anders Darander
  2016-07-06 10:55     ` Burton, Ross
  0 siblings, 1 reply; 6+ messages in thread
From: Anders Darander @ 2016-07-06 10:52 UTC (permalink / raw)
  To: Burton, Ross; +Cc: Poky Project

* Burton, Ross <ross.burton@intel.com> [160706 12:13]:

> On 31 May 2016 at 19:11, Anders Darander <anders@chargestorm.se> wrote:

> > As 4.4 is the default kernel version, we can add the dtb for the beaglebon
> > green
> > to the list of dtb's to generate.

> Default but not only: this breaks builds with the 4.1 kernel:

Ok, then I guess this one has to wait until we drop 4.1 (probably after
2.2 releases).

How does the autobuilder select the 4.1-kernel? I guess it wouldn't be
possible to remove the BBG at the same time...

Thanks for the feedback!

Cheers,
Anders

-- 
Anders Darander, Senior System Architect
ChargeStorm AB / eStorm AB


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

* Re: [PATCH] yocto-bsp: add BBG dtb
  2016-07-06 10:52   ` Anders Darander
@ 2016-07-06 10:55     ` Burton, Ross
  2016-07-06 11:03       ` Anders Darander
  0 siblings, 1 reply; 6+ messages in thread
From: Burton, Ross @ 2016-07-06 10:55 UTC (permalink / raw)
  To: Burton, Ross, Poky Project

[-- Attachment #1: Type: text/plain, Size: 300 bytes --]

On 6 July 2016 at 11:52, Anders Darander <anders@chargestorm.se> wrote:

> How does the autobuilder select the 4.1-kernel? I guess it wouldn't be
> possible to remove the BBG at the same time...
>

The AB just selected the poky-lsb distribution, which in turn sets
PREFERRED_VERSION.

Ross

[-- Attachment #2: Type: text/html, Size: 713 bytes --]

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

* Re: [PATCH] yocto-bsp: add BBG dtb
  2016-07-06 10:55     ` Burton, Ross
@ 2016-07-06 11:03       ` Anders Darander
  0 siblings, 0 replies; 6+ messages in thread
From: Anders Darander @ 2016-07-06 11:03 UTC (permalink / raw)
  To: Burton, Ross; +Cc: Poky Project

* Burton, Ross <ross.burton@intel.com> [160706 12:56]:

> On 6 July 2016 at 11:52, Anders Darander <anders@chargestorm.se> wrote:

> > How does the autobuilder select the 4.1-kernel? I guess it wouldn't be
> > possible to remove the BBG at the same time...


> The AB just selected the poky-lsb distribution, which in turn sets
> PREFERRED_VERSION.

Thanks, I had some trouble finding it prior to your directions.

I'll make a note to resubmit the patch later, when the 4.1 kernel has
been removed.

Cheers,
Anders

-- 
Anders Darander, Senior System Architect
ChargeStorm AB / eStorm AB


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

end of thread, other threads:[~2016-07-06 11:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-31 18:11 [PATCH] yocto-bsp: add BBG dtb Anders Darander
2016-06-28 11:01 ` [meta-yocto-bsp][PATCH] " Anders Darander
2016-07-06 10:13 ` [PATCH] " Burton, Ross
2016-07-06 10:52   ` Anders Darander
2016-07-06 10:55     ` Burton, Ross
2016-07-06 11:03       ` Anders Darander

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.