You are not logged in.
Pages: 1
http://sourceforge.net/project/showfile … _id=121684
Here'a another thing that worked with the previous kernel. It seems to compile without problems, but when I try to mount my Siemens S55 mobile phone on COM 2 it says:
FATAL: Error inserting fuse (/lib/modules/2.6.10-ARCH/kernel/fs/fuse/fuse.ko): Unknown symbol in module, or unknown parameter (see dmesg)
fusermount: unable to open fuse device /proc/fs/fuse/dev: No such file or directory
When I type 'dmesg' here's what comes out:
fuse: Unknown symbol vfs_permission
Dunno if anyone can help me with this(should send it to bugtracker?), but I believe it can be fixed. Cheers.[/code]
Offline
i dont speak russian, but seems this is the solution : http://www.zlug.pp.ru/node/198#english
Offline
Indeed, it is the solution. At the bottom of the page it says(in english) to compile the 'cvs_permission.c' file with the provided source and Makefile. I haven't succeded though, it does nothing after I type 'make' in the directory with those 2 files.. maybe you try. :?
Offline
here's what you do, according to the link:
file: vfs_permission.c
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/fs.h>
int vfs_permission(struct inode * inode, int mask)
{
int rc;
rc = generic_permission(inode,mask,NULL);
return rc;
}
EXPORT_SYMBOL(vfs_permission);
MODULE_LICENSE("GPL");
file: Makefile
ifneq ($(KERNELRELEASE),)
obj-m := vfs_permission.o
else
KDIR := /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default:
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
endif
put these in a directory, run make
it will create a vfs_permission.ko module... put that somewhere you want and insmod it.
then you should be able to modprobe fuse
Offline
No, nein, niet, nie działa.
When I run 'make' it spits out:
Nothing to do in default
(translation from polish 'Nie nic do roboty w default'
Ja nie panimaju jush nicjewo.
Offline
hmmmm
# make -C /lib/modules/$(shell uname -r)/build SUBDIRS=$(shell pwd) modules
try just that?
Offline
or actually... change "default" to "all" in the original Makefile.... though that shouldn't matter
Offline
hmmmm
# make -C /lib/modules/$(shell uname -r)/build SUBDIRS=$(shell pwd) modules
try just that?
That did it. Thanks Russians. Thanks Phrakture. Thanks z4ziggy. )
Offline
Pages: 1