Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
Does anyone know if it would be possible to compile kernel modules for the existing kernel (in either firmware release) for the DNS-323? For example, I download the 2.6.6 sources, compile, and then just install the modules? I'd like to extend the USB support, add iptables, work with different filesystems, NFS support, etc...
Offline
yes, that's possible... some are available for download at http://dev.skcserver.de/dns323/modules/
extending iptables on the other hand won't be soo easy, because nat support (for example) would require to recompile the whole kernel, and that is not possible (yet)...
Offline
Would be great if someone wrote a GUI front to help manage all the drivers. Perhaps even better would be replacing the existing web interface, with one that takes advantage of all the great drivers and new developments that are being announced here almost daily.
Offline
I'm using netatalk to enable Apple Talk, however doing it with chroot. Can someone compile it so it works natively, without chroot?
Offline
whats better whit using appletalk insted of samba?
im getting a macbook late next week so if you can tell me i will try to digg down and try it.
Offline
Appletalk allows for additional characters in filenames that Samba doesn't. Such as :. I'm not saying that's better, but that is just how it is.
Offline
I'll be darned. Yeah that went pretty smooth. The compile produced all the modules I wanted. And thanks for the link to the online modules!
Offline
radiusweb wrote:
I'll be darned. Yeah that went pretty smooth. The compile produced all the modules I wanted. And thanks for the link to the online modules!
radiusweb, did you (or could you) compile the modules for usbhid and usbhiddev? I am looking for these modules to attach
an American Power Company (APC) Uninterruptible Power Supply (UPS) to the DNS_323 USB port, using the apcupsd software to
monitor the UPS power status
//Mig
Offline
Maybe. But I spoke to soon. The compile went fine and xfs.ko loaded just fine too. So I thought everything was good. However most all of the other modules fail to load due to unresolved symbols. Since I'm going to have to fix this and recompile, I'll just add your requested modules to my list. It might be a while though...
Offline
Paul wrote:
yes, that's possible... some are available for download at http://dev.skcserver.de/dns323/modules/
extending iptables on the other hand won't be soo easy, because nat support (for example) would require to recompile the whole kernel, and that is not possible (yet)...
I'm looking for a methode to compile drivers (modules) direct on the target machin (DNS323). As the funplug packages are containing a toolchain with all the necessary tools included it should be possible isn't it.
When I just start a small c program see below:
Code : hello.c
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
static int __init hello_start(void)
{
printk(KERN_INFO "loading hello module ...\n");
printK(KERN_INFO "Hello world\n");
retun 0;
}
static void __exit hello_end(void)
{
printK(KERN_INFO "goodbye Mr.\n");
}
module_init(hello_start);
module_exit(hello_end);
end code
to compile this file I've made a Makefile as given below:
code: Makefile
obj-m = hello.o
KVERSION = $(shell uname -r)
all:
make -C /lib/modules/$(KVERSION)/build M=$(pwd) modules
clean:
make -C /lib/modules/$(KVERSION)/build M=$(pwd) clean
end code
the error message I got lauching the command 'make' is the following:
make: Nothing to be done for `all'.
First the kernel header files are missing on the DNS323. I think that the problem is situated at that level. I do not have found yet a way to install the header files for the kernel used on the DNS323.
Is there someone who can help me?
Thanks.
Offline
SVD wrote:
First the kernel header files are missing on the DNS323. I think that the problem is situated at that level. I do not have found yet a way to install the header files for the kernel used on the DNS323.
You can't compile linux 2.6.12.6 with gcc4. http://dns323.kood.org/forum/p17617-200 … tml#p17617
Offline
mig wrote:
radiusweb, did you (or could you) compile the modules for usbhid and usbhiddev? I am looking for these modules to attach an American Power Company (APC) Uninterruptible Power Supply (UPS) to the DNS_323 USB port, using the apcupsd software to monitor the UPS power status
I did... while I was trying get NUT working for a similar reason.
I've also successfully built NUT, but it seems my Mustek UPS isn't yet supported over USB, and since I can't even give it a try, I'm giving up on it for now.
I've attached the kernel module, hope it's useful. Happy hacking!
Last edited by kruzes (2008-07-16 00:50:55)
Offline