All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-handheld][PATCH 1/3] formfactor: initial commit of collie, poodle and tosa machconfig
@ 2011-10-16 23:26 Andrea Adami
  2011-10-16 23:26 ` [meta-handheld][PATCH 2/3] udev: add bbappend and disable device cache as default Andrea Adami
                   ` (3 more replies)
  0 siblings, 4 replies; 15+ messages in thread
From: Andrea Adami @ 2011-10-16 23:26 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 recipes-bsp/formfactor/files/collie/machconfig |   15 +++++++++++++++
 recipes-bsp/formfactor/files/poodle/machconfig |   15 +++++++++++++++
 recipes-bsp/formfactor/files/tosa/machconfig   |   15 +++++++++++++++
 3 files changed, 45 insertions(+), 0 deletions(-)
 create mode 100755 recipes-bsp/formfactor/files/collie/machconfig
 create mode 100755 recipes-bsp/formfactor/files/poodle/machconfig
 create mode 100755 recipes-bsp/formfactor/files/tosa/machconfig

diff --git a/recipes-bsp/formfactor/files/collie/machconfig b/recipes-bsp/formfactor/files/collie/machconfig
new file mode 100755
index 0000000..c5b1aca
--- /dev/null
+++ b/recipes-bsp/formfactor/files/collie/machconfig
@@ -0,0 +1,15 @@
+HAVE_TOUCHSCREEN=1
+HAVE_KEYBOARD=1
+HAVE_KEYBOARD_PORTRAIT=1
+HAVE_KEYBOARD_LANDSCAPE=0
+ 
+DISPLAY_CAN_ROTATE=0
+DISPLAY_ORIENTATION=270
+DISPLAY_WIDTH_PIXELS=240
+DISPLAY_WIDTH_MM=54
+DISPLAY_HEIGHT_PIXELS=320
+DISPLAY_HEIGHT_MM=71
+DISPLAY_BPP=16
+#DISPLAY_DPI=114
+DISPLAY_DPI=96
+DISPLAY_SUBPIXEL_ORDER=rgb
diff --git a/recipes-bsp/formfactor/files/poodle/machconfig b/recipes-bsp/formfactor/files/poodle/machconfig
new file mode 100755
index 0000000..c5b1aca
--- /dev/null
+++ b/recipes-bsp/formfactor/files/poodle/machconfig
@@ -0,0 +1,15 @@
+HAVE_TOUCHSCREEN=1
+HAVE_KEYBOARD=1
+HAVE_KEYBOARD_PORTRAIT=1
+HAVE_KEYBOARD_LANDSCAPE=0
+ 
+DISPLAY_CAN_ROTATE=0
+DISPLAY_ORIENTATION=270
+DISPLAY_WIDTH_PIXELS=240
+DISPLAY_WIDTH_MM=54
+DISPLAY_HEIGHT_PIXELS=320
+DISPLAY_HEIGHT_MM=71
+DISPLAY_BPP=16
+#DISPLAY_DPI=114
+DISPLAY_DPI=96
+DISPLAY_SUBPIXEL_ORDER=rgb
diff --git a/recipes-bsp/formfactor/files/tosa/machconfig b/recipes-bsp/formfactor/files/tosa/machconfig
new file mode 100755
index 0000000..a7cf68d
--- /dev/null
+++ b/recipes-bsp/formfactor/files/tosa/machconfig
@@ -0,0 +1,15 @@
+HAVE_TOUCHSCREEN=1
+HAVE_KEYBOARD=1
+HAVE_KEYBOARD_PORTRAIT=1
+HAVE_KEYBOARD_LANDSCAPE=0
+ 
+DISPLAY_CAN_ROTATE=0
+DISPLAY_ORIENTATION=0
+DISPLAY_WIDTH_PIXELS=480
+DISPLAY_WIDTH_MM=61
+DISPLAY_HEIGHT_PIXELS=640
+DISPLAY_HEIGHT_MM=80
+DISPLAY_BPP=16
+#DISPLAY_DPI=200
+DISPLAY_DPI=150
+DISPLAY_SUBPIXEL_ORDER=rgb
-- 
1.7.3.4




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

* [meta-handheld][PATCH 2/3] udev: add bbappend and disable device cache as default.
  2011-10-16 23:26 [meta-handheld][PATCH 1/3] formfactor: initial commit of collie, poodle and tosa machconfig Andrea Adami
@ 2011-10-16 23:26 ` Andrea Adami
  2011-11-02 21:00   ` Paul Eggleton
  2011-10-16 23:26 ` [meta-handheld][PATCH 3/3] xserver-xf86-config: add more xorg.conf for other Zaurus devices Andrea Adami
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 15+ messages in thread
From: Andrea Adami @ 2011-10-16 23:26 UTC (permalink / raw)
  To: openembedded-devel

* For some reasons when the cache is created root can still be ro
* and as solution you would be obliged to add 'rw' to your commandline.
* There are patches in openembedded-classic to correct this
* (and those are still pending for meta-oe).
* Until a solution is found disable the creation of the device cache on boot.

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 recipes-core/udev/udev/default      |    4 ++++
 recipes-core/udev/udev_173.bbappend |    1 +
 2 files changed, 5 insertions(+), 0 deletions(-)
 create mode 100644 recipes-core/udev/udev/default
 create mode 100644 recipes-core/udev/udev_173.bbappend

diff --git a/recipes-core/udev/udev/default b/recipes-core/udev/udev/default
new file mode 100644
index 0000000..ba2867e
--- /dev/null
+++ b/recipes-core/udev/udev/default
@@ -0,0 +1,4 @@
+# Default for /etc/init.d/udev
+
+# Uncomment this out to enable device cache
+#DEVCACHE="/etc/dev.tar"
diff --git a/recipes-core/udev/udev_173.bbappend b/recipes-core/udev/udev_173.bbappend
new file mode 100644
index 0000000..72d991c
--- /dev/null
+++ b/recipes-core/udev/udev_173.bbappend
@@ -0,0 +1 @@
+FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
-- 
1.7.3.4




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

* [meta-handheld][PATCH 3/3] xserver-xf86-config: add more xorg.conf for other Zaurus devices
  2011-10-16 23:26 [meta-handheld][PATCH 1/3] formfactor: initial commit of collie, poodle and tosa machconfig Andrea Adami
  2011-10-16 23:26 ` [meta-handheld][PATCH 2/3] udev: add bbappend and disable device cache as default Andrea Adami
@ 2011-10-16 23:26 ` Andrea Adami
  2011-10-20 22:25 ` [meta-handheld][PATCH V2 " Andrea Adami
  2011-11-02 21:02 ` [meta-handheld][PATCH 1/3] formfactor: initial commit of collie, poodle and tosa machconfig Paul Eggleton
  3 siblings, 0 replies; 15+ messages in thread
From: Andrea Adami @ 2011-10-16 23:26 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 .../xserver-xf86-config/akita/xorg.conf            |   49 ++++++++++++++++++++
 .../xserver-xf86-config/c7x0/xorg.conf             |   48 +++++++++++++++++++
 .../xserver-xf86-config/collie/xorg.conf           |   49 ++++++++++++++++++++
 .../xserver-xf86-config/poodle/xorg.conf           |   49 ++++++++++++++++++++
 .../xserver-xf86-config/tosa/xorg.conf             |   48 +++++++++++++++++++
 5 files changed, 243 insertions(+), 0 deletions(-)
 create mode 100644 recipes-graphics/xorg-xserver/xserver-xf86-config/akita/xorg.conf
 create mode 100644 recipes-graphics/xorg-xserver/xserver-xf86-config/c7x0/xorg.conf
 create mode 100644 recipes-graphics/xorg-xserver/xserver-xf86-config/collie/xorg.conf
 create mode 100644 recipes-graphics/xorg-xserver/xserver-xf86-config/poodle/xorg.conf
 create mode 100644 recipes-graphics/xorg-xserver/xserver-xf86-config/tosa/xorg.conf

diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config/akita/xorg.conf b/recipes-graphics/xorg-xserver/xserver-xf86-config/akita/xorg.conf
new file mode 100644
index 0000000..224df5c
--- /dev/null
+++ b/recipes-graphics/xorg-xserver/xserver-xf86-config/akita/xorg.conf
@@ -0,0 +1,49 @@
+Section "Device"
+        Identifier      "Generic Video Card"
+        Driver          "fbdev"
+        Option          "UseFBDev"              "true"
+        Option          "Rotate"                "CW"
+EndSection
+
+Section "Monitor"
+        Identifier      "Generic Monitor"
+        Option          "DPMS"
+        HorizSync       28-32
+        VertRefresh     43-60
+EndSection
+
+Section "Screen"
+        Identifier      "Default Screen"
+        Device          "Generic Video Card"
+        Monitor         "Generic Monitor"
+        DefaultDepth    16
+        SubSection "Display"
+                Depth           1
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           4
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           8
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           15
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           16
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           24
+                Modes           "640x480"
+        EndSubSection
+EndSection
+
+Section "ServerLayout"
+        Identifier      "Default Layout"
+        Screen          "Default Screen"
+EndSection
diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config/c7x0/xorg.conf b/recipes-graphics/xorg-xserver/xserver-xf86-config/c7x0/xorg.conf
new file mode 100644
index 0000000..ce544bb
--- /dev/null
+++ b/recipes-graphics/xorg-xserver/xserver-xf86-config/c7x0/xorg.conf
@@ -0,0 +1,48 @@
+Section "Device"
+        Identifier      "Generic Video Card"
+        Driver          "fbdev"
+        Option          "UseFBDev"              "true"
+ndSection
+
+Section "Monitor"
+        Identifier      "Generic Monitor"
+        Option          "DPMS"
+        HorizSync       28-32
+        VertRefresh     43-60
+EndSection
+
+Section "Screen"
+        Identifier      "Default Screen"
+        Device          "Generic Video Card"
+        Monitor         "Generic Monitor"
+        DefaultDepth    16
+        SubSection "Display"
+                Depth           1
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           4
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           8
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           15
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           16
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           24
+                Modes           "640x480"
+        EndSubSection
+EndSection
+
+Section "ServerLayout"
+        Identifier      "Default Layout"
+        Screen          "Default Screen"
+EndSection
diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config/collie/xorg.conf b/recipes-graphics/xorg-xserver/xserver-xf86-config/collie/xorg.conf
new file mode 100644
index 0000000..0c8d291
--- /dev/null
+++ b/recipes-graphics/xorg-xserver/xserver-xf86-config/collie/xorg.conf
@@ -0,0 +1,49 @@
+Section "Device"
+        Identifier      "Generic Video Card"
+        Driver          "fbdev"
+        Option          "UseFBDev"              "true"
+        Option          "Rotate"                "CW"
+EndSection
+
+Section "Monitor"
+        Identifier      "Generic Monitor"
+        Option          "DPMS"
+        HorizSync       28-32
+        VertRefresh     43-60
+EndSection
+
+Section "Screen"
+        Identifier      "Default Screen"
+        Device          "Generic Video Card"
+        Monitor         "Generic Monitor"
+        DefaultDepth    16
+        SubSection "Display"
+                Depth           1
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           4
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           8
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           15
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           16
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           24
+                Modes           "320x240"
+        EndSubSection
+EndSection
+
+Section "ServerLayout"
+        Identifier      "Default Layout"
+        Screen          "Default Screen"
+EndSection
diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config/poodle/xorg.conf b/recipes-graphics/xorg-xserver/xserver-xf86-config/poodle/xorg.conf
new file mode 100644
index 0000000..0c8d291
--- /dev/null
+++ b/recipes-graphics/xorg-xserver/xserver-xf86-config/poodle/xorg.conf
@@ -0,0 +1,49 @@
+Section "Device"
+        Identifier      "Generic Video Card"
+        Driver          "fbdev"
+        Option          "UseFBDev"              "true"
+        Option          "Rotate"                "CW"
+EndSection
+
+Section "Monitor"
+        Identifier      "Generic Monitor"
+        Option          "DPMS"
+        HorizSync       28-32
+        VertRefresh     43-60
+EndSection
+
+Section "Screen"
+        Identifier      "Default Screen"
+        Device          "Generic Video Card"
+        Monitor         "Generic Monitor"
+        DefaultDepth    16
+        SubSection "Display"
+                Depth           1
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           4
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           8
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           15
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           16
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           24
+                Modes           "320x240"
+        EndSubSection
+EndSection
+
+Section "ServerLayout"
+        Identifier      "Default Layout"
+        Screen          "Default Screen"
+EndSection
diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config/tosa/xorg.conf b/recipes-graphics/xorg-xserver/xserver-xf86-config/tosa/xorg.conf
new file mode 100644
index 0000000..73f26df
--- /dev/null
+++ b/recipes-graphics/xorg-xserver/xserver-xf86-config/tosa/xorg.conf
@@ -0,0 +1,48 @@
+Section "Device"
+        Identifier      "Generic Video Card"
+        Driver          "fbdev"
+        Option          "UseFBDev"              "true"
+ndSection
+
+Section "Monitor"
+        Identifier      "Generic Monitor"
+        Option          "DPMS"
+        HorizSync       28-32
+        VertRefresh     43-60
+EndSection
+
+Section "Screen"
+        Identifier      "Default Screen"
+        Device          "Generic Video Card"
+        Monitor         "Generic Monitor"
+        DefaultDepth    16
+        SubSection "Display"
+                Depth           1
+                Modes           "480x640"
+        EndSubSection
+        SubSection "Display"
+                Depth           4
+                Modes           "480x640"
+        EndSubSection
+        SubSection "Display"
+                Depth           8
+                Modes           "480x640"
+        EndSubSection
+        SubSection "Display"
+                Depth           15
+                Modes           "480x640"
+        EndSubSection
+        SubSection "Display"
+                Depth           16
+                Modes           "480x640"
+        EndSubSection
+        SubSection "Display"
+                Depth           24
+                Modes           "480x640"
+        EndSubSection
+EndSection
+
+Section "ServerLayout"
+        Identifier      "Default Layout"
+        Screen          "Default Screen"
+EndSection
-- 
1.7.3.4




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

* [meta-handheld][PATCH V2 3/3] xserver-xf86-config: add more xorg.conf for other Zaurus devices
  2011-10-16 23:26 [meta-handheld][PATCH 1/3] formfactor: initial commit of collie, poodle and tosa machconfig Andrea Adami
  2011-10-16 23:26 ` [meta-handheld][PATCH 2/3] udev: add bbappend and disable device cache as default Andrea Adami
  2011-10-16 23:26 ` [meta-handheld][PATCH 3/3] xserver-xf86-config: add more xorg.conf for other Zaurus devices Andrea Adami
@ 2011-10-20 22:25 ` Andrea Adami
  2011-11-02 21:02 ` [meta-handheld][PATCH 1/3] formfactor: initial commit of collie, poodle and tosa machconfig Paul Eggleton
  3 siblings, 0 replies; 15+ messages in thread
From: Andrea Adami @ 2011-10-20 22:25 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 .../xserver-xf86-config/akita/xorg.conf            |   49 ++++++++++++++++++++
 .../xserver-xf86-config/c7x0/xorg.conf             |   48 +++++++++++++++++++
 .../xserver-xf86-config/collie/xorg.conf           |   49 ++++++++++++++++++++
 .../xserver-xf86-config/poodle/xorg.conf           |   49 ++++++++++++++++++++
 .../xserver-xf86-config/tosa/xorg.conf             |   48 +++++++++++++++++++
 5 files changed, 243 insertions(+), 0 deletions(-)
 create mode 100644 recipes-graphics/xorg-xserver/xserver-xf86-config/akita/xorg.conf
 create mode 100644 recipes-graphics/xorg-xserver/xserver-xf86-config/c7x0/xorg.conf
 create mode 100644 recipes-graphics/xorg-xserver/xserver-xf86-config/collie/xorg.conf
 create mode 100644 recipes-graphics/xorg-xserver/xserver-xf86-config/poodle/xorg.conf
 create mode 100644 recipes-graphics/xorg-xserver/xserver-xf86-config/tosa/xorg.conf

diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config/akita/xorg.conf b/recipes-graphics/xorg-xserver/xserver-xf86-config/akita/xorg.conf
new file mode 100644
index 0000000..224df5c
--- /dev/null
+++ b/recipes-graphics/xorg-xserver/xserver-xf86-config/akita/xorg.conf
@@ -0,0 +1,49 @@
+Section "Device"
+        Identifier      "Generic Video Card"
+        Driver          "fbdev"
+        Option          "UseFBDev"              "true"
+        Option          "Rotate"                "CW"
+EndSection
+
+Section "Monitor"
+        Identifier      "Generic Monitor"
+        Option          "DPMS"
+        HorizSync       28-32
+        VertRefresh     43-60
+EndSection
+
+Section "Screen"
+        Identifier      "Default Screen"
+        Device          "Generic Video Card"
+        Monitor         "Generic Monitor"
+        DefaultDepth    16
+        SubSection "Display"
+                Depth           1
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           4
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           8
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           15
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           16
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           24
+                Modes           "640x480"
+        EndSubSection
+EndSection
+
+Section "ServerLayout"
+        Identifier      "Default Layout"
+        Screen          "Default Screen"
+EndSection
diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config/c7x0/xorg.conf b/recipes-graphics/xorg-xserver/xserver-xf86-config/c7x0/xorg.conf
new file mode 100644
index 0000000..ce544bb
--- /dev/null
+++ b/recipes-graphics/xorg-xserver/xserver-xf86-config/c7x0/xorg.conf
@@ -0,0 +1,48 @@
+Section "Device"
+        Identifier      "Generic Video Card"
+        Driver          "fbdev"
+        Option          "UseFBDev"              "true"
+EndSection
+
+Section "Monitor"
+        Identifier      "Generic Monitor"
+        Option          "DPMS"
+        HorizSync       28-32
+        VertRefresh     43-60
+EndSection
+
+Section "Screen"
+        Identifier      "Default Screen"
+        Device          "Generic Video Card"
+        Monitor         "Generic Monitor"
+        DefaultDepth    16
+        SubSection "Display"
+                Depth           1
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           4
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           8
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           15
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           16
+                Modes           "640x480"
+        EndSubSection
+        SubSection "Display"
+                Depth           24
+                Modes           "640x480"
+        EndSubSection
+EndSection
+
+Section "ServerLayout"
+        Identifier      "Default Layout"
+        Screen          "Default Screen"
+EndSection
diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config/collie/xorg.conf b/recipes-graphics/xorg-xserver/xserver-xf86-config/collie/xorg.conf
new file mode 100644
index 0000000..0c8d291
--- /dev/null
+++ b/recipes-graphics/xorg-xserver/xserver-xf86-config/collie/xorg.conf
@@ -0,0 +1,49 @@
+Section "Device"
+        Identifier      "Generic Video Card"
+        Driver          "fbdev"
+        Option          "UseFBDev"              "true"
+        Option          "Rotate"                "CW"
+EndSection
+
+Section "Monitor"
+        Identifier      "Generic Monitor"
+        Option          "DPMS"
+        HorizSync       28-32
+        VertRefresh     43-60
+EndSection
+
+Section "Screen"
+        Identifier      "Default Screen"
+        Device          "Generic Video Card"
+        Monitor         "Generic Monitor"
+        DefaultDepth    16
+        SubSection "Display"
+                Depth           1
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           4
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           8
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           15
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           16
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           24
+                Modes           "320x240"
+        EndSubSection
+EndSection
+
+Section "ServerLayout"
+        Identifier      "Default Layout"
+        Screen          "Default Screen"
+EndSection
diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config/poodle/xorg.conf b/recipes-graphics/xorg-xserver/xserver-xf86-config/poodle/xorg.conf
new file mode 100644
index 0000000..0c8d291
--- /dev/null
+++ b/recipes-graphics/xorg-xserver/xserver-xf86-config/poodle/xorg.conf
@@ -0,0 +1,49 @@
+Section "Device"
+        Identifier      "Generic Video Card"
+        Driver          "fbdev"
+        Option          "UseFBDev"              "true"
+        Option          "Rotate"                "CW"
+EndSection
+
+Section "Monitor"
+        Identifier      "Generic Monitor"
+        Option          "DPMS"
+        HorizSync       28-32
+        VertRefresh     43-60
+EndSection
+
+Section "Screen"
+        Identifier      "Default Screen"
+        Device          "Generic Video Card"
+        Monitor         "Generic Monitor"
+        DefaultDepth    16
+        SubSection "Display"
+                Depth           1
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           4
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           8
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           15
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           16
+                Modes           "320x240"
+        EndSubSection
+        SubSection "Display"
+                Depth           24
+                Modes           "320x240"
+        EndSubSection
+EndSection
+
+Section "ServerLayout"
+        Identifier      "Default Layout"
+        Screen          "Default Screen"
+EndSection
diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config/tosa/xorg.conf b/recipes-graphics/xorg-xserver/xserver-xf86-config/tosa/xorg.conf
new file mode 100644
index 0000000..73f26df
--- /dev/null
+++ b/recipes-graphics/xorg-xserver/xserver-xf86-config/tosa/xorg.conf
@@ -0,0 +1,48 @@
+Section "Device"
+        Identifier      "Generic Video Card"
+        Driver          "fbdev"
+        Option          "UseFBDev"              "true"
+EndSection
+
+Section "Monitor"
+        Identifier      "Generic Monitor"
+        Option          "DPMS"
+        HorizSync       28-32
+        VertRefresh     43-60
+EndSection
+
+Section "Screen"
+        Identifier      "Default Screen"
+        Device          "Generic Video Card"
+        Monitor         "Generic Monitor"
+        DefaultDepth    16
+        SubSection "Display"
+                Depth           1
+                Modes           "480x640"
+        EndSubSection
+        SubSection "Display"
+                Depth           4
+                Modes           "480x640"
+        EndSubSection
+        SubSection "Display"
+                Depth           8
+                Modes           "480x640"
+        EndSubSection
+        SubSection "Display"
+                Depth           15
+                Modes           "480x640"
+        EndSubSection
+        SubSection "Display"
+                Depth           16
+                Modes           "480x640"
+        EndSubSection
+        SubSection "Display"
+                Depth           24
+                Modes           "480x640"
+        EndSubSection
+EndSection
+
+Section "ServerLayout"
+        Identifier      "Default Layout"
+        Screen          "Default Screen"
+EndSection
-- 
1.7.3.4




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

* Re: [meta-handheld][PATCH 2/3] udev: add bbappend and disable device cache as default.
  2011-10-16 23:26 ` [meta-handheld][PATCH 2/3] udev: add bbappend and disable device cache as default Andrea Adami
@ 2011-11-02 21:00   ` Paul Eggleton
  2011-11-03  8:36     ` Koen Kooi
  0 siblings, 1 reply; 15+ messages in thread
From: Paul Eggleton @ 2011-11-02 21:00 UTC (permalink / raw)
  To: Andrea Adami; +Cc: openembedded-devel

On Monday 17 October 2011 01:26:50 Andrea Adami wrote:
> * For some reasons when the cache is created root can still be ro
> * and as solution you would be obliged to add 'rw' to your commandline.
> * There are patches in openembedded-classic to correct this
> * (and those are still pending for meta-oe).
> * Until a solution is found disable the creation of the device cache on
> boot.
> 
> Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
> ---
>  recipes-core/udev/udev/default      |    4 ++++
>  recipes-core/udev/udev_173.bbappend |    1 +
>  2 files changed, 5 insertions(+), 0 deletions(-)
>  create mode 100644 recipes-core/udev/udev/default
>  create mode 100644 recipes-core/udev/udev_173.bbappend
> 
> diff --git a/recipes-core/udev/udev/default b/recipes-core/udev/udev/default
> new file mode 100644
> index 0000000..ba2867e
> --- /dev/null
> +++ b/recipes-core/udev/udev/default
> @@ -0,0 +1,4 @@
> +# Default for /etc/init.d/udev
> +
> +# Uncomment this out to enable device cache
> +#DEVCACHE="/etc/dev.tar"
> diff --git a/recipes-core/udev/udev_173.bbappend
> b/recipes-core/udev/udev_173.bbappend new file mode 100644
> index 0000000..72d991c
> --- /dev/null
> +++ b/recipes-core/udev/udev_173.bbappend
> @@ -0,0 +1 @@
> +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"

I think this is going to cause problems for distros such as Angstrom that 
enable this layer without always using it. Can we just disable the dev cache 
for the machines in meta-handheld?

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre



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

* Re: [meta-handheld][PATCH 1/3] formfactor: initial commit of collie, poodle and tosa machconfig
  2011-10-16 23:26 [meta-handheld][PATCH 1/3] formfactor: initial commit of collie, poodle and tosa machconfig Andrea Adami
                   ` (2 preceding siblings ...)
  2011-10-20 22:25 ` [meta-handheld][PATCH V2 " Andrea Adami
@ 2011-11-02 21:02 ` Paul Eggleton
  2011-11-03  8:51   ` Koen Kooi
  3 siblings, 1 reply; 15+ messages in thread
From: Paul Eggleton @ 2011-11-02 21:02 UTC (permalink / raw)
  To: openembedded-devel

On Monday 17 October 2011 01:26:49 Andrea Adami wrote:
> Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
> ...

I've merged this series apart from 2/3 which we still need to discuss.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre



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

* Re: [meta-handheld][PATCH 2/3] udev: add bbappend and disable device cache as default.
  2011-11-02 21:00   ` Paul Eggleton
@ 2011-11-03  8:36     ` Koen Kooi
  2011-11-03  9:09       ` Andrea Adami
  0 siblings, 1 reply; 15+ messages in thread
From: Koen Kooi @ 2011-11-03  8:36 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Op 02-11-11 22:00, Paul Eggleton schreef:
> On Monday 17 October 2011 01:26:50 Andrea Adami wrote:
>> * For some reasons when the cache is created root can still be ro *
>> and as solution you would be obliged to add 'rw' to your commandline.
>> * There are patches in openembedded-classic to correct this * (and
>> those are still pending for meta-oe). * Until a solution is found
>> disable the creation of the device cache on boot.
>> 
>> Signed-off-by: Andrea Adami <andrea.adami@gmail.com> --- 
>> recipes-core/udev/udev/default      |    4 ++++ 
>> recipes-core/udev/udev_173.bbappend |    1 + 2 files changed, 5 
>> insertions(+), 0 deletions(-) create mode 100644 
>> recipes-core/udev/udev/default create mode 100644 
>> recipes-core/udev/udev_173.bbappend
>> 
>> diff --git a/recipes-core/udev/udev/default 
>> b/recipes-core/udev/udev/default new file mode 100644 index 
>> 0000000..ba2867e --- /dev/null +++ b/recipes-core/udev/udev/default @@ 
>> -0,0 +1,4 @@ +# Default for /etc/init.d/udev + +# Uncomment this out
>> to enable device cache +#DEVCACHE="/etc/dev.tar" diff --git 
>> a/recipes-core/udev/udev_173.bbappend 
>> b/recipes-core/udev/udev_173.bbappend new file mode 100644 index 
>> 0000000..72d991c --- /dev/null +++ 
>> b/recipes-core/udev/udev_173.bbappend @@ -0,0 +1 @@ 
>> +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
> 
> I think this is going to cause problems for distros such as Angstrom
> that enable this layer without always using it. Can we just disable the
> dev cache for the machines in meta-handheld?

Or get with the program and use udev 174 with systemd, no need for a device
cache in that case!

regards,

Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
Comment: GPGTools - http://gpgtools.org

iD8DBQFOslKBMkyGM64RGpERApRuAKCrFvkx2Ndu72tpP0DZSRXARyj1kgCgjPKR
uITbHbzYgtHKi/k2aEpRS+4=
=D6Yf
-----END PGP SIGNATURE-----




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

* Re: [meta-handheld][PATCH 1/3] formfactor: initial commit of collie, poodle and tosa machconfig
  2011-11-02 21:02 ` [meta-handheld][PATCH 1/3] formfactor: initial commit of collie, poodle and tosa machconfig Paul Eggleton
@ 2011-11-03  8:51   ` Koen Kooi
  2011-11-03 10:10     ` Paul Eggleton
  0 siblings, 1 reply; 15+ messages in thread
From: Koen Kooi @ 2011-11-03  8:51 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Op 02-11-11 22:02, Paul Eggleton schreef:
> On Monday 17 October 2011 01:26:49 Andrea Adami wrote:
>> Signed-off-by: Andrea Adami <andrea.adami@gmail.com> ...
> 
> I've merged this series apart from 2/3 which we still need to discuss.

Can you please update patchwork as well?

regards,

Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
Comment: GPGTools - http://gpgtools.org

iD8DBQFOslYVMkyGM64RGpERAq6HAJ9CyQw6938h72qMUs/pS2tCav4/6gCgjkTP
PBZSA6q8+J7Tf/ZeeF19INI=
=0BZJ
-----END PGP SIGNATURE-----




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

* Re: [meta-handheld][PATCH 2/3] udev: add bbappend and disable device cache as default.
  2011-11-03  8:36     ` Koen Kooi
@ 2011-11-03  9:09       ` Andrea Adami
  2011-11-03  9:22         ` Andrea Adami
  2011-11-03  9:25         ` Koen Kooi
  0 siblings, 2 replies; 15+ messages in thread
From: Andrea Adami @ 2011-11-03  9:09 UTC (permalink / raw)
  To: openembedded-devel

On Thu, Nov 3, 2011 at 9:36 AM, Koen Kooi <koen@dominion.thruhere.net>wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Op 02-11-11 22:00, Paul Eggleton schreef:
> > On Monday 17 October 2011 01:26:50 Andrea Adami wrote:
> >> * For some reasons when the cache is created root can still be ro *
> >> and as solution you would be obliged to add 'rw' to your commandline.
> >> * There are patches in openembedded-classic to correct this * (and
> >> those are still pending for meta-oe). * Until a solution is found
> >> disable the creation of the device cache on boot.
> >>
> >> Signed-off-by: Andrea Adami <andrea.adami@gmail.com> ---
> >> recipes-core/udev/udev/default      |    4 ++++
> >> recipes-core/udev/udev_173.bbappend |    1 + 2 files changed, 5
> >> insertions(+), 0 deletions(-) create mode 100644
> >> recipes-core/udev/udev/default create mode 100644
> >> recipes-core/udev/udev_173.bbappend
> >>
> >> diff --git a/recipes-core/udev/udev/default
> >> b/recipes-core/udev/udev/default new file mode 100644 index
> >> 0000000..ba2867e --- /dev/null +++ b/recipes-core/udev/udev/default @@
> >> -0,0 +1,4 @@ +# Default for /etc/init.d/udev + +# Uncomment this out
> >> to enable device cache +#DEVCACHE="/etc/dev.tar" diff --git
> >> a/recipes-core/udev/udev_173.bbappend
> >> b/recipes-core/udev/udev_173.bbappend new file mode 100644 index
> >> 0000000..72d991c --- /dev/null +++
> >> b/recipes-core/udev/udev_173.bbappend @@ -0,0 +1 @@
> >> +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
> >
> > I think this is going to cause problems for distros such as Angstrom
> > that enable this layer without always using it. Can we just disable the
> > dev cache for the machines in meta-handheld?
>
> Or get with the program and use udev 174 with systemd, no need for a device
> cache in that case!
>
> regards,
>
> Koen
>

Sure, this is the future...but for now oe-core doesn't implement systemd as
default.

Until then, I think we should have sane defaults allowing to build with
just oe-core + meta-oe + meta-handheld even without distro layers.

Regards

Andrea


> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.5 (Darwin)
> Comment: GPGTools - http://gpgtools.org
>
> iD8DBQFOslKBMkyGM64RGpERApRuAKCrFvkx2Ndu72tpP0DZSRXARyj1kgCgjPKR
> uITbHbzYgtHKi/k2aEpRS+4=
> =D6Yf
> -----END PGP SIGNATURE-----
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>


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

* Re: [meta-handheld][PATCH 2/3] udev: add bbappend and disable device cache as default.
  2011-11-03  9:09       ` Andrea Adami
@ 2011-11-03  9:22         ` Andrea Adami
  2011-11-03  9:24           ` Koen Kooi
  2011-11-03  9:25         ` Koen Kooi
  1 sibling, 1 reply; 15+ messages in thread
From: Andrea Adami @ 2011-11-03  9:22 UTC (permalink / raw)
  To: openembedded-devel

On Thu, Nov 3, 2011 at 10:09 AM, Andrea Adami <andrea.adami@gmail.com>wrote:

> On Thu, Nov 3, 2011 at 9:36 AM, Koen Kooi <koen@dominion.thruhere.net>wrote:
>
>> -----BEGIN PGP SIGNED MESSAGE-----
>> Hash: SHA1
>>
>> Op 02-11-11 22:00, Paul Eggleton schreef:
>> > On Monday 17 October 2011 01:26:50 Andrea Adami wrote:
>> >> * For some reasons when the cache is created root can still be ro *
>> >> and as solution you would be obliged to add 'rw' to your commandline.
>> >> * There are patches in openembedded-classic to correct this * (and
>> >> those are still pending for meta-oe). * Until a solution is found
>> >> disable the creation of the device cache on boot.
>> >>
>> >> Signed-off-by: Andrea Adami <andrea.adami@gmail.com> ---
>> >> recipes-core/udev/udev/default      |    4 ++++
>> >> recipes-core/udev/udev_173.bbappend |    1 + 2 files changed, 5
>> >> insertions(+), 0 deletions(-) create mode 100644
>> >> recipes-core/udev/udev/default create mode 100644
>> >> recipes-core/udev/udev_173.bbappend
>> >>
>> >> diff --git a/recipes-core/udev/udev/default
>> >> b/recipes-core/udev/udev/default new file mode 100644 index
>> >> 0000000..ba2867e --- /dev/null +++ b/recipes-core/udev/udev/default @@
>> >> -0,0 +1,4 @@ +# Default for /etc/init.d/udev + +# Uncomment this out
>> >> to enable device cache +#DEVCACHE="/etc/dev.tar" diff --git
>> >> a/recipes-core/udev/udev_173.bbappend
>> >> b/recipes-core/udev/udev_173.bbappend new file mode 100644 index
>> >> 0000000..72d991c --- /dev/null +++
>> >> b/recipes-core/udev/udev_173.bbappend @@ -0,0 +1 @@
>> >> +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
>> >
>> > I think this is going to cause problems for distros such as Angstrom
>> > that enable this layer without always using it. Can we just disable the
>> > dev cache for the machines in meta-handheld?
>>
>> Or get with the program and use udev 174 with systemd, no need for a
>> device
>> cache in that case!
>>
>> regards,
>>
>> Koen
>>
>
> Sure, this is the future...but for now oe-core doesn't implement systemd
> as default.
>
> Until then, I think we should have sane defaults allowing to build with
> just oe-core + meta-oe + meta-handheld even without distro layers.
>
> Regards
>
> Andrea
>


Oh, I forgot to say that's unfortunate oe-core is still on udev_164.
Probably they have been scared by the note "# udev 169 and up require
kernel 2.6.36 for ARM:"

Is this still a problem? Maybe we should insist on the oe-core list and try
to unify the recipes.

Regards

Andrea


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

* Re: [meta-handheld][PATCH 2/3] udev: add bbappend and disable device cache as default.
  2011-11-03  9:22         ` Andrea Adami
@ 2011-11-03  9:24           ` Koen Kooi
  0 siblings, 0 replies; 15+ messages in thread
From: Koen Kooi @ 2011-11-03  9:24 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Op 03-11-11 10:22, Andrea Adami schreef:
> On Thu, Nov 3, 2011 at 10:09 AM, Andrea Adami
> <andrea.adami@gmail.com>wrote:
> 
>> On Thu, Nov 3, 2011 at 9:36 AM, Koen Kooi
>> <koen@dominion.thruhere.net>wrote:
>> 
>>> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
>>> 
>>> Op 02-11-11 22:00, Paul Eggleton schreef:
>>>> On Monday 17 October 2011 01:26:50 Andrea Adami wrote:
>>>>> * For some reasons when the cache is created root can still be ro
>>>>> * and as solution you would be obliged to add 'rw' to your
>>>>> commandline. * There are patches in openembedded-classic to
>>>>> correct this * (and those are still pending for meta-oe). * Until
>>>>> a solution is found disable the creation of the device cache on
>>>>> boot.
>>>>> 
>>>>> Signed-off-by: Andrea Adami <andrea.adami@gmail.com> --- 
>>>>> recipes-core/udev/udev/default      |    4 ++++ 
>>>>> recipes-core/udev/udev_173.bbappend |    1 + 2 files changed, 5 
>>>>> insertions(+), 0 deletions(-) create mode 100644 
>>>>> recipes-core/udev/udev/default create mode 100644 
>>>>> recipes-core/udev/udev_173.bbappend
>>>>> 
>>>>> diff --git a/recipes-core/udev/udev/default 
>>>>> b/recipes-core/udev/udev/default new file mode 100644 index 
>>>>> 0000000..ba2867e --- /dev/null +++
>>>>> b/recipes-core/udev/udev/default @@ -0,0 +1,4 @@ +# Default for
>>>>> /etc/init.d/udev + +# Uncomment this out to enable device cache
>>>>> +#DEVCACHE="/etc/dev.tar" diff --git 
>>>>> a/recipes-core/udev/udev_173.bbappend 
>>>>> b/recipes-core/udev/udev_173.bbappend new file mode 100644 index 
>>>>> 0000000..72d991c --- /dev/null +++ 
>>>>> b/recipes-core/udev/udev_173.bbappend @@ -0,0 +1 @@ 
>>>>> +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
>>>> 
>>>> I think this is going to cause problems for distros such as
>>>> Angstrom that enable this layer without always using it. Can we
>>>> just disable the dev cache for the machines in meta-handheld?
>>> 
>>> Or get with the program and use udev 174 with systemd, no need for a 
>>> device cache in that case!
>>> 
>>> regards,
>>> 
>>> Koen
>>> 
>> 
>> Sure, this is the future...but for now oe-core doesn't implement
>> systemd as default.
>> 
>> Until then, I think we should have sane defaults allowing to build
>> with just oe-core + meta-oe + meta-handheld even without distro
>> layers.
>> 
>> Regards
>> 
>> Andrea
>> 
> 
> 
> Oh, I forgot to say that's unfortunate oe-core is still on udev_164. 
> Probably they have been scared by the note "# udev 169 and up require 
> kernel 2.6.36 for ARM:"
> 
> Is this still a problem? Maybe we should insist on the oe-core list and
> try to unify the recipes.

It's not a problem if you backport the patches udev needs :)

E.g.
http://git.angstrom-distribution.org/cgi-bin/cgit.cgi/meta-texasinstruments/tree/recipes-kernel/linux/linux-omap4_2.6.35.7.bb



-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
Comment: GPGTools - http://gpgtools.org

iD8DBQFOsl3BMkyGM64RGpERAmHPAJkBIlv7noLAr+tqSLyRRWNCRDu8JQCgsgun
62cQ+8B93YcHPBGjcd2J0rk=
=EVzO
-----END PGP SIGNATURE-----




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

* Re: [meta-handheld][PATCH 2/3] udev: add bbappend and disable device cache as default.
  2011-11-03  9:09       ` Andrea Adami
  2011-11-03  9:22         ` Andrea Adami
@ 2011-11-03  9:25         ` Koen Kooi
  2011-11-03 10:08           ` Andrea Adami
  1 sibling, 1 reply; 15+ messages in thread
From: Koen Kooi @ 2011-11-03  9:25 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Op 03-11-11 10:09, Andrea Adami schreef:
> On Thu, Nov 3, 2011 at 9:36 AM, Koen Kooi
> <koen@dominion.thruhere.net>wrote:
> 
> Op 02-11-11 22:00, Paul Eggleton schreef:
>>>> On Monday 17 October 2011 01:26:50 Andrea Adami wrote:
>>>>> * For some reasons when the cache is created root can still be ro
>>>>> * and as solution you would be obliged to add 'rw' to your
>>>>> commandline. * There are patches in openembedded-classic to
>>>>> correct this * (and those are still pending for meta-oe). * Until
>>>>> a solution is found disable the creation of the device cache on
>>>>> boot.
>>>>> 
>>>>> Signed-off-by: Andrea Adami <andrea.adami@gmail.com> --- 
>>>>> recipes-core/udev/udev/default      |    4 ++++ 
>>>>> recipes-core/udev/udev_173.bbappend |    1 + 2 files changed, 5 
>>>>> insertions(+), 0 deletions(-) create mode 100644 
>>>>> recipes-core/udev/udev/default create mode 100644 
>>>>> recipes-core/udev/udev_173.bbappend
>>>>> 
>>>>> diff --git a/recipes-core/udev/udev/default 
>>>>> b/recipes-core/udev/udev/default new file mode 100644 index 
>>>>> 0000000..ba2867e --- /dev/null +++
>>>>> b/recipes-core/udev/udev/default @@ -0,0 +1,4 @@ +# Default for
>>>>> /etc/init.d/udev + +# Uncomment this out to enable device cache
>>>>> +#DEVCACHE="/etc/dev.tar" diff --git 
>>>>> a/recipes-core/udev/udev_173.bbappend 
>>>>> b/recipes-core/udev/udev_173.bbappend new file mode 100644 index 
>>>>> 0000000..72d991c --- /dev/null +++ 
>>>>> b/recipes-core/udev/udev_173.bbappend @@ -0,0 +1 @@ 
>>>>> +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
>>>> 
>>>> I think this is going to cause problems for distros such as
>>>> Angstrom that enable this layer without always using it. Can we
>>>> just disable the dev cache for the machines in meta-handheld?
> 
> Or get with the program and use udev 174 with systemd, no need for a
> device cache in that case!
> 
> regards,
> 
> Koen
> 
> 
>> Sure, this is the future...but for now oe-core doesn't implement
>> systemd as default.

Nor does it have udev 173. You can't argue that oe-core doesn't have
something that's in meta-oe when you're already relying on meta-oe.


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
Comment: GPGTools - http://gpgtools.org

iD8DBQFOsl4HMkyGM64RGpERAtCEAJ9ogPDgyj0IsYMcKjLEML/PXvMK+ACgu3xN
RT3IaA5N1TqtzQQE81uoRHU=
=5YFd
-----END PGP SIGNATURE-----




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

* Re: [meta-handheld][PATCH 2/3] udev: add bbappend and disable device cache as default.
  2011-11-03  9:25         ` Koen Kooi
@ 2011-11-03 10:08           ` Andrea Adami
  0 siblings, 0 replies; 15+ messages in thread
From: Andrea Adami @ 2011-11-03 10:08 UTC (permalink / raw)
  To: openembedded-devel

On Thu, Nov 3, 2011 at 10:25 AM, Koen Kooi <koen@dominion.thruhere.net>wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Op 03-11-11 10:09, Andrea Adami schreef:
> > On Thu, Nov 3, 2011 at 9:36 AM, Koen Kooi
> > <koen@dominion.thruhere.net>wrote:
> >
> > Op 02-11-11 22:00, Paul Eggleton schreef:
> >>>> On Monday 17 October 2011 01:26:50 Andrea Adami wrote:
> >>>>> * For some reasons when the cache is created root can still be ro
> >>>>> * and as solution you would be obliged to add 'rw' to your
> >>>>> commandline. * There are patches in openembedded-classic to
> >>>>> correct this * (and those are still pending for meta-oe). * Until
> >>>>> a solution is found disable the creation of the device cache on
> >>>>> boot.
> >>>>>
> >>>>> Signed-off-by: Andrea Adami <andrea.adami@gmail.com> ---
> >>>>> recipes-core/udev/udev/default      |    4 ++++
> >>>>> recipes-core/udev/udev_173.bbappend |    1 + 2 files changed, 5
> >>>>> insertions(+), 0 deletions(-) create mode 100644
> >>>>> recipes-core/udev/udev/default create mode 100644
> >>>>> recipes-core/udev/udev_173.bbappend
> >>>>>
> >>>>> diff --git a/recipes-core/udev/udev/default
> >>>>> b/recipes-core/udev/udev/default new file mode 100644 index
> >>>>> 0000000..ba2867e --- /dev/null +++
> >>>>> b/recipes-core/udev/udev/default @@ -0,0 +1,4 @@ +# Default for
> >>>>> /etc/init.d/udev + +# Uncomment this out to enable device cache
> >>>>> +#DEVCACHE="/etc/dev.tar" diff --git
> >>>>> a/recipes-core/udev/udev_173.bbappend
> >>>>> b/recipes-core/udev/udev_173.bbappend new file mode 100644 index
> >>>>> 0000000..72d991c --- /dev/null +++
> >>>>> b/recipes-core/udev/udev_173.bbappend @@ -0,0 +1 @@
> >>>>> +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
> >>>>
> >>>> I think this is going to cause problems for distros such as
> >>>> Angstrom that enable this layer without always using it. Can we
> >>>> just disable the dev cache for the machines in meta-handheld?
> >
> > Or get with the program and use udev 174 with systemd, no need for a
> > device cache in that case!
> >
> > regards,
> >
> > Koen
> >
> >
> >> Sure, this is the future...but for now oe-core doesn't implement
> >> systemd as default.
>
> Nor does it have udev 173. You can't argue that oe-core doesn't have
> something that's in meta-oe when you're already relying on meta-oe.
>

Heh, I'm 'unfortunately' obliged to include meta-oe even if I want to build
a core-image-minimal for the machines in meta-handheld.

The problem is there are two sets of udev recipes! There should be one,
only one layer containing core packages.

I understand this is problematic and that Angstrom is already testing
systemd, still we should focus and find a concrete proposal for merging
with oe-core asap!

Cheers
Andrea


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

* Re: [meta-handheld][PATCH 1/3] formfactor: initial commit of collie, poodle and tosa machconfig
  2011-11-03  8:51   ` Koen Kooi
@ 2011-11-03 10:10     ` Paul Eggleton
  2011-11-23 20:35       ` Khem Raj
  0 siblings, 1 reply; 15+ messages in thread
From: Paul Eggleton @ 2011-11-03 10:10 UTC (permalink / raw)
  To: openembedded-devel

On Thursday 03 November 2011 09:51:33 Koen Kooi wrote:
> Op 02-11-11 22:02, Paul Eggleton schreef:
> > On Monday 17 October 2011 01:26:49 Andrea Adami wrote:
> >> Signed-off-by: Andrea Adami <andrea.adami@gmail.com> ...
> > 
> > I've merged this series apart from 2/3 which we still need to discuss.
> 
> Can you please update patchwork as well?

Apparently, despite patchwork saying I'm a "contributor" I have no ability to 
do so.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre



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

* Re: [meta-handheld][PATCH 1/3] formfactor: initial commit of collie, poodle and tosa machconfig
  2011-11-03 10:10     ` Paul Eggleton
@ 2011-11-23 20:35       ` Khem Raj
  0 siblings, 0 replies; 15+ messages in thread
From: Khem Raj @ 2011-11-23 20:35 UTC (permalink / raw)
  To: openembedded-devel

On Thu, Nov 3, 2011 at 3:10 AM, Paul Eggleton
<paul.eggleton@linux.intel.com> wrote:
> On Thursday 03 November 2011 09:51:33 Koen Kooi wrote:
>> Op 02-11-11 22:02, Paul Eggleton schreef:
>> > On Monday 17 October 2011 01:26:49 Andrea Adami wrote:
>> >> Signed-off-by: Andrea Adami <andrea.adami@gmail.com> ...
>> >
>> > I've merged this series apart from 2/3 which we still need to discuss.
>>
>> Can you please update patchwork as well?
>
> Apparently, despite patchwork saying I'm a "contributor" I have no ability to
> do so.

Hi Paul,

You should be able to do it now. Please try and let me know

Thanks
-Khem



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

end of thread, other threads:[~2011-11-23 20:42 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-10-16 23:26 [meta-handheld][PATCH 1/3] formfactor: initial commit of collie, poodle and tosa machconfig Andrea Adami
2011-10-16 23:26 ` [meta-handheld][PATCH 2/3] udev: add bbappend and disable device cache as default Andrea Adami
2011-11-02 21:00   ` Paul Eggleton
2011-11-03  8:36     ` Koen Kooi
2011-11-03  9:09       ` Andrea Adami
2011-11-03  9:22         ` Andrea Adami
2011-11-03  9:24           ` Koen Kooi
2011-11-03  9:25         ` Koen Kooi
2011-11-03 10:08           ` Andrea Adami
2011-10-16 23:26 ` [meta-handheld][PATCH 3/3] xserver-xf86-config: add more xorg.conf for other Zaurus devices Andrea Adami
2011-10-20 22:25 ` [meta-handheld][PATCH V2 " Andrea Adami
2011-11-02 21:02 ` [meta-handheld][PATCH 1/3] formfactor: initial commit of collie, poodle and tosa machconfig Paul Eggleton
2011-11-03  8:51   ` Koen Kooi
2011-11-03 10:10     ` Paul Eggleton
2011-11-23 20:35       ` Khem Raj

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.