Re: [ptxdist] Multiple "vendor" kernels based on the same upstream kernel version

2018-03-07 Thread Michael Olbrich
Hi,

On Wed, Mar 07, 2018 at 06:18:39PM +0100, Guillermo Rodriguez Garcia wrote:
> I want to keep to different "vendor" kernels in my ptxdist BSP, and both
> are based on the same upstream kernel version, say 4.1.
> 
> How can I keep both of these kernels in the configs//.. tree?
> 
> I tried just given them different names , e.g.:
> 
> configs/platform/kernelconfig-4.1-foo
> configs/platform/kernelconfig-4.1-bar
> configs/platform/patches/linux-4.1-foo/...
> configs/platform/patches/linux-4.1-bar/...
> 
> And then select either 4.1-foo or 4.1-bar using ptxdist platformconfig.
> 
> However this does not work, as ptxdist will then try to download an
> upstream kernel with version "4.1-foo" or "4.1-bar", which obviously fails.
> 
> Any hints?

You could set the version in the platformconfig to 4.1 and use symlinks to
switch:
configs/platform/kernelconfig-4.1 -> kernelconfig-4.1-foo
configs/platform/patches/linux-4.1 -> linux-4.1-foo

You could use the kernel template to build both kernels at the same time.
You'll need to tweak the rules a bit:

KERNEL_FOO  := linux-$(KERNEL_FOO_VERSION)-foo
KERNEL_FOO_DIR  := $(BUILDDIR)/$(KERNEL_FOO)
KERNEL_FOO_URL  := .../linux-$(KERNEL_FOO_VERSION).$(KERNEL_FOO_SUFFIX)
KERNEL_FOO_SOURCE   := 
$(SRCDIR)/linux-$(KERNEL_FOO_VERSION).$(KERNEL_FOO_SUFFIX)

You won't be able to use the kernel-url macro, just use a normal URL.
Basically, KERNEL_FOO must contain the '-foo' because the patch dir is
derived from this. And KERNEL_FOO_URL and KERNEL_FOO_SOURCE must point to
the upstream tarball.

Regards,
Michael

-- 
Pengutronix e.K.   | |
Industrial Linux Solutions | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0|
Amtsgericht Hildesheim, HRA 2686   | Fax:   +49-5121-206917- |

___
ptxdist mailing list
ptxdist@pengutronix.de

[ptxdist] Multiple "vendor" kernels based on the same upstream kernel version

2018-03-07 Thread Guillermo Rodriguez Garcia
Hi all,

I want to keep to different "vendor" kernels in my ptxdist BSP, and both
are based on the same upstream kernel version, say 4.1.

How can I keep both of these kernels in the configs//.. tree?

I tried just given them different names , e.g.:

configs/platform/kernelconfig-4.1-foo
configs/platform/kernelconfig-4.1-bar
configs/platform/patches/linux-4.1-foo/...
configs/platform/patches/linux-4.1-bar/...

And then select either 4.1-foo or 4.1-bar using ptxdist platformconfig.

However this does not work, as ptxdist will then try to download an
upstream kernel with version "4.1-foo" or "4.1-bar", which obviously fails.

Any hints?

-- 
Guillermo Rodriguez Garcia
guille.rodrig...@gmail.com
___
ptxdist mailing list
ptxdist@pengutronix.de