All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] [RFC] Add mini X for self-hosted
@ 2011-12-21  8:18 edwin.zhai
  2011-12-21  8:18 ` [PATCH 1/4] minix-session: Add this recipe as the session file for mini X edwin.zhai
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: edwin.zhai @ 2011-12-21  8:18 UTC (permalink / raw)
  To: openembedded-core

From: Zhai Edwin <edwin.zhai@intel.com>

All,
    These patches add mini X, who will execute session files on behalf of file
owner without rootless X. By this way, a minimal X enviroment including
matchbox-wm is availale for the "builder" user to start auto-run apps.

Pls. help to review.

Thanks,
Edwin

The following changes since commit 4648aadfe161d2e0ec51408f35fdf8996727bd22:

  ui/crumbs/hobprefs: trigger a reparse after changing IMAGE_FSTYPES (2011-12-20 13:15:54 +0000)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib gzhai/build-appliance2
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=gzhai/build-appliance2

Zhai Edwin (4):
  minix-session: Add this recipe as the session file for mini X
  Add mini X core tasks
  Add "builder" user for specific purpose.
  self-hosted-image: Add builder user and mini X

 meta/classes/core-image.bbclass                    |    2 +
 meta/recipes-core/images/self-hosted-image.bb      |    4 +-
 meta/recipes-core/tasks/task-self-hosted.bb        |    3 +-
 meta/recipes-graphics/builder/builder_0.1.bb       |   27 ++++++++++++
 meta/recipes-graphics/builder/files/auto_start.sh  |   11 +++++
 .../minix-session/files/minix-session              |   32 ++++++++++++++
 .../minix-session/minix-session_0.1.bb             |   24 ++++++++++
 meta/recipes-sato/tasks/task-core-x11-mini.bb      |   45 ++++++++++++++++++++
 8 files changed, 146 insertions(+), 2 deletions(-)
 create mode 100644 meta/recipes-graphics/builder/builder_0.1.bb
 create mode 100644 meta/recipes-graphics/builder/files/auto_start.sh
 create mode 100644 meta/recipes-graphics/minix-session/files/minix-session
 create mode 100644 meta/recipes-graphics/minix-session/minix-session_0.1.bb
 create mode 100644 meta/recipes-sato/tasks/task-core-x11-mini.bb




^ permalink raw reply	[flat|nested] 13+ messages in thread
* [PATCH 0/4] self-hosted-image: Add mini X
@ 2011-12-22 12:16 edwin.zhai
  2011-12-22 12:16 ` [PATCH 3/4] Add "builder" user for specific purpose edwin.zhai
  0 siblings, 1 reply; 13+ messages in thread
From: edwin.zhai @ 2011-12-22 12:16 UTC (permalink / raw)
  To: openembedded-core

From: Zhai Edwin <edwin.zhai@intel.com>

This is the new version modified according to Paul and Saul's comments:
Use mini-x-session, change script name, and more accurate license.

The following changes since commit 4648aadfe161d2e0ec51408f35fdf8996727bd22:

  ui/crumbs/hobprefs: trigger a reparse after changing IMAGE_FSTYPES (2011-12-20 13:15:54 +0000)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib gzhai/build-appliance2
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=gzhai/build-appliance2

Zhai Edwin (4):
  mini-x-session: Add this recipe as the session file for mini X
  Add mini X core tasks
  Add "builder" user for specific purpose.
  self-hosted-image: Add builder user and mini X

 meta/classes/core-image.bbclass                    |    2 +
 meta/recipes-core/images/self-hosted-image.bb      |    4 +-
 meta/recipes-core/tasks/task-self-hosted.bb        |    3 +-
 meta/recipes-graphics/builder/builder_0.1.bb       |   27 ++++++++++++
 .../builder/files/builder_hob_start.sh             |   11 +++++
 .../mini-x-session/files/mini-x-session            |   32 ++++++++++++++
 .../mini-x-session/mini-x-session_0.1.bb           |   24 ++++++++++
 meta/recipes-sato/tasks/task-core-x11-mini.bb      |   45 ++++++++++++++++++++
 8 files changed, 146 insertions(+), 2 deletions(-)
 create mode 100644 meta/recipes-graphics/builder/builder_0.1.bb
 create mode 100644 meta/recipes-graphics/builder/files/builder_hob_start.sh
 create mode 100644 meta/recipes-graphics/mini-x-session/files/mini-x-session
 create mode 100644 meta/recipes-graphics/mini-x-session/mini-x-session_0.1.bb
 create mode 100644 meta/recipes-sato/tasks/task-core-x11-mini.bb




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

end of thread, other threads:[~2011-12-22 12:32 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-21  8:18 [PATCH 0/4] [RFC] Add mini X for self-hosted edwin.zhai
2011-12-21  8:18 ` [PATCH 1/4] minix-session: Add this recipe as the session file for mini X edwin.zhai
2011-12-21 10:36   ` Paul Eggleton
2011-12-21 19:42     ` Otavio Salvador
2011-12-22  0:49     ` Zhai, Edwin
2011-12-21 19:38   ` Saul Wold
2011-12-22  0:52     ` Zhai, Edwin
2011-12-22  1:04       ` Saul Wold
2011-12-21  8:18 ` [PATCH 2/4] Add mini X core tasks edwin.zhai
2011-12-21  8:18 ` [PATCH 3/4] Add "builder" user for specific purpose edwin.zhai
2011-12-21 19:37   ` Saul Wold
2011-12-21  8:18 ` [PATCH 4/4] self-hosted-image: Add builder user and mini X edwin.zhai
  -- strict thread matches above, loose matches on Subject: below --
2011-12-22 12:16 [PATCH 0/4] self-hosted-image: Add " edwin.zhai
2011-12-22 12:16 ` [PATCH 3/4] Add "builder" user for specific purpose edwin.zhai

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.