All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-raspberrypi][PATCH] 3.8.y series linux-raspberrypi kernel
@ 2013-09-03 12:26 Paul Barker
  2013-09-03 12:26 ` [meta-raspberrypi][PATCH] linux-raspberrypi: Add version 3.8.13 Paul Barker
  2013-09-09 21:46 ` [meta-raspberrypi][PATCH] 3.8.y series linux-raspberrypi kernel Andrei Gherzan
  0 siblings, 2 replies; 6+ messages in thread
From: Paul Barker @ 2013-09-03 12:26 UTC (permalink / raw)
  To: yocto

Build and boot tested.

Andrei: I'm unsure if you want this to be the new preferred kernel version, I'll
leave that up to you.

Paul Barker (1):
  linux-raspberrypi: Add version 3.8.13

 recipes-kernel/linux/linux-raspberrypi_3.8.13.bb | 35 ++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 recipes-kernel/linux/linux-raspberrypi_3.8.13.bb

-- 
1.8.4



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

* [meta-raspberrypi][PATCH] linux-raspberrypi: Add version 3.8.13
  2013-09-03 12:26 [meta-raspberrypi][PATCH] 3.8.y series linux-raspberrypi kernel Paul Barker
@ 2013-09-03 12:26 ` Paul Barker
  2013-09-08 10:24   ` Philipp Wagner
  2013-09-09 21:46 ` [meta-raspberrypi][PATCH] 3.8.y series linux-raspberrypi kernel Andrei Gherzan
  1 sibling, 1 reply; 6+ messages in thread
From: Paul Barker @ 2013-09-03 12:26 UTC (permalink / raw)
  To: yocto

Upstream commit d996a1b91b2bf3dc06f4f4f822a56f4496457aa1, dated 2013-08-07.

Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
---
 recipes-kernel/linux/linux-raspberrypi_3.8.13.bb | 35 ++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 recipes-kernel/linux/linux-raspberrypi_3.8.13.bb

diff --git a/recipes-kernel/linux/linux-raspberrypi_3.8.13.bb b/recipes-kernel/linux/linux-raspberrypi_3.8.13.bb
new file mode 100644
index 0000000..b482939
--- /dev/null
+++ b/recipes-kernel/linux/linux-raspberrypi_3.8.13.bb
@@ -0,0 +1,35 @@
+require linux.inc
+
+DESCRIPTION = "Linux kernel for the RaspberryPi board"
+COMPATIBLE_MACHINE = "raspberrypi"
+
+PR = "r6"
+PV_append = "+git${SRCREV}"
+
+SRCREV = "d996a1b91b2bf3dc06f4f4f822a56f4496457aa1"
+SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.8.y \
+           file://sl030raspberrypii2ckernel.patch \
+          "
+S = "${WORKDIR}/git"
+
+# NOTE: For now we pull in the default config from the RPi kernel GIT tree.
+KERNEL_DEFCONFIG = "bcmrpi_defconfig"
+
+# CMDLINE for raspberrypi
+CMDLINE_raspberrypi = "dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 root=/dev/mmcblk0p2 rootfstype=ext4 rootwait"
+
+UDEV_GE_141 ?= "1"
+
+do_configure_prepend() {
+	install -m 0644 ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig || die "No default configuration for ${MACHINE} / ${KERNEL_DEFCONFIG} available."
+}
+
+do_install_prepend() {
+	install -d ${D}/lib/firmware
+}
+
+do_deploy_append() {
+	# Deploy cmdline.txt
+	install -d ${DEPLOYDIR}/bcm2835-bootfiles
+	echo "${CMDLINE}" > ${DEPLOYDIR}/bcm2835-bootfiles/cmdline.txt
+}
-- 
1.8.4



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

* Re: [meta-raspberrypi][PATCH] linux-raspberrypi: Add version 3.8.13
  2013-09-03 12:26 ` [meta-raspberrypi][PATCH] linux-raspberrypi: Add version 3.8.13 Paul Barker
@ 2013-09-08 10:24   ` Philipp Wagner
  2013-09-09 14:23     ` Paul Barker
  0 siblings, 1 reply; 6+ messages in thread
From: Philipp Wagner @ 2013-09-08 10:24 UTC (permalink / raw)
  To: Paul Barker, Yocto Project

Hi,

a general question to start: 3.11.0 is out now as well (and it works, at
least in my tests), should we add that as well?

Am 03.09.2013 14:26, Paul Barker wrote:
> Upstream commit d996a1b91b2bf3dc06f4f4f822a56f4496457aa1, dated 2013-08-07.
> 
> Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
> ---
>  recipes-kernel/linux/linux-raspberrypi_3.8.13.bb | 35 ++++++++++++++++++++++++
>  1 file changed, 35 insertions(+)
>  create mode 100644 recipes-kernel/linux/linux-raspberrypi_3.8.13.bb
> 
> diff --git a/recipes-kernel/linux/linux-raspberrypi_3.8.13.bb b/recipes-kernel/linux/linux-raspberrypi_3.8.13.bb
> new file mode 100644
> index 0000000..b482939
> --- /dev/null
> +++ b/recipes-kernel/linux/linux-raspberrypi_3.8.13.bb
> @@ -0,0 +1,35 @@
> +require linux.inc
> +
> +DESCRIPTION = "Linux kernel for the RaspberryPi board"
> +COMPATIBLE_MACHINE = "raspberrypi"
> +
> +PR = "r6"

I guess this does not matter, but would r1 not be more natural?

> +PV_append = "+git${SRCREV}"
> +
> +SRCREV = "d996a1b91b2bf3dc06f4f4f822a56f4496457aa1"
> +SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.8.y \
> +           file://sl030raspberrypii2ckernel.patch \
> +          "
> +S = "${WORKDIR}/git"
> +
> +# NOTE: For now we pull in the default config from the RPi kernel GIT tree.
> +KERNEL_DEFCONFIG = "bcmrpi_defconfig"
> +
> +# CMDLINE for raspberrypi
> +CMDLINE_raspberrypi = "dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 root=/dev/mmcblk0p2 rootfstype=ext4 rootwait"
> +
> +UDEV_GE_141 ?= "1"

This is already part of linux.inc, is it necessary here again?

> +
> +do_configure_prepend() {
> +	install -m 0644 ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig || die "No default configuration for ${MACHINE} / ${KERNEL_DEFCONFIG} available."
> +}
> +
> +do_install_prepend() {
> +	install -d ${D}/lib/firmware
> +}
> +
> +do_deploy_append() {
> +	# Deploy cmdline.txt
> +	install -d ${DEPLOYDIR}/bcm2835-bootfiles
> +	echo "${CMDLINE}" > ${DEPLOYDIR}/bcm2835-bootfiles/cmdline.txt
> +}
> 


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

* Re: [meta-raspberrypi][PATCH] linux-raspberrypi: Add version 3.8.13
  2013-09-08 10:24   ` Philipp Wagner
@ 2013-09-09 14:23     ` Paul Barker
  2013-09-09 21:45       ` Andrei Gherzan
  0 siblings, 1 reply; 6+ messages in thread
From: Paul Barker @ 2013-09-09 14:23 UTC (permalink / raw)
  To: Philipp Wagner; +Cc: Yocto Project

On 8 September 2013 11:24, Philipp Wagner <lists@philipp-wagner.com> wrote:
> Hi,
>
> a general question to start: 3.11.0 is out now as well (and it works, at
> least in my tests), should we add that as well?
>

I think 3.10 would be a better choice first, as Greg Kroah-Hartman has
indicated that this will be the next Long-Term Support kernel
(http://www.kroah.com/log/blog/2013/08/04/longterm-kernel-3-dot-10/)
and oe-core also has a 3.10 series linux-yocto kernel. I threw in a
recipe for 3.8 as it's what I was playing with at the time and it
matches with oe-core also having a 3.8 series kernel.

> Am 03.09.2013 14:26, Paul Barker wrote:
>> +PR = "r6"
>
> I guess this does not matter, but would r1 not be more natural?

We can probably drop PR completely.

>> +UDEV_GE_141 ?= "1"
>
> This is already part of linux.inc, is it necessary here again?

I just copied the previous kernel recipe and made my changes. If this
is unnecessary here (which it looks to be), it'll also want removing
from the 3.6 and 3.2 recipes.

-- 
Paul Barker

Email: paul@paulbarker.me.uk
http://www.paulbarker.me.uk


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

* Re: [meta-raspberrypi][PATCH] linux-raspberrypi: Add version 3.8.13
  2013-09-09 14:23     ` Paul Barker
@ 2013-09-09 21:45       ` Andrei Gherzan
  0 siblings, 0 replies; 6+ messages in thread
From: Andrei Gherzan @ 2013-09-09 21:45 UTC (permalink / raw)
  To: Paul Barker; +Cc: Yocto Project

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

On Mon, Sep 9, 2013 at 5:23 PM, Paul Barker <paul@paulbarker.me.uk> wrote:

> On 8 September 2013 11:24, Philipp Wagner <lists@philipp-wagner.com>
> wrote:
> > Hi,
> >
> > a general question to start: 3.11.0 is out now as well (and it works, at
> > least in my tests), should we add that as well?
> >
>
> I think 3.10 would be a better choice first, as Greg Kroah-Hartman has
> indicated that this will be the next Long-Term Support kernel
> (http://www.kroah.com/log/blog/2013/08/04/longterm-kernel-3-dot-10/)
> and oe-core also has a 3.10 series linux-yocto kernel. I threw in a
> recipe for 3.8 as it's what I was playing with at the time and it
> matches with oe-core also having a 3.8 series kernel.
>
>
So the main idea that i would like to have it here would be: one stable
version, and the last available one. But if people need and use more
version, i don't mind to have all here available.


> > Am 03.09.2013 14:26, Paul Barker wrote:
> >> +PR = "r6"
> >
> > I guess this does not matter, but would r1 not be more natural?
>
> We can probably drop PR completely.
>
>
+1


> >> +UDEV_GE_141 ?= "1"
> >
> > This is already part of linux.inc, is it necessary here again?
>
> I just copied the previous kernel recipe and made my changes. If this
> is unnecessary here (which it looks to be), it'll also want removing
> from the 3.6 and 3.2 recipes.
>
>
+1


-- 
*Andrei Gherzan*
m: +40.744.478.414 |  f: +40.31.816.28.12

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

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

* Re: [meta-raspberrypi][PATCH] 3.8.y series linux-raspberrypi kernel
  2013-09-03 12:26 [meta-raspberrypi][PATCH] 3.8.y series linux-raspberrypi kernel Paul Barker
  2013-09-03 12:26 ` [meta-raspberrypi][PATCH] linux-raspberrypi: Add version 3.8.13 Paul Barker
@ 2013-09-09 21:46 ` Andrei Gherzan
  1 sibling, 0 replies; 6+ messages in thread
From: Andrei Gherzan @ 2013-09-09 21:46 UTC (permalink / raw)
  To: Paul Barker; +Cc: Yocto Project

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

On Tue, Sep 3, 2013 at 3:26 PM, Paul Barker <paul@paulbarker.me.uk> wrote:

> Build and boot tested.
>
> Andrei: I'm unsure if you want this to be the new preferred kernel
> version, I'll
> leave that up to you.
>

Have the main branch the default one. That would be 3.6 for now.
-- 
*Andrei Gherzan*
m: +40.744.478.414 |  f: +40.31.816.28.12

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

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

end of thread, other threads:[~2013-09-09 21:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-03 12:26 [meta-raspberrypi][PATCH] 3.8.y series linux-raspberrypi kernel Paul Barker
2013-09-03 12:26 ` [meta-raspberrypi][PATCH] linux-raspberrypi: Add version 3.8.13 Paul Barker
2013-09-08 10:24   ` Philipp Wagner
2013-09-09 14:23     ` Paul Barker
2013-09-09 21:45       ` Andrei Gherzan
2013-09-09 21:46 ` [meta-raspberrypi][PATCH] 3.8.y series linux-raspberrypi kernel Andrei Gherzan

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.