From: Tom Zanussi <tom.zanussi@intel.com>
To: Darren Hart <dvhart@linux.intel.com>
Cc: yocto@yoctoproject.org
Subject: Re: [PATCH 06/10] meta/crownbay: factor out policy-related options
Date: Fri, 11 May 2012 17:19:10 -0500 [thread overview]
Message-ID: <1336774750.27950.16.camel@elmorro> (raw)
In-Reply-To: <1336774104.27950.13.camel@elmorro>
On Fri, 2012-05-11 at 17:08 -0500, Tom Zanussi wrote:
> On Fri, 2012-05-11 at 09:18 -0700, Darren Hart wrote:
> >
> > On 05/10/2012 06:00 PM, tom.zanussi@intel.com wrote:
> > > From: Tom Zanussi <tom.zanussi@intel.com>
> > >
> > > Refactor bsp/common-pc/common-pc* to keep hardware-related options in
> >
> > oops ^
> >
> > > the base crownbay.scc while moving the more 'policy'-related options
> > > into the files that include the base crownbay.scc fragment.
> > >
> > > This allows the different kernel types to make use of the basic
> > > machine support without dragging along possibly unwanted options that
> > > fall under the heading of 'policy' for a specific kernel type.
> > >
> > > Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
> >
> >
> > With minor comment tweak above:
> >
> > Acked-by-by: Darren Hart <dvhart@linux.intel.com>
> >
> > > ---
> > > .../bsp/crownbay/crownbay-preempt-rt.scc | 8 ++++++++
> > > .../bsp/crownbay/crownbay-standard.scc | 7 +++++++
> > > meta/cfg/kernel-cache/bsp/crownbay/crownbay.scc | 7 -------
> > > 3 files changed, 15 insertions(+), 7 deletions(-)
> > >
> > > diff --git a/meta/cfg/kernel-cache/bsp/crownbay/crownbay-preempt-rt.scc b/meta/cfg/kernel-cache/bsp/crownbay/crownbay-preempt-rt.scc
> > > index d58b4be..11067ef 100644
> > > --- a/meta/cfg/kernel-cache/bsp/crownbay/crownbay-preempt-rt.scc
> > > +++ b/meta/cfg/kernel-cache/bsp/crownbay/crownbay-preempt-rt.scc
> > > @@ -4,4 +4,12 @@ define KARCH i386
> > >
> > > # no new branch required, re-use the ktypes/preempt-rt branch
> > > include ktypes/preempt-rt
> > > +
> > > include crownbay.scc
> > > +
> > > +# default policy for preempt-rt kernels
> > > +include cfg/usb-mass-storage.scc
> > > +include cfg/boot-live.scc
> > > +include features/logbuf/size-normal.scc
> > > +include features/latencytop/latencytop.scc
> > > +include features/profiling/profiling.scc
> > > diff --git a/meta/cfg/kernel-cache/bsp/crownbay/crownbay-standard.scc b/meta/cfg/kernel-cache/bsp/crownbay/crownbay-standard.scc
> > > index d6036f7..dd9dbc7 100644
> > > --- a/meta/cfg/kernel-cache/bsp/crownbay/crownbay-standard.scc
> > > +++ b/meta/cfg/kernel-cache/bsp/crownbay/crownbay-standard.scc
> > > @@ -9,3 +9,10 @@ include features/emgd/emgd-1.10.scc
> > > git merge emgd-1.10
> > >
> > > include crownbay.scc
> > > +
> > > +# default policy for standard kernels
> > > +include cfg/usb-mass-storage.scc
> > > +include cfg/boot-live.scc
> > > +include features/logbuf/size-normal.scc
> > > +include features/latencytop/latencytop.scc
> > > +include features/profiling/profiling.scc
> > > diff --git a/meta/cfg/kernel-cache/bsp/crownbay/crownbay.scc b/meta/cfg/kernel-cache/bsp/crownbay/crownbay.scc
> > > index c4bc1a5..82ed6f3 100644
> > > --- a/meta/cfg/kernel-cache/bsp/crownbay/crownbay.scc
> > > +++ b/meta/cfg/kernel-cache/bsp/crownbay/crownbay.scc
> > > @@ -8,16 +8,9 @@ include cfg/dmaengine.scc
> > > include features/serial/8250.scc
> > > include features/hpet/hpet.scc
> > > include cfg/vesafb.scc
> > > -include cfg/usb-mass-storage.scc
> > > -include cfg/boot-live.scc
> > > include cfg/smp.scc
> > > include features/power/intel.scc
> > >
> > > -include features/logbuf/size-normal.scc
> > > -
> > > -include features/latencytop/latencytop.scc
> > > -include features/profiling/profiling.scc
> > > -
> > > include features/usb/ehci-hcd.scc
> > > include features/usb/ohci-hcd.scc
> > > include features/usb/uhci-hcd.scc
> >
> > Independent from this patch, but does crownbay have all three? ehci and
> > ohci seems a lot more likely to me.
> >
>
> lsusb shows ehci and ohci, but why did you think ohci would be more
> likely?
>
Never mind, yeah, that's what the eg20t data sheet says as well, somehow
thought it would be uhci...
Tom
> Tom
>
>
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
next prev parent reply other threads:[~2012-05-11 22:19 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-11 1:00 [PATCH 00/10][KERNEL][RFC] policy cleanup patches tom.zanussi
2012-05-11 0:59 ` [PATCH 01/10] meta: add ROOT_HUB_TT config option to the usb/ehci-hcd feature tom.zanussi
2012-05-11 16:08 ` Darren Hart
2012-05-11 0:59 ` [PATCH 02/10] meta/common-pc: use usb features tom.zanussi
2012-05-11 16:12 ` Darren Hart
2012-05-11 19:26 ` Tom Zanussi
2012-05-11 20:15 ` Bruce Ashfield
2012-05-11 0:59 ` [PATCH 03/10] meta/common-pc-64: " tom.zanussi
2012-05-11 1:00 ` [PATCH 04/10] meta/common-pc: factor out policy-related options tom.zanussi
2012-05-11 16:15 ` Darren Hart
2012-05-11 19:29 ` Tom Zanussi
2012-05-11 1:00 ` [PATCH 05/10] " tom.zanussi
2012-05-11 16:15 ` Darren Hart
2012-05-11 1:00 ` [PATCH 06/10] meta/crownbay: " tom.zanussi
2012-05-11 16:18 ` Darren Hart
2012-05-11 22:08 ` Tom Zanussi
2012-05-11 22:19 ` Tom Zanussi [this message]
2012-05-11 22:35 ` Darren Hart
2012-05-11 22:42 ` Tom Zanussi
2012-05-11 22:54 ` Darren Hart
2012-05-11 1:00 ` [PATCH 07/10] meta/emenlow: " tom.zanussi
2012-05-11 16:19 ` Darren Hart
2012-05-11 1:00 ` [PATCH 08/10] " tom.zanussi
2012-05-11 16:20 ` Darren Hart
2012-05-11 1:00 ` [PATCH 09/10] meta/jasperforest: " tom.zanussi
2012-05-11 16:20 ` Darren Hart
2012-05-11 1:00 ` [PATCH 10/10] meta/sugarbay: " tom.zanussi
2012-05-11 16:20 ` Darren Hart
2012-05-11 16:16 ` [PATCH 00/10][KERNEL][RFC] policy cleanup patches Bruce Ashfield
2012-05-11 20:17 ` Bruce Ashfield
2012-05-11 20:47 ` Tom Zanussi
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=1336774750.27950.16.camel@elmorro \
--to=tom.zanussi@intel.com \
--cc=dvhart@linux.intel.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.