summaryrefslogtreecommitdiffstats
path: root/abs/core/enlightenment/startup.patch
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2011-12-07 19:34:06 (GMT)
committerJames Meyer <james.meyer@operamail.com>2011-12-07 19:34:06 (GMT)
commit03f055e5e8f4731454a7c68fce84a1aa0bee5064 (patch)
tree5af3a96813f2b5e4db072c7102bd9b6c7b962c12 /abs/core/enlightenment/startup.patch
parentecea9727fc690dddfede25bd8bdd33356618663c (diff)
downloadlinhes_pkgbuild-03f055e5e8f4731454a7c68fce84a1aa0bee5064.zip
linhes_pkgbuild-03f055e5e8f4731454a7c68fce84a1aa0bee5064.tar.gz
linhes_pkgbuild-03f055e5e8f4731454a7c68fce84a1aa0bee5064.tar.bz2
enlighenment--changing dir
Diffstat (limited to 'abs/core/enlightenment/startup.patch')
-rw-r--r--abs/core/enlightenment/startup.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/abs/core/enlightenment/startup.patch b/abs/core/enlightenment/startup.patch
new file mode 100644
index 0000000..136f848
--- /dev/null
+++ b/abs/core/enlightenment/startup.patch
@@ -0,0 +1,42 @@
+--- src/startup.c.orig 2011-11-15 22:01:02.939243595 +0000
++++ src/startup.c 2011-11-15 22:01:33.682575674 +0000
+@@ -173,5 +173,39 @@
+
+ Mode.place.enable_features--;
+ ESync(ESYNC_STARTUP);
++
++ //Start of MythVantage delay for ultra cool startup
++ printf("***\n");
++ int ret = 1 ;
++
++ //checking for fname
++ int result;
++ const char *filename = "/tmp/nofe";
++ result = access (filename, F_OK);
++
++ if( result != 0 )
++ {
++ printf("Waiting for Mythfrontend\n");
++ int i;
++ for (i = 0; i < 20; i++)
++ {
++
++ sleep(1);
++ ret = system("xwininfo -name \"MythTV Frontend\" 2>/dev/null >/dev/null " );
++ if ( ret == 0 )
++ break;
++ }
++ if ( ret != 0 )
++ printf("Couldn't find mythfrontend, starting anyhow \n");
++ else
++ printf("MythFrontned found, continue startup\n");
++ }
++ else
++ {
++ printf("Found /tmp/nofe, skipping delay\n");
++ }
++ // End of delay code
++
++
+ AnimatorAdd(doStartupWindowsOpen, NULL);
+ }