summaryrefslogtreecommitdiffstats
path: root/abs/core/mv/enlightenment/startup.patch
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core/mv/enlightenment/startup.patch')
-rw-r--r--abs/core/mv/enlightenment/startup.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/abs/core/mv/enlightenment/startup.patch b/abs/core/mv/enlightenment/startup.patch
deleted file mode 100644
index 136f848..0000000
--- a/abs/core/mv/enlightenment/startup.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- 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);
- }