2017-09-27 18:52:42 +00:00
|
|
|
Index: kbd-2.0.4/src/kdfontop.c
|
|
|
|
===================================================================
|
|
|
|
--- kbd-2.0.4.orig/src/kdfontop.c
|
|
|
|
+++ kbd-2.0.4/src/kdfontop.c
|
|
|
|
@@ -168,6 +168,23 @@ int putfont(int fd, unsigned char *buf,
|
2008-08-21 21:56:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
+#if 1
|
|
|
|
+ // We no longer try PIO_FONT* calls.
|
|
|
|
+ // A former patch even added a possible 5 seconds delay loop here, in an attempt to
|
|
|
|
+ // gain victory over kdm. We no do this fight, as it can only result in races.
|
|
|
|
+ // https://bugzilla.novell.com/show_bug.cgi?id=302010
|
|
|
|
+ //
|
|
|
|
+ // Two effects:
|
|
|
|
+ // a) Without the delay loop, we are fast enough to run early.
|
|
|
|
+ // Moving setfont calls to an earlier point most likly
|
|
|
|
+ // avoids the race.
|
|
|
|
+ // b) Without the old compat calls, it should be easier to
|
|
|
|
+ // fix this in kernel side.
|
|
|
|
+ //
|
|
|
|
+ fprintf(stderr, "%s: putfont: %d,%dx%d: failed: %d\n", progname, count, width, height, i);
|
|
|
|
+ perror("putfont: KDFONTOP");
|
|
|
|
+ return -1;
|
|
|
|
+#else
|
|
|
|
/* Second attempt: PIO_FONTX */
|
2017-09-27 18:52:42 +00:00
|
|
|
cfd.charcount = count;
|
2008-08-21 21:56:49 +00:00
|
|
|
cfd.charheight = height;
|
2017-09-27 18:52:42 +00:00
|
|
|
@@ -190,4 +207,5 @@ int putfont(int fd, unsigned char *buf,
|
2008-08-21 21:56:49 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
+#endif
|
|
|
|
}
|