Rename RTEMS-kernel to RTEMS-score (OS_API)

This commit is contained in:
Andrew Johnson
2021-06-05 01:34:03 -05:00
parent 1b825da9ec
commit 8e468da4cc
27 changed files with 7 additions and 7 deletions

View File

@@ -108,14 +108,14 @@ endif
OP_SYS_LDLIBS_posix_NET_yes = -ltftpfs -lnfs -lz -ltelnetd
OP_SYS_LDLIBS_posix_NET_no = -ltftpfs -lbsd -lz
OP_SYS_LDLIBS_kernel_NET_yes = -lnfs
OP_SYS_LDLIBS_kernel_NET_no = -lnfs
OP_SYS_LDLIBS_score_NET_yes = -lnfs
OP_SYS_LDLIBS_score_NET_no = -lnfs
OP_SYS_LDLIBS += -lrtemsCom -lCom
OP_SYS_LDLIBS += $(OP_SYS_LDLIBS_$(OS_API)_NET_$(RTEMS_HAS_NETWORKING))
OP_SYS_LDLIBS += -lrtemscpu -lc -lm
OP_SYS_LDFLAGS_posix = -u POSIX_Init
OP_SYS_LDFLAGS_kernel = -u Init \
OP_SYS_LDFLAGS_score = -u Init \
$(PROJECT_RELEASE)/lib/no-dpmem.rel \
$(PROJECT_RELEASE)/lib/no-mp.rel \
$(PROJECT_RELEASE)/lib/no-part.rel \

View File

@@ -32,6 +32,6 @@ MSVC_VER = _MSC_VER
# if __RTEMS_MAJOR__>=5
OS_API = posix
# else
OS_API = kernel
OS_API = score
# endif
#endif

View File

@@ -1,6 +1,6 @@
#ifdef RTEMS_LEGACY_STACK
#include "../RTEMS-kernel/devLibVMEOSD.c"
#include "os/RTEMS-score/devLibVMEOSD.c"
#else
#pragma message "\n VME-Support only with RTEMS Legacy stack\n"
#include "../default/devLibVMEOSD.c"
#pragma message "\n VME Support requires the RTEMS Legacy stack\n"
#include "default/devLibVMEOSD.c"
#endif