Let usb-driver work with a no-module kernel by Gyorgy 'nog' Jeney
This commit is contained in:
parent
1fc8f7a47d
commit
aed36bb341
@ -559,6 +559,12 @@ FILE *fopen(const char *path, const char *mode) {
|
|||||||
|
|
||||||
if (!strcmp(path, "/proc/modules")) {
|
if (!strcmp(path, "/proc/modules")) {
|
||||||
DPRINTF("opening /proc/modules\n");
|
DPRINTF("opening /proc/modules\n");
|
||||||
|
if (!ret && errno == ENOENT) {
|
||||||
|
/* Hmm.. there appears to be no /proc/modules file
|
||||||
|
* fake it then */
|
||||||
|
ret = (*func)("/dev/null", mode);
|
||||||
|
DPRINTF("No /proc/modules -- faking\n");
|
||||||
|
}
|
||||||
#ifdef NO_WINDRVR
|
#ifdef NO_WINDRVR
|
||||||
modulesfp = ret;
|
modulesfp = ret;
|
||||||
modules_read = 0;
|
modules_read = 0;
|
||||||
|
Reference in New Issue
Block a user