diff options
Diffstat (limited to 'dde_ne2k_pci/main.c')
-rw-r--r-- | dde_ne2k_pci/main.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dde_ne2k_pci/main.c b/dde_ne2k_pci/main.c new file mode 100644 index 00000000..df8df1eb --- /dev/null +++ b/dde_ne2k_pci/main.c @@ -0,0 +1,35 @@ +#include <dde26.h> /* l4dde26_*() */ +#include <dde26_net.h> /* l4dde26 networking */ + +#include <linux/netdevice.h> /* struct sk_buff */ +#include <linux/pci.h> /* pci_unregister_driver() */ +#include <linux/init.h> // initcall() +#include <linux/delay.h> // msleep() + +#include <hurd/machdev.h> + +int using_std = 1; + +int main(int argc, char **argv) +{ + pthread_t thread; + + l4dde26_init(); + l4dde26_process_init(); + l4dde26_softirq_init(); + + printk("Initializing skb subsystem\n"); + skb_init(); + + l4dde26_do_initcalls(); + + register_net(); + mach_device_init(); + trivfs_init(); + + pthread_create (&thread, NULL, ds_server, NULL); + pthread_detach (thread); + trivfs_server(); + + return 0; +} |