Don't fallback to wsfb or fbdev on Solaris
We don't ship either one, so don't waste time and make confusing log entries trying to load them. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Daniel Stone <daniel@fooishbar.org>
This commit is contained in:
parent
7b0f53f0a5
commit
0e6b88db7f
|
@ -267,6 +267,7 @@ listPossibleVideoDrivers(char *matches[], int nmatches)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if !defined(sun)
|
||||||
/* Fallback to platform default frame buffer driver */
|
/* Fallback to platform default frame buffer driver */
|
||||||
if (i < (nmatches - 1)) {
|
if (i < (nmatches - 1)) {
|
||||||
#if !defined(__linux__) && defined(__sparc__)
|
#if !defined(__linux__) && defined(__sparc__)
|
||||||
|
@ -275,6 +276,7 @@ listPossibleVideoDrivers(char *matches[], int nmatches)
|
||||||
matches[i++] = xnfstrdup("fbdev");
|
matches[i++] = xnfstrdup("fbdev");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
#endif /* !sun */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* copy a screen section and enter the desired driver
|
/* copy a screen section and enter the desired driver
|
||||||
|
|
Loading…
Reference in New Issue