From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 0F582E00945; Mon, 9 Feb 2015 14:06:27 -0800 (PST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no * trust * [195.74.38.224 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from bin-vsp-out-05.atm.binero.net (vsp-authed01.binero.net [195.74.38.224]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 5058AE00596 for ; Mon, 9 Feb 2015 14:06:17 -0800 (PST) X-Halon-ID: ed67a2b8-b0a7-11e4-a613-005056916f53 Authorized-sender: petter@technux.se Received: from [192.168.1.82] (unknown [81.229.90.163]) by bin-vsp-out-05.atm.binero.net (Halon Mail Gateway) with ESMTPSA; Mon, 9 Feb 2015 23:06:41 +0100 (CET) Message-ID: <54D92F56.6000202@technux.se> Date: Mon, 09 Feb 2015 23:06:14 +0100 From: =?windows-1252?Q?Petter_Mab=E4cker?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Andrei Gherzan References: <1423396716-22626-1-git-send-email-andrei@gherzan.ro> In-Reply-To: <1423396716-22626-1-git-send-email-andrei@gherzan.ro> Cc: yocto@yoctoproject.org Subject: Re: [meta-raspberrypi][PATCH 1/5] linux-raspberrypi: Refactor kernel recipes X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto Project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2015 22:06:27 -0000 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Hmm the formatting in my previous mail looks weird, I try to send this again.. See my comment inline. Cheers Petter On 02/08/2015 12:58 PM, Andrei Gherzan wrote: > We use this to simplify the update process. Updating a kernel version will not > require renaming the recipe but only tweaking LINUX_VERSION. > > Update kernel version: > - bump SRCREV > - bump LINUX_VERSION if needed > > [Support #26] > > Change-Id: I7565ddd1f03cc34c34aa5da92664a0057b415c9a > Signed-off-by: Andrei Gherzan > --- > recipes-kernel/linux/linux-raspberrypi.inc | 2 +- > recipes-kernel/linux/linux-raspberrypi_3.10.38.bb | 6 ------ > recipes-kernel/linux/linux-raspberrypi_3.10.bb | 8 ++++++++ > recipes-kernel/linux/linux-raspberrypi_3.12.36.bb | 6 ------ > recipes-kernel/linux/linux-raspberrypi_3.12.bb | 8 ++++++++ > recipes-kernel/linux/linux-raspberrypi_3.16.5.bb | 6 ------ > recipes-kernel/linux/linux-raspberrypi_3.16.bb | 8 ++++++++ > recipes-kernel/linux/linux-raspberrypi_3.18.5.bb | 5 ----- > recipes-kernel/linux/linux-raspberrypi_3.18.bb | 8 ++++++++ > recipes-kernel/linux/linux-raspberrypi_3.6.11.bb | 6 ------ > recipes-kernel/linux/linux-raspberrypi_3.6.bb | 8 ++++++++ > recipes-kernel/linux/linux-raspberrypi_3.8.13.bb | 6 ------ > recipes-kernel/linux/linux-raspberrypi_3.8.bb | 8 ++++++++ > 13 files changed, 49 insertions(+), 36 deletions(-) > delete mode 100644 recipes-kernel/linux/linux-raspberrypi_3.10.38.bb > create mode 100644 recipes-kernel/linux/linux-raspberrypi_3.10.bb > delete mode 100644 recipes-kernel/linux/linux-raspberrypi_3.12.36.bb > create mode 100644 recipes-kernel/linux/linux-raspberrypi_3.12.bb > delete mode 100644 recipes-kernel/linux/linux-raspberrypi_3.16.5.bb > create mode 100644 recipes-kernel/linux/linux-raspberrypi_3.16.bb > delete mode 100644 recipes-kernel/linux/linux-raspberrypi_3.18.5.bb > create mode 100644 recipes-kernel/linux/linux-raspberrypi_3.18.bb > delete mode 100644 recipes-kernel/linux/linux-raspberrypi_3.6.11.bb > create mode 100644 recipes-kernel/linux/linux-raspberrypi_3.6.bb > delete mode 100644 recipes-kernel/linux/linux-raspberrypi_3.8.13.bb > create mode 100644 recipes-kernel/linux/linux-raspberrypi_3.8.bb > > diff --git a/recipes-kernel/linux/linux-raspberrypi.inc b/recipes-kernel/linux/linux-raspberrypi.inc > index ff0c5ce..c00128d 100644 > --- a/recipes-kernel/linux/linux-raspberrypi.inc > +++ b/recipes-kernel/linux/linux-raspberrypi.inc > @@ -11,7 +11,7 @@ SRC_URI += " \ > > COMPATIBLE_MACHINE = "raspberrypi" > > -PV_append = "+git${SRCREV}" > +PV = "${LINUX_VERSION}+git${SRCREV}" > > # NOTE: For now we pull in the default config from the RPi kernel GIT tree. > KERNEL_DEFCONFIG = "bcmrpi_defconfig" > diff --git a/recipes-kernel/linux/linux-raspberrypi_3.10.38.bb b/recipes-kernel/linux/linux-raspberrypi_3.10.38.bb > deleted file mode 100644 > index a0c5012..0000000 > --- a/recipes-kernel/linux/linux-raspberrypi_3.10.38.bb > +++ /dev/null > @@ -1,6 +0,0 @@ > -SRCREV = "1b49b450222df26e4abf7abb6d9302f72b2ed386" > -SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.10.y \ > - file://sl030raspberrypii2ckernel.patch \ > - " > - > -require linux-raspberrypi.inc > diff --git a/recipes-kernel/linux/linux-raspberrypi_3.10.bb b/recipes-kernel/linux/linux-raspberrypi_3.10.bb > new file mode 100644 > index 0000000..e5d5bf2 > --- /dev/null > +++ b/recipes-kernel/linux/linux-raspberrypi_3.10.bb > @@ -0,0 +1,8 @@ > +LINUX_VERSION ?= "3.10.38" > + > +SRCREV = "1b49b450222df26e4abf7abb6d9302f72b2ed386" > +SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.10.y \ > + file://sl030raspberrypii2ckernel.patch \ > + " > + > +require linux-raspberrypi.inc > diff --git a/recipes-kernel/linux/linux-raspberrypi_3.12.36.bb b/recipes-kernel/linux/linux-raspberrypi_3.12.36.bb > deleted file mode 100644 > index e9e9ad7..0000000 > --- a/recipes-kernel/linux/linux-raspberrypi_3.12.36.bb > +++ /dev/null > @@ -1,6 +0,0 @@ > -SRCREV = "90fa5df724d147564149c7b79cb1ffc571a345ec" > -SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.12.y \ > - file://sl030raspberrypii2ckernel.patch \ > - " > - > -require linux-raspberrypi.inc > diff --git a/recipes-kernel/linux/linux-raspberrypi_3.12.bb b/recipes-kernel/linux/linux-raspberrypi_3.12.bb > new file mode 100644 > index 0000000..08be83e > --- /dev/null > +++ b/recipes-kernel/linux/linux-raspberrypi_3.12.bb > @@ -0,0 +1,8 @@ > +LINUX_VERSION ?= "3.12.26" > + Small typo here. It should be "3.12.36". BR, Petter > +SRCREV = "90fa5df724d147564149c7b79cb1ffc571a345ec" > +SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.12.y \ > + file://sl030raspberrypii2ckernel.patch \ > + " > + > +require linux-raspberrypi.inc > diff --git a/recipes-kernel/linux/linux-raspberrypi_3.16.5.bb b/recipes-kernel/linux/linux-raspberrypi_3.16.5.bb > deleted file mode 100644 > index 97947c2..0000000 > --- a/recipes-kernel/linux/linux-raspberrypi_3.16.5.bb > +++ /dev/null > @@ -1,6 +0,0 @@ > -SRCREV = "377c82aa1d31b37f1096096b0e4c65beb0bc5c49" > -SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.16.y \ > - file://sl030raspberrypii2ckernel.patch \ > - " > - > -require linux-raspberrypi.inc > diff --git a/recipes-kernel/linux/linux-raspberrypi_3.16.bb b/recipes-kernel/linux/linux-raspberrypi_3.16.bb > new file mode 100644 > index 0000000..ccc414f > --- /dev/null > +++ b/recipes-kernel/linux/linux-raspberrypi_3.16.bb > @@ -0,0 +1,8 @@ > +LINUX_VERSION ?= "3.16.5" > + > +SRCREV = "377c82aa1d31b37f1096096b0e4c65beb0bc5c49" > +SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.16.y \ > + file://sl030raspberrypii2ckernel.patch \ > + " > + > +require linux-raspberrypi.inc > diff --git a/recipes-kernel/linux/linux-raspberrypi_3.18.5.bb b/recipes-kernel/linux/linux-raspberrypi_3.18.5.bb > deleted file mode 100644 > index 663522e..0000000 > --- a/recipes-kernel/linux/linux-raspberrypi_3.18.5.bb > +++ /dev/null > @@ -1,5 +0,0 @@ > -SRCREV = "a6cf3c99bc89e2c010c2f78fbf9e3ed478ccfd46" > -SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.18.y \ > - file://sl030raspberrypii2ckernel.patch \ > - " > -require linux-raspberrypi.inc > diff --git a/recipes-kernel/linux/linux-raspberrypi_3.18.bb b/recipes-kernel/linux/linux-raspberrypi_3.18.bb > new file mode 100644 > index 0000000..921e702 > --- /dev/null > +++ b/recipes-kernel/linux/linux-raspberrypi_3.18.bb > @@ -0,0 +1,8 @@ > +LINUX_VERSION ?= "3.18.5" > + > +SRCREV = "a6cf3c99bc89e2c010c2f78fbf9e3ed478ccfd46" > +SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.18.y \ > + file://sl030raspberrypii2ckernel.patch \ > + " > + > +require linux-raspberrypi.inc > diff --git a/recipes-kernel/linux/linux-raspberrypi_3.6.11.bb b/recipes-kernel/linux/linux-raspberrypi_3.6.11.bb > deleted file mode 100644 > index a154bcf..0000000 > --- a/recipes-kernel/linux/linux-raspberrypi_3.6.11.bb > +++ /dev/null > @@ -1,6 +0,0 @@ > -SRCREV = "2a8d45ec0883e3cbdce920855b3461ac77308a5f" > -SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.6.y \ > - file://sl030raspberrypii2ckernel.patch \ > - " > - > -require linux-raspberrypi.inc > diff --git a/recipes-kernel/linux/linux-raspberrypi_3.6.bb b/recipes-kernel/linux/linux-raspberrypi_3.6.bb > new file mode 100644 > index 0000000..fc9ac89 > --- /dev/null > +++ b/recipes-kernel/linux/linux-raspberrypi_3.6.bb > @@ -0,0 +1,8 @@ > +LINUX_VERSION ?= "3.6.11" > + > +SRCREV = "2a8d45ec0883e3cbdce920855b3461ac77308a5f" > +SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.6.y \ > + file://sl030raspberrypii2ckernel.patch \ > + " > + > +require linux-raspberrypi.inc > diff --git a/recipes-kernel/linux/linux-raspberrypi_3.8.13.bb b/recipes-kernel/linux/linux-raspberrypi_3.8.13.bb > deleted file mode 100644 > index dc8cf0a..0000000 > --- a/recipes-kernel/linux/linux-raspberrypi_3.8.13.bb > +++ /dev/null > @@ -1,6 +0,0 @@ > -SRCREV = "d996a1b91b2bf3dc06f4f4f822a56f4496457aa1" > -SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.8.y \ > - file://sl030raspberrypii2ckernel.patch \ > - " > - > -require linux-raspberrypi.inc > diff --git a/recipes-kernel/linux/linux-raspberrypi_3.8.bb b/recipes-kernel/linux/linux-raspberrypi_3.8.bb > new file mode 100644 > index 0000000..ae0dc99 > --- /dev/null > +++ b/recipes-kernel/linux/linux-raspberrypi_3.8.bb > @@ -0,0 +1,8 @@ > +LINUX_VERSION ?= "3.8.13" > + > +SRCREV = "d996a1b91b2bf3dc06f4f4f822a56f4496457aa1" > +SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.8.y \ > + file://sl030raspberrypii2ckernel.patch \ > + " > + > +require linux-raspberrypi.inc