* [PATCH 0/2] self-hosted-image: 2 new patches from Dexuan: Feb 14, 2012
@ 2012-02-14 14:51 Dexuan Cui
2012-02-14 14:51 ` [PATCH 1/2] mini-x-session: try to use a resolution that's big enough for hob2's window Dexuan Cui
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Dexuan Cui @ 2012-02-14 14:51 UTC (permalink / raw)
To: openembedded-core, saul.wold
The following changes since commit 41a83ccfe50ec69425a4828fb5836d38d3f99e67:
guile: fix cross configure failure (2012-02-10 17:01:42 +0000)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib dcui/self-hosted-v8
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dcui/self-hosted-v8
Dexuan Cui (2):
mini-x-session: try to use a resolution that's big enough for hob2's
window
task-self-hosted: add connman and connman-plugin-ethernet
meta/recipes-core/tasks/task-self-hosted.bb | 4 +++-
.../mini-x-session/files/mini-x-session | 4 ++++
.../mini-x-session/mini-x-session_0.1.bb | 2 ++
3 files changed, 9 insertions(+), 1 deletions(-)
--
1.7.6
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] mini-x-session: try to use a resolution that's big enough for hob2's window
2012-02-14 14:51 [PATCH 0/2] self-hosted-image: 2 new patches from Dexuan: Feb 14, 2012 Dexuan Cui
@ 2012-02-14 14:51 ` Dexuan Cui
2012-02-14 14:51 ` [PATCH 2/2] task-self-hosted: add connman and connman-plugin-ethernet Dexuan Cui
2012-02-21 19:04 ` [PATCH 0/2] self-hosted-image: 2 new patches from Dexuan: Feb 14, 2012 Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Dexuan Cui @ 2012-02-14 14:51 UTC (permalink / raw)
To: openembedded-core, saul.wold
The patch was tested on VMware Player 4.0.1.
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
---
.../mini-x-session/files/mini-x-session | 4 ++++
.../mini-x-session/mini-x-session_0.1.bb | 2 ++
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-graphics/mini-x-session/files/mini-x-session b/meta/recipes-graphics/mini-x-session/files/mini-x-session
index 1940e27..f7d6c3b 100644
--- a/meta/recipes-graphics/mini-x-session/files/mini-x-session
+++ b/meta/recipes-graphics/mini-x-session/files/mini-x-session
@@ -25,6 +25,10 @@ for SESSIONFILE in $MINI_X_SESSION_DIR/*; do
sudo -b -i -u $USERNAME $SESSIONFILE&
set -e
done
+
+# This resolution is big enough for hob2's max window size.
+xrandr -s 1024x768
+
# Default files to run if $HOME/.mini_x/session or /etc/mini_x/session
# dont exist.
diff --git a/meta/recipes-graphics/mini-x-session/mini-x-session_0.1.bb b/meta/recipes-graphics/mini-x-session/mini-x-session_0.1.bb
index 9818650..8f28d03 100644
--- a/meta/recipes-graphics/mini-x-session/mini-x-session_0.1.bb
+++ b/meta/recipes-graphics/mini-x-session/mini-x-session_0.1.bb
@@ -2,6 +2,8 @@ DESCRIPTION = "Mini X session files for poky"
HOMEPAGE = "http://www.yoctoproject.org"
BUGTRACKER = "http://bugzilla.pokylinux.org"
+PR = "r1"
+
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://mini-x-session;endline=5;md5=b6430bffbcf05f9760e72938826b7487"
--
1.7.6
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] task-self-hosted: add connman and connman-plugin-ethernet
2012-02-14 14:51 [PATCH 0/2] self-hosted-image: 2 new patches from Dexuan: Feb 14, 2012 Dexuan Cui
2012-02-14 14:51 ` [PATCH 1/2] mini-x-session: try to use a resolution that's big enough for hob2's window Dexuan Cui
@ 2012-02-14 14:51 ` Dexuan Cui
2012-02-21 19:04 ` [PATCH 0/2] self-hosted-image: 2 new patches from Dexuan: Feb 14, 2012 Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Dexuan Cui @ 2012-02-14 14:51 UTC (permalink / raw)
To: openembedded-core, saul.wold
Without this, the VMware guest running self-hosted-image can't get IP
address automatically.
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
---
meta/recipes-core/tasks/task-self-hosted.bb | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-core/tasks/task-self-hosted.bb b/meta/recipes-core/tasks/task-self-hosted.bb
index 63fa1cc..1678ac3 100644
--- a/meta/recipes-core/tasks/task-self-hosted.bb
+++ b/meta/recipes-core/tasks/task-self-hosted.bb
@@ -3,7 +3,7 @@
#
DESCRIPTION = "Create Basic Image Tasks"
-PR = "r4"
+PR = "r5"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
@@ -28,6 +28,8 @@ RDEPENDS_task-self-hosted = "\
"
RDEPENDS_task-self-hosted-host-tools = "\
+ connman \
+ connman-plugin-ethernet \
parted \
e2fsprogs \
e2fsprogs-mke2fs \
--
1.7.6
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] self-hosted-image: 2 new patches from Dexuan: Feb 14, 2012
2012-02-14 14:51 [PATCH 0/2] self-hosted-image: 2 new patches from Dexuan: Feb 14, 2012 Dexuan Cui
2012-02-14 14:51 ` [PATCH 1/2] mini-x-session: try to use a resolution that's big enough for hob2's window Dexuan Cui
2012-02-14 14:51 ` [PATCH 2/2] task-self-hosted: add connman and connman-plugin-ethernet Dexuan Cui
@ 2012-02-21 19:04 ` Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-02-21 19:04 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On 02/14/2012 06:51 AM, Dexuan Cui wrote:
> The following changes since commit 41a83ccfe50ec69425a4828fb5836d38d3f99e67:
>
> guile: fix cross configure failure (2012-02-10 17:01:42 +0000)
>
> are available in the git repository at:
> git://git.pokylinux.org/poky-contrib dcui/self-hosted-v8
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dcui/self-hosted-v8
>
> Dexuan Cui (2):
> mini-x-session: try to use a resolution that's big enough for hob2's
> window
> task-self-hosted: add connman and connman-plugin-ethernet
>
> meta/recipes-core/tasks/task-self-hosted.bb | 4 +++-
> .../mini-x-session/files/mini-x-session | 4 ++++
> .../mini-x-session/mini-x-session_0.1.bb | 2 ++
> 3 files changed, 9 insertions(+), 1 deletions(-)
>
Merged into OE-core
Thanks
Sau!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-02-21 19:14 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-14 14:51 [PATCH 0/2] self-hosted-image: 2 new patches from Dexuan: Feb 14, 2012 Dexuan Cui
2012-02-14 14:51 ` [PATCH 1/2] mini-x-session: try to use a resolution that's big enough for hob2's window Dexuan Cui
2012-02-14 14:51 ` [PATCH 2/2] task-self-hosted: add connman and connman-plugin-ethernet Dexuan Cui
2012-02-21 19:04 ` [PATCH 0/2] self-hosted-image: 2 new patches from Dexuan: Feb 14, 2012 Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox