All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jacob Chen <jacobchen110@gmail.com>
To: Gary Thomas <gary@mlbassoc.com>
Cc: yocto@yoctoproject.org
Subject: Re: [PATCH 0/7] introduce rockchip offical linux support to meta-rockchip
Date: Thu, 19 Jan 2017 21:55:33 +0800	[thread overview]
Message-ID: <CAFLEztRa6rDCz-3P74Jd6wnETBarOBKxKvn1sCu93ugj+bjHiQ@mail.gmail.com> (raw)
In-Reply-To: <79b41a93-ab66-cafe-69e4-4bbad827cb26@mlbassoc.com>

Sorry for sending without prefix, and make you guys confused.
This series patches is sending for meta-rockchip, not core meta data.

I will resend it and add prefix.

2017-01-19 20:49 GMT+08:00 Gary Thomas <gary@mlbassoc.com>:
> On 2017-01-19 12:30, Burton, Ross wrote:
>>
>> (CCing the layer maintainers as listed in the README to ensure this gets
>> noticed)
>>
>
> Shouldn't this have [meta-rockchip] (or some such) in the subject? - it's
> certainly
> not OE-core or even Poky AFAICT
>
>>
>> On 19 January 2017 at 10:09, Jacob Chen <jacob-chen@iotwrt.com
>> <mailto:jacob-chen@iotwrt.com>> wrote:
>>
>>     This series of patches add below features, will add more supports in
>> the future(medias, more chips).
>>
>>     1. rockchip 4.4 kernel
>>
>>     Rockchip 4.4 kernel is currently the latest version of the rockchip
>> offical kernel, will be an upstream tracking branch.
>>     We regularly release the kernel through github. It support all
>> rockchip 64-bit chips and a few 32-bit chips.
>>
>>     2. rockchip next-dev U-boot
>>
>>     Rockchip next-dev U-boot is the next generation of rockchip u-boot,
>> will also be an upstream tracking branch.
>>     At present, this branch is just a rebased upstream u-boot.
>>
>>     3. graphics
>>
>>     We have plans for the acceleration in wayland, x11 in the rockchip
>> platform, but in this series of patches, we only
>>     include the mali bianry support.
>>
>>     4. rockchip-next-image
>>
>>     Being different from the previous rk-u-boot which use parameter,
>> next-dev u-boot use gpt partition, so it needs to
>>     generate a different image.
>>
>>
>>     Jacob Chen (7):
>>       recipes-kernel: linux-rockchip: Add new recipe for 4.4
>>       machine: Add machine file for the rk3288 linux Boards
>>       machine: firefly: use linux-rockchip by default
>>       recipes-graphics: Add support for mali-userspace
>>       recipes-bsp: add u-boot-rockchip support
>>       rk3288.inc: add some variables
>>       rockchip-next-image: introduce image for rockchip next-dev u-boot
>>
>>      classes/rockchip-next-image.bbclass                | 130
>> +++++++++++++++++++++
>>      conf/machine/evb-rk3288.conf                       |  12 ++
>>      conf/machine/fennec-rk3288.conf                    |  12 ++
>>      conf/machine/firefly-rk3288.conf                   |   4 +
>>      conf/machine/include/rk-linux.inc                  |  20 ++++
>>      conf/machine/include/rk3288.inc                    |  10 +-
>>      conf/machine/tinker-rk3288.conf                    |  13 +++
>>      recipes-bsp/u-boot/u-boot-rockchip_next.bb
>> <http://u-boot-rockchip_next.bb>         |  17 +++
>>      recipes-graphics/mali-userspace/mali-userspace.inc |  57 +++++++++
>>      .../mali-userspace/mali-userspace_t76x.bb
>> <http://mali-userspace_t76x.bb>          |  18 +++
>>      recipes-graphics/mesa/mesa_%.bbappend              |   9 ++
>>      recipes-kernel/linux/linux-rockchip_4.4.bb
>> <http://linux-rockchip_4.4.bb>         |  20 ++++
>>      12 files changed, 321 insertions(+), 1 deletion(-)
>>      create mode 100644 classes/rockchip-next-image.bbclass
>>      create mode 100644 conf/machine/evb-rk3288.conf
>>      create mode 100644 conf/machine/fennec-rk3288.conf
>>      create mode 100644 conf/machine/include/rk-linux.inc
>>      create mode 100644 conf/machine/tinker-rk3288.conf
>>      create mode 100644 recipes-bsp/u-boot/u-boot-rockchip_next.bb
>> <http://u-boot-rockchip_next.bb>
>>      create mode 100644 recipes-graphics/mali-userspace/mali-userspace.inc
>>      create mode 100644
>> recipes-graphics/mali-userspace/mali-userspace_t76x.bb
>> <http://mali-userspace_t76x.bb>
>>      create mode 100644 recipes-graphics/mesa/mesa_%.bbappend
>>      create mode 100644 recipes-kernel/linux/linux-rockchip_4.4.bb
>> <http://linux-rockchip_4.4.bb>
>
>
> --
> ------------------------------------------------------------
> Gary Thomas                 |  Consulting for the
> MLB Associates              |    Embedded world
> ------------------------------------------------------------
>
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto


  reply	other threads:[~2017-01-19 13:55 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-19 10:09 [PATCH 0/7] introduce rockchip offical linux support to meta-rockchip Jacob Chen
2017-01-19 10:09 ` [PATCH 1/7] recipes-kernel: linux-rockchip: Add new recipe for 4.4 Jacob Chen
2017-01-19 13:38   ` Bruce Ashfield
2017-01-27 15:12   ` Romain Perier
2017-01-19 10:09 ` [PATCH 2/7] machine: Add machine file for the rk3288 linux Boards Jacob Chen
2017-01-19 10:09 ` [PATCH 3/7] machine: firefly: use linux-rockchip by default Jacob Chen
2017-01-19 14:40   ` Eddie Cai
2017-01-27 15:27     ` Romain Perier
2017-02-10  4:10       ` Jacob Chen
2017-01-19 10:09 ` [PATCH 4/7] recipes-graphics: Add support for mali-userspace Jacob Chen
2017-01-19 10:09 ` [PATCH 5/7] recipes-bsp: add u-boot-rockchip support Jacob Chen
2017-01-27 14:48   ` Romain Perier
2017-02-10  4:32     ` Jacob Chen
2017-01-19 10:09 ` [PATCH 6/7] rk3288.inc: add some variables Jacob Chen
2017-01-19 10:09 ` [PATCH 7/7] rockchip-next-image: introduce image for rockchip next-dev u-boot Jacob Chen
2017-01-19 10:19 ` [PATCH 0/7] introduce rockchip offical linux support to meta-rockchip Jacob Chen
2017-01-19 11:30 ` Burton, Ross
2017-01-19 11:49   ` =?gb18030?B?SmFjb2IgQ2hlbg==?=
2017-01-19 12:49   ` Gary Thomas
2017-01-19 13:55     ` Jacob Chen [this message]
2017-01-19 14:11       ` Jacob Chen
2017-01-19 13:40 ` Bruce Ashfield
2017-01-19 15:17 ` Leon Woestenberg
2017-01-24 18:34   ` Trevor Woerner
2017-01-19 13:54 =?gb18030?B?SmFjb2IgQ2hlbg==?=

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAFLEztRa6rDCz-3P74Jd6wnETBarOBKxKvn1sCu93ugj+bjHiQ@mail.gmail.com \
    --to=jacobchen110@gmail.com \
    --cc=gary@mlbassoc.com \
    --cc=yocto@yoctoproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.