Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3466 → Rev 3386

/branches/network/uspace/app/init/init.c
107,7 → 107,6
// FIXME: spawn("/sbin/pci");
spawn("/sbin/fb");
spawn("/sbin/kbd");
spawn("/sbin/networking");
spawn("/sbin/console");
console_wait();
/branches/network/uspace/lib/libc/include/ipc/services.h
43,16 → 43,7
SERVICE_VIDEO,
SERVICE_CONSOLE,
SERVICE_VFS,
SERVICE_DEVMAP,
SERVICE_NETWORKING,
SERVICE_IP,
SERVICE_ARP,
SERVICE_RARP,
SERVICE_ICMP,
SERVICE_UDP,
SERVICE_TCP,
SERVICE_SOCKET,
SERVICE_ETHERNET
SERVICE_DEVMAP
} services_t;
 
/* Memory area to be received from NS */
/branches/network/uspace/srv/net/messages.h
File deleted
Property changes:
Deleted: svn:eol-style
-native
\ No newline at end of property
/branches/network/uspace/srv/net/modules.h
File deleted
Property changes:
Deleted: svn:eol-style
-native
\ No newline at end of property
/branches/network/uspace/srv/net/tcp/tcp.c
File deleted
Property changes:
Deleted: svn:eol-style
-native
\ No newline at end of property
/branches/network/uspace/srv/net/tcp/tcp.h
File deleted
Property changes:
Deleted: svn:eol-style
-native
\ No newline at end of property
/branches/network/uspace/srv/net/tcp/tcp_module.c
File deleted
Property changes:
Deleted: svn:eol-style
-native
\ No newline at end of property
/branches/network/uspace/srv/net/tcp/Makefile
File deleted
Property changes:
Deleted: svn:eol-style
-native
\ No newline at end of property
/branches/network/uspace/srv/net/networking/Makefile
File deleted
Property changes:
Deleted: svn:eol-style
-native
\ No newline at end of property
/branches/network/uspace/srv/net/networking/networking.c
File deleted
Property changes:
Deleted: svn:eol-style
-native
\ No newline at end of property
/branches/network/uspace/srv/net/ip/ip.c
File deleted
Property changes:
Deleted: svn:eol-style
-native
\ No newline at end of property
/branches/network/uspace/srv/net/ip/Makefile
File deleted
Property changes:
Deleted: svn:eol-style
-native
\ No newline at end of property
/branches/network/uspace/srv/net/ip/ip.h
File deleted
Property changes:
Deleted: svn:eol-style
-native
\ No newline at end of property
/branches/network/uspace/srv/net/ip/ip_module.c
File deleted
Property changes:
Deleted: svn:eol-style
-native
\ No newline at end of property
/branches/network/uspace/srv/net/modules.c
File deleted
Property changes:
Deleted: svn:eol-style
-native
\ No newline at end of property
/branches/network/uspace/Makefile
46,7 → 46,6
srv/fs/tmpfs \
srv/vfs \
srv/devmap \
srv/net/networking \
app/tetris \
app/tester \
app/klog \
69,17 → 68,6
CFLAGS += -DCONFIG_MIPS_FPU
endif
 
ifeq ($(NETWORKING), modular)
DIRS += srv/net/ip \
srv/net/tcp
# srv/net/arp \
# srv/net/rarp \
# srv/net/icmp \
# srv/net/udp \
# srv/net/socket \
# srv/net/drivers/ne2k_isa
endif
 
BUILDS := $(addsuffix .build,$(DIRS))
CLEANS := $(addsuffix .clean,$(DIRS))
 
105,4 → 93,4
-$(MAKE) -C $(basename $@) clean ARCH=$(ARCH)
 
$(BUILDS):
$(MAKE) -C $(basename $@) all ARCH=$(ARCH) COMPILER=$(COMPILER) NETWORKING=$(NETWORKING)
$(MAKE) -C $(basename $@) all ARCH=$(ARCH) COMPILER=$(COMPILER)
/branches/network/uspace/doc/doxygroups.h
20,24 → 20,19
* @defgroup fbs Framebuffer Service
* @ingroup srvcs
*/
 
/**
* @defgroup console Console Service
* @ingroup srvcs
*/
 
/**
* @defgroup net Networking Service
* @ingroup srvcs
*/
 
/**
* @cond amd64
* @defgroup pci PCI Service
* @ingroup srvcs
* @endcond
*/
 
/**
* @cond ia32
* @defgroup pci PCI Service
44,19 → 39,18
* @ingroup srvcs
* @endcond
*/
 
/**
* @defgroup emul Emulation Libraries
* @ingroup uspace
*/
 
/**
* @defgroup sfl Softloat
* @ingroup emul
*/
 
/**
* @defgroup softint Softint
* @ingroup emul
*/