diff options
author | Justin Patrin <papercrane@gmail.com> | 2005-08-16 06:41:25 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-16 06:41:25 +0000 |
commit | b1fa2ef160702d78bd4d4a794b36eb2c06aeb142 (patch) | |
tree | 56b4ef8a4c15705875ce821c1e06079c9436c43a /packages/e17/entrance_20050810.bb | |
parent | a0614e469bea3e87c609d4f35a1a402cc7f0b252 (diff) |
Use bash in entrance_session to get around "entrance quitting right after login" bug
Alter entrance_wrapper to call Xinit scripts (forcefully disable 99gpe-login for now)
Add a Failsafe Session file
Rename Session back to Sessions (config db has been updated accordingly)
Change config db to have all 7 entries filled out (most with Enlightenment) to stop crashes
Diffstat (limited to 'packages/e17/entrance_20050810.bb')
-rw-r--r-- | packages/e17/entrance_20050810.bb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/e17/entrance_20050810.bb b/packages/e17/entrance_20050810.bb index 2673ec27f0..af11e07fd5 100644 --- a/packages/e17/entrance_20050810.bb +++ b/packages/e17/entrance_20050810.bb @@ -13,8 +13,10 @@ SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/enlightenment;module=e17/ file://Xserver.patch;patch=1 \ file://config-db.patch;patch=1 \ file://allow-missing-xsession.patch;patch=1 \ + file://run-Xinit.patch;patch=1 \ + file://use-bash.patch;patch=1 \ file://Xinit.d \ - file://Session" + file://Sessions" S = "${WORKDIR}/entrance" @@ -28,9 +30,9 @@ FILES += "${datadir}" do_install_append() { install -d ${D}/etc/X11/Xinit.d install -d ${D}/etc/X11/Xsession.d - install -d ${D}/etc/X11/Session + install -d ${D}/etc/X11/Sessions install -m 755 ${WORKDIR}/Xinit.d/* ${D}/etc/X11/Xinit.d - install -m 755 ${WORKDIR}/Session/* ${D}/etc/X11/Session + install -m 755 ${WORKDIR}/Sessions/* ${D}/etc/X11/Sessions } |