All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] formfactor: add machconfig for qemumips64 and beaglebone
@ 2016-02-03 10:30 Maxin B. John
  2016-02-03 15:02 ` Martin Jansa
  0 siblings, 1 reply; 7+ messages in thread
From: Maxin B. John @ 2016-02-03 10:30 UTC (permalink / raw)
  To: openembedded-core

We need machconfig file to automatically choose between physical and virtual
keyboards.

[YOCTO #9027]

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-bsp/formfactor/files/beaglebone/machconfig |  3 +++
 meta/recipes-bsp/formfactor/files/qemumips64/machconfig | 10 ++++++++++
 2 files changed, 13 insertions(+)
 create mode 100755 meta/recipes-bsp/formfactor/files/beaglebone/machconfig
 create mode 100755 meta/recipes-bsp/formfactor/files/qemumips64/machconfig

diff --git a/meta/recipes-bsp/formfactor/files/beaglebone/machconfig b/meta/recipes-bsp/formfactor/files/beaglebone/machconfig
new file mode 100755
index 0000000..ffce012
--- /dev/null
+++ b/meta/recipes-bsp/formfactor/files/beaglebone/machconfig
@@ -0,0 +1,3 @@
+# Assume a USB mouse and keyboard are connected
+HAVE_TOUCHSCREEN=0
+HAVE_KEYBOARD=1
diff --git a/meta/recipes-bsp/formfactor/files/qemumips64/machconfig b/meta/recipes-bsp/formfactor/files/qemumips64/machconfig
new file mode 100755
index 0000000..56777b6
--- /dev/null
+++ b/meta/recipes-bsp/formfactor/files/qemumips64/machconfig
@@ -0,0 +1,10 @@
+HAVE_TOUCHSCREEN=1
+HAVE_KEYBOARD=1
+ 
+DISPLAY_CAN_ROTATE=0
+DISPLAY_ORIENTATION=0
+DISPLAY_WIDTH_PIXELS=640
+DISPLAY_HEIGHT_PIXELS=480
+DISPLAY_BPP=16
+DISPLAY_DPI=150
+#DISPLAY_SUBPIXEL_ORDER=vrgb
-- 
2.4.0



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

* Re: [PATCH v2] formfactor: add machconfig for qemumips64 and beaglebone
  2016-02-03 10:30 [PATCH v2] formfactor: add machconfig for qemumips64 and beaglebone Maxin B. John
@ 2016-02-03 15:02 ` Martin Jansa
  2016-02-03 15:08   ` Maxin B. John
  0 siblings, 1 reply; 7+ messages in thread
From: Martin Jansa @ 2016-02-03 15:02 UTC (permalink / raw)
  To: Maxin B. John; +Cc: openembedded-core

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

On Wed, Feb 03, 2016 at 12:30:08PM +0200, Maxin B. John wrote:
> We need machconfig file to automatically choose between physical and virtual
> keyboards.
> 
> [YOCTO #9027]
> 
> Signed-off-by: Maxin B. John <maxin.john@intel.com>
> ---
>  meta/recipes-bsp/formfactor/files/beaglebone/machconfig |  3 +++

I still don't understand why beaglebone specific file should be included
in oe-core, all other BSP layers are providing own machconfig for their
MACHINEs, why should beaglebone be first exception for oe-core?

>  meta/recipes-bsp/formfactor/files/qemumips64/machconfig | 10 ++++++++++
>  2 files changed, 13 insertions(+)
>  create mode 100755 meta/recipes-bsp/formfactor/files/beaglebone/machconfig
>  create mode 100755 meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> 
> diff --git a/meta/recipes-bsp/formfactor/files/beaglebone/machconfig b/meta/recipes-bsp/formfactor/files/beaglebone/machconfig
> new file mode 100755
> index 0000000..ffce012
> --- /dev/null
> +++ b/meta/recipes-bsp/formfactor/files/beaglebone/machconfig
> @@ -0,0 +1,3 @@
> +# Assume a USB mouse and keyboard are connected
> +HAVE_TOUCHSCREEN=0
> +HAVE_KEYBOARD=1
> diff --git a/meta/recipes-bsp/formfactor/files/qemumips64/machconfig b/meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> new file mode 100755
> index 0000000..56777b6
> --- /dev/null
> +++ b/meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> @@ -0,0 +1,10 @@
> +HAVE_TOUCHSCREEN=1
> +HAVE_KEYBOARD=1
> + 
> +DISPLAY_CAN_ROTATE=0
> +DISPLAY_ORIENTATION=0
> +DISPLAY_WIDTH_PIXELS=640
> +DISPLAY_HEIGHT_PIXELS=480
> +DISPLAY_BPP=16
> +DISPLAY_DPI=150
> +#DISPLAY_SUBPIXEL_ORDER=vrgb
> -- 
> 2.4.0
> 
> -- 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

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

* Re: [PATCH v2] formfactor: add machconfig for qemumips64 and beaglebone
  2016-02-03 15:02 ` Martin Jansa
@ 2016-02-03 15:08   ` Maxin B. John
  2016-02-03 15:17     ` Khem Raj
  2016-02-03 15:30     ` Martin Jansa
  0 siblings, 2 replies; 7+ messages in thread
From: Maxin B. John @ 2016-02-03 15:08 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-core

Hi Martin,

On Wed, Feb 03, 2016 at 04:02:56PM +0100, Martin Jansa wrote:
> On Wed, Feb 03, 2016 at 12:30:08PM +0200, Maxin B. John wrote:
> > We need machconfig file to automatically choose between physical and virtual
> > keyboards.
> > 
> > [YOCTO #9027]
> > 
> > Signed-off-by: Maxin B. John <maxin.john@intel.com>
> > ---
> >  meta/recipes-bsp/formfactor/files/beaglebone/machconfig |  3 +++
> 
> I still don't understand why beaglebone specific file should be included
> in oe-core, all other BSP layers are providing own machconfig for their
> MACHINEs, why should beaglebone be first exception for oe-core?
>
Apart from what Ross mentioned before,

commit 76b1d595cd7104797495067cc8c59db631edb75d
Author: Denys Dmytriyenko <denys@ti.com>
Date:   Wed Mar 26 15:21:10 2014 -0400

added beaglebone to meta-yocto-bsp. Before that, ARM reference board was
beagleboard.

commit 7254dfb642cb0262c7e14ef2a4c8a7a42afada60
Author: Richard Purdie <richard.purdie@linuxfoundation.org>
Date:   Fri Mar 28 18:07:01 2014 +0000

    Drop beagleboard, replaced by beaglebone

> >  meta/recipes-bsp/formfactor/files/qemumips64/machconfig | 10 ++++++++++
> >  2 files changed, 13 insertions(+)
> >  create mode 100755 meta/recipes-bsp/formfactor/files/beaglebone/machconfig
> >  create mode 100755 meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> > 
> > diff --git a/meta/recipes-bsp/formfactor/files/beaglebone/machconfig b/meta/recipes-bsp/formfactor/files/beaglebone/machconfig
> > new file mode 100755
> > index 0000000..ffce012
> > --- /dev/null
> > +++ b/meta/recipes-bsp/formfactor/files/beaglebone/machconfig
> > @@ -0,0 +1,3 @@
> > +# Assume a USB mouse and keyboard are connected
> > +HAVE_TOUCHSCREEN=0
> > +HAVE_KEYBOARD=1
> > diff --git a/meta/recipes-bsp/formfactor/files/qemumips64/machconfig b/meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> > new file mode 100755
> > index 0000000..56777b6
> > --- /dev/null
> > +++ b/meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> > @@ -0,0 +1,10 @@
> > +HAVE_TOUCHSCREEN=1
> > +HAVE_KEYBOARD=1
> > + 
> > +DISPLAY_CAN_ROTATE=0
> > +DISPLAY_ORIENTATION=0
> > +DISPLAY_WIDTH_PIXELS=640
> > +DISPLAY_HEIGHT_PIXELS=480
> > +DISPLAY_BPP=16
> > +DISPLAY_DPI=150
> > +#DISPLAY_SUBPIXEL_ORDER=vrgb
> > -- 
> > 2.4.0
> > 
> > -- 
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-core
> 
> -- 
> Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

Best Regards,
Maxin



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

* Re: [PATCH v2] formfactor: add machconfig for qemumips64 and beaglebone
  2016-02-03 15:08   ` Maxin B. John
@ 2016-02-03 15:17     ` Khem Raj
  2016-02-03 15:41       ` Maxin B. John
  2016-02-03 15:30     ` Martin Jansa
  1 sibling, 1 reply; 7+ messages in thread
From: Khem Raj @ 2016-02-03 15:17 UTC (permalink / raw)
  To: Maxin B. John; +Cc: Patches and discussions about the oe-core layer

On Wed, Feb 3, 2016 at 7:08 AM, Maxin B. John <maxin.john@intel.com> wrote:
> Hi Martin,
>
> On Wed, Feb 03, 2016 at 04:02:56PM +0100, Martin Jansa wrote:
>> On Wed, Feb 03, 2016 at 12:30:08PM +0200, Maxin B. John wrote:
>> > We need machconfig file to automatically choose between physical and virtual
>> > keyboards.
>> >
>> > [YOCTO #9027]
>> >
>> > Signed-off-by: Maxin B. John <maxin.john@intel.com>
>> > ---
>> >  meta/recipes-bsp/formfactor/files/beaglebone/machconfig |  3 +++
>>
>> I still don't understand why beaglebone specific file should be included
>> in oe-core, all other BSP layers are providing own machconfig for their
>> MACHINEs, why should beaglebone be first exception for oe-core?
>>
> Apart from what Ross mentioned before,
>
> commit 76b1d595cd7104797495067cc8c59db631edb75d
> Author: Denys Dmytriyenko <denys@ti.com>
> Date:   Wed Mar 26 15:21:10 2014 -0400
>
> added beaglebone to meta-yocto-bsp. Before that, ARM reference board was
> beagleboard.
>
> commit 7254dfb642cb0262c7e14ef2a4c8a7a42afada60
> Author: Richard Purdie <richard.purdie@linuxfoundation.org>
> Date:   Fri Mar 28 18:07:01 2014 +0000
>
>     Drop beagleboard, replaced by beaglebone

yeah so move it to meta-yocto. OE-Core in-tree BSPs are just the qemu machines

>
>> >  meta/recipes-bsp/formfactor/files/qemumips64/machconfig | 10 ++++++++++
>> >  2 files changed, 13 insertions(+)
>> >  create mode 100755 meta/recipes-bsp/formfactor/files/beaglebone/machconfig
>> >  create mode 100755 meta/recipes-bsp/formfactor/files/qemumips64/machconfig
>> >
>> > diff --git a/meta/recipes-bsp/formfactor/files/beaglebone/machconfig b/meta/recipes-bsp/formfactor/files/beaglebone/machconfig
>> > new file mode 100755
>> > index 0000000..ffce012
>> > --- /dev/null
>> > +++ b/meta/recipes-bsp/formfactor/files/beaglebone/machconfig
>> > @@ -0,0 +1,3 @@
>> > +# Assume a USB mouse and keyboard are connected
>> > +HAVE_TOUCHSCREEN=0
>> > +HAVE_KEYBOARD=1
>> > diff --git a/meta/recipes-bsp/formfactor/files/qemumips64/machconfig b/meta/recipes-bsp/formfactor/files/qemumips64/machconfig
>> > new file mode 100755
>> > index 0000000..56777b6
>> > --- /dev/null
>> > +++ b/meta/recipes-bsp/formfactor/files/qemumips64/machconfig
>> > @@ -0,0 +1,10 @@
>> > +HAVE_TOUCHSCREEN=1
>> > +HAVE_KEYBOARD=1
>> > +
>> > +DISPLAY_CAN_ROTATE=0
>> > +DISPLAY_ORIENTATION=0
>> > +DISPLAY_WIDTH_PIXELS=640
>> > +DISPLAY_HEIGHT_PIXELS=480
>> > +DISPLAY_BPP=16
>> > +DISPLAY_DPI=150
>> > +#DISPLAY_SUBPIXEL_ORDER=vrgb
>> > --
>> > 2.4.0
>> >
>> > --
>> > _______________________________________________
>> > Openembedded-core mailing list
>> > Openembedded-core@lists.openembedded.org
>> > http://lists.openembedded.org/mailman/listinfo/openembedded-core
>>
>> --
>> Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
>
> Best Regards,
> Maxin
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH v2] formfactor: add machconfig for qemumips64 and beaglebone
  2016-02-03 15:08   ` Maxin B. John
  2016-02-03 15:17     ` Khem Raj
@ 2016-02-03 15:30     ` Martin Jansa
  2016-02-03 15:46       ` Maxin B. John
  1 sibling, 1 reply; 7+ messages in thread
From: Martin Jansa @ 2016-02-03 15:30 UTC (permalink / raw)
  To: Maxin B. John; +Cc: openembedded-core

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

On Wed, Feb 03, 2016 at 05:08:47PM +0200, Maxin B. John wrote:
> Hi Martin,
> 
> On Wed, Feb 03, 2016 at 04:02:56PM +0100, Martin Jansa wrote:
> > On Wed, Feb 03, 2016 at 12:30:08PM +0200, Maxin B. John wrote:
> > > We need machconfig file to automatically choose between physical and virtual
> > > keyboards.
> > > 
> > > [YOCTO #9027]
> > > 
> > > Signed-off-by: Maxin B. John <maxin.john@intel.com>
> > > ---
> > >  meta/recipes-bsp/formfactor/files/beaglebone/machconfig |  3 +++
> > 
> > I still don't understand why beaglebone specific file should be included
> > in oe-core, all other BSP layers are providing own machconfig for their
> > MACHINEs, why should beaglebone be first exception for oe-core?
> >
> Apart from what Ross mentioned before,

Is this for oe-core or meta-yocto-bsp? The subject doesn't say which and
path looks like for oe-core.

And if it's for meta-yocto-bsp, does it belong to yocto ML? There is no
README in meta-yocto-bsp root.

> commit 76b1d595cd7104797495067cc8c59db631edb75d
> Author: Denys Dmytriyenko <denys@ti.com>
> Date:   Wed Mar 26 15:21:10 2014 -0400
> 
> added beaglebone to meta-yocto-bsp. Before that, ARM reference board was
> beagleboard.
> 
> commit 7254dfb642cb0262c7e14ef2a4c8a7a42afada60
> Author: Richard Purdie <richard.purdie@linuxfoundation.org>
> Date:   Fri Mar 28 18:07:01 2014 +0000
> 
>     Drop beagleboard, replaced by beaglebone
> 
> > >  meta/recipes-bsp/formfactor/files/qemumips64/machconfig | 10 ++++++++++
> > >  2 files changed, 13 insertions(+)
> > >  create mode 100755 meta/recipes-bsp/formfactor/files/beaglebone/machconfig
> > >  create mode 100755 meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> > > 
> > > diff --git a/meta/recipes-bsp/formfactor/files/beaglebone/machconfig b/meta/recipes-bsp/formfactor/files/beaglebone/machconfig
> > > new file mode 100755
> > > index 0000000..ffce012
> > > --- /dev/null
> > > +++ b/meta/recipes-bsp/formfactor/files/beaglebone/machconfig
> > > @@ -0,0 +1,3 @@
> > > +# Assume a USB mouse and keyboard are connected
> > > +HAVE_TOUCHSCREEN=0
> > > +HAVE_KEYBOARD=1
> > > diff --git a/meta/recipes-bsp/formfactor/files/qemumips64/machconfig b/meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> > > new file mode 100755
> > > index 0000000..56777b6
> > > --- /dev/null
> > > +++ b/meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> > > @@ -0,0 +1,10 @@
> > > +HAVE_TOUCHSCREEN=1
> > > +HAVE_KEYBOARD=1
> > > + 
> > > +DISPLAY_CAN_ROTATE=0
> > > +DISPLAY_ORIENTATION=0
> > > +DISPLAY_WIDTH_PIXELS=640
> > > +DISPLAY_HEIGHT_PIXELS=480
> > > +DISPLAY_BPP=16
> > > +DISPLAY_DPI=150
> > > +#DISPLAY_SUBPIXEL_ORDER=vrgb
> > > -- 
> > > 2.4.0
> > > 
> > > -- 
> > > _______________________________________________
> > > Openembedded-core mailing list
> > > Openembedded-core@lists.openembedded.org
> > > http://lists.openembedded.org/mailman/listinfo/openembedded-core
> > 
> > -- 
> > Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
> 
> Best Regards,
> Maxin
> 

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

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

* Re: [PATCH v2] formfactor: add machconfig for qemumips64 and beaglebone
  2016-02-03 15:17     ` Khem Raj
@ 2016-02-03 15:41       ` Maxin B. John
  0 siblings, 0 replies; 7+ messages in thread
From: Maxin B. John @ 2016-02-03 15:41 UTC (permalink / raw)
  To: Khem Raj; +Cc: Patches and discussions about the oe-core layer

Hi Khem,

On Wed, Feb 03, 2016 at 07:17:57AM -0800, Khem Raj wrote:
> On Wed, Feb 3, 2016 at 7:08 AM, Maxin B. John <maxin.john@intel.com> wrote:
> > Hi Martin,
> >
> > On Wed, Feb 03, 2016 at 04:02:56PM +0100, Martin Jansa wrote:
> >> On Wed, Feb 03, 2016 at 12:30:08PM +0200, Maxin B. John wrote:
> >> > We need machconfig file to automatically choose between physical and virtual
> >> > keyboards.
> >> >
> >> > [YOCTO #9027]
> >> >
> >> > Signed-off-by: Maxin B. John <maxin.john@intel.com>
> >> > ---
> >> >  meta/recipes-bsp/formfactor/files/beaglebone/machconfig |  3 +++
> >>
> >> I still don't understand why beaglebone specific file should be included
> >> in oe-core, all other BSP layers are providing own machconfig for their
> >> MACHINEs, why should beaglebone be first exception for oe-core?
> >>
> > Apart from what Ross mentioned before,
> >
> > commit 76b1d595cd7104797495067cc8c59db631edb75d
> > Author: Denys Dmytriyenko <denys@ti.com>
> > Date:   Wed Mar 26 15:21:10 2014 -0400
> >
> > added beaglebone to meta-yocto-bsp. Before that, ARM reference board was
> > beagleboard.
> >
> > commit 7254dfb642cb0262c7e14ef2a4c8a7a42afada60
> > Author: Richard Purdie <richard.purdie@linuxfoundation.org>
> > Date:   Fri Mar 28 18:07:01 2014 +0000
> >
> >     Drop beagleboard, replaced by beaglebone
> 
> yeah so move it to meta-yocto. OE-Core in-tree BSPs are just the qemu machines
 
That makes sense. will update it send a v3.

(I was trying to follow the same way that we used for beagleboard)

> >
> >> >  meta/recipes-bsp/formfactor/files/qemumips64/machconfig | 10 ++++++++++
> >> >  2 files changed, 13 insertions(+)
> >> >  create mode 100755 meta/recipes-bsp/formfactor/files/beaglebone/machconfig
> >> >  create mode 100755 meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> >> >
> >> > diff --git a/meta/recipes-bsp/formfactor/files/beaglebone/machconfig b/meta/recipes-bsp/formfactor/files/beaglebone/machconfig
> >> > new file mode 100755
> >> > index 0000000..ffce012
> >> > --- /dev/null
> >> > +++ b/meta/recipes-bsp/formfactor/files/beaglebone/machconfig
> >> > @@ -0,0 +1,3 @@
> >> > +# Assume a USB mouse and keyboard are connected
> >> > +HAVE_TOUCHSCREEN=0
> >> > +HAVE_KEYBOARD=1
> >> > diff --git a/meta/recipes-bsp/formfactor/files/qemumips64/machconfig b/meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> >> > new file mode 100755
> >> > index 0000000..56777b6
> >> > --- /dev/null
> >> > +++ b/meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> >> > @@ -0,0 +1,10 @@
> >> > +HAVE_TOUCHSCREEN=1
> >> > +HAVE_KEYBOARD=1
> >> > +
> >> > +DISPLAY_CAN_ROTATE=0
> >> > +DISPLAY_ORIENTATION=0
> >> > +DISPLAY_WIDTH_PIXELS=640
> >> > +DISPLAY_HEIGHT_PIXELS=480
> >> > +DISPLAY_BPP=16
> >> > +DISPLAY_DPI=150
> >> > +#DISPLAY_SUBPIXEL_ORDER=vrgb
> >> > --
> >> > 2.4.0
Best Regards,
Maxin



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

* Re: [PATCH v2] formfactor: add machconfig for qemumips64 and beaglebone
  2016-02-03 15:30     ` Martin Jansa
@ 2016-02-03 15:46       ` Maxin B. John
  0 siblings, 0 replies; 7+ messages in thread
From: Maxin B. John @ 2016-02-03 15:46 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-core

Hi Martin,

On Wed, Feb 03, 2016 at 04:30:24PM +0100, Martin Jansa wrote:
> On Wed, Feb 03, 2016 at 05:08:47PM +0200, Maxin B. John wrote:
> > Hi Martin,
> > 
> > On Wed, Feb 03, 2016 at 04:02:56PM +0100, Martin Jansa wrote:
> > > On Wed, Feb 03, 2016 at 12:30:08PM +0200, Maxin B. John wrote:
> > > > We need machconfig file to automatically choose between physical and virtual
> > > > keyboards.
> > > > 
> > > > [YOCTO #9027]
> > > > 
> > > > Signed-off-by: Maxin B. John <maxin.john@intel.com>
> > > > ---
> > > >  meta/recipes-bsp/formfactor/files/beaglebone/machconfig |  3 +++
> > > 
> > > I still don't understand why beaglebone specific file should be included
> > > in oe-core, all other BSP layers are providing own machconfig for their
> > > MACHINEs, why should beaglebone be first exception for oe-core?
> > >
> > Apart from what Ross mentioned before,
> 
> Is this for oe-core or meta-yocto-bsp? The subject doesn't say which and
> path looks like for oe-core.

qemumips64 belongs in oe-core and beaglebone change should be in meta-yocto.
Will split it and send those to corresponding lists.

> And if it's for meta-yocto-bsp, does it belong to yocto ML? There is no
> README in meta-yocto-bsp root.

Yes, beaglebone part belongs to the Yocto ML. 

> 
> > commit 76b1d595cd7104797495067cc8c59db631edb75d
> > Author: Denys Dmytriyenko <denys@ti.com>
> > Date:   Wed Mar 26 15:21:10 2014 -0400
> > 
> > added beaglebone to meta-yocto-bsp. Before that, ARM reference board was
> > beagleboard.
> > 
> > commit 7254dfb642cb0262c7e14ef2a4c8a7a42afada60
> > Author: Richard Purdie <richard.purdie@linuxfoundation.org>
> > Date:   Fri Mar 28 18:07:01 2014 +0000
> > 
> >     Drop beagleboard, replaced by beaglebone
> > 
> > > >  meta/recipes-bsp/formfactor/files/qemumips64/machconfig | 10 ++++++++++
> > > >  2 files changed, 13 insertions(+)
> > > >  create mode 100755 meta/recipes-bsp/formfactor/files/beaglebone/machconfig
> > > >  create mode 100755 meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> > > > 
> > > > diff --git a/meta/recipes-bsp/formfactor/files/beaglebone/machconfig b/meta/recipes-bsp/formfactor/files/beaglebone/machconfig
> > > > new file mode 100755
> > > > index 0000000..ffce012
> > > > --- /dev/null
> > > > +++ b/meta/recipes-bsp/formfactor/files/beaglebone/machconfig
> > > > @@ -0,0 +1,3 @@
> > > > +# Assume a USB mouse and keyboard are connected
> > > > +HAVE_TOUCHSCREEN=0
> > > > +HAVE_KEYBOARD=1
> > > > diff --git a/meta/recipes-bsp/formfactor/files/qemumips64/machconfig b/meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> > > > new file mode 100755
> > > > index 0000000..56777b6
> > > > --- /dev/null
> > > > +++ b/meta/recipes-bsp/formfactor/files/qemumips64/machconfig
> > > > @@ -0,0 +1,10 @@
> > > > +HAVE_TOUCHSCREEN=1
> > > > +HAVE_KEYBOARD=1
> > > > + 
> > > > +DISPLAY_CAN_ROTATE=0
> > > > +DISPLAY_ORIENTATION=0
> > > > +DISPLAY_WIDTH_PIXELS=640
> > > > +DISPLAY_HEIGHT_PIXELS=480
> > > > +DISPLAY_BPP=16
> > > > +DISPLAY_DPI=150
> > > > +#DISPLAY_SUBPIXEL_ORDER=vrgb
> > > > -- 
> > > > 2.4.0
> > > > 
> > > > -- 
> > > > _______________________________________________
> > > > Openembedded-core mailing list
> > > > Openembedded-core@lists.openembedded.org
> > > > http://lists.openembedded.org/mailman/listinfo/openembedded-core
> > > 
> > > -- 
> > > Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
> > 
> > Best Regards,
> > Maxin
> > 

Best Regards,
Maxin



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

end of thread, other threads:[~2016-02-03 15:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-03 10:30 [PATCH v2] formfactor: add machconfig for qemumips64 and beaglebone Maxin B. John
2016-02-03 15:02 ` Martin Jansa
2016-02-03 15:08   ` Maxin B. John
2016-02-03 15:17     ` Khem Raj
2016-02-03 15:41       ` Maxin B. John
2016-02-03 15:30     ` Martin Jansa
2016-02-03 15:46       ` Maxin B. John

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.