Subversion Repositories HelenOS

Compare Revisions

No changes between revisions

Ignore whitespace Rev 3685 → Rev 3886

/branches/network/uspace/srv/net/networking/startup/networking_startup.c
36,13 → 36,14
#include <async.h>
#include <stdio.h>
#include <task.h>
 
#include <ipc/ipc.h>
#include <ipc/services.h>
 
#include "../err.h"
#include "../messages.h"
#include "../modules.h"
#include "../self_test.h"
#include "../../err.h"
#include "../../messages.h"
#include "../../modules.h"
#include "../../self_test.h"
 
#define NAME "Networking startup"
 
64,7 → 65,7
}
// start networking
networking_phone = connect_to_service( SERVICE_NETWORKING );
if( ERROR_OCCURED( ipc_call_sync_0_0( networking_phone, NET_NETWORKING_STARTUP ))){
if( ERROR_OCCURED( ipc_call_sync_0_0( networking_phone, NET_NET_STARTUP ))){
printf( "\n" NAME " - ERROR %d\n", ERROR_CODE );
return ERROR_CODE;
}
/branches/network/uspace/srv/net/networking/startup/Makefile
29,10 → 29,10
## Setup toolchain
#
 
LIBC_PREFIX = ../../../lib/libc
SOFTINT_PREFIX = ../../../lib/softint
LIBC_PREFIX = ../../../../lib/libc
SOFTINT_PREFIX = ../../../../lib/softint
include $(LIBC_PREFIX)/Makefile.toolchain
include ../../../../Makefile.config
include ../../../../../Makefile.config
 
LIBS = $(LIBC_PREFIX)/libc.a
 
42,9 → 42,9
OUTPUT = networking_startup
SOURCES = \
networking_startup.c \
../modules.c \
../measured_strings.c \
../self_test.c
../../modules.c \
../../self_test.c \
../../structures/measured_strings.c
 
DEFS += -D NETWORKING_$(NETWORKING)
 
/branches/network/uspace/srv/net/networking/startup/.
Property changes:
Added: svn:mergeinfo