bsp/pc386: Move libcpu content to bsps

This patch is a part of the BSP source reorganization.

Update #3285.
This commit is contained in:
Sebastian Huber
2018-03-20 16:16:53 +01:00
parent 4c36a525d3
commit a7fa9e9172
7 changed files with 4 additions and 45 deletions

View File

@@ -171,6 +171,10 @@ libbsp_a_SOURCES += wd8003/wd8003.c
endif endif
libbsp_a_SOURCES += ../../../../../../bsps/i386/shared/cache/cache.c libbsp_a_SOURCES += ../../../../../../bsps/i386/shared/cache/cache.c
libbsp_a_SOURCES += ../../../../../../bsps/i386/pc386/start/cpuModel.S
libbsp_a_SOURCES += ../../../../../../bsps/i386/pc386/start/displayCpu.c
libbsp_a_SOURCES += ../../../../../../bsps/i386/pc386/start/idtr.S
libbsp_a_SOURCES += ../../../../../../bsps/i386/pc386/start/page.c
libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/page.rel libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/page.rel
libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/score.rel libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/score.rel

View File

@@ -1,17 +0,0 @@
ACLOCAL_AMFLAGS = -I ../../../aclocal
noinst_PROGRAMS =
include $(top_srcdir)/../../../automake/compile.am
noinst_PROGRAMS += score.rel
score_rel_SOURCES = displayCpu.c cpuModel.S cpuModel.h idtr.S cpu.h
score_rel_CPPFLAGS = $(AM_CPPFLAGS)
score_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
noinst_PROGRAMS += page.rel
page_rel_SOURCES = page.c page.h
page_rel_CPPFLAGS = $(AM_CPPFLAGS)
page_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
include $(top_srcdir)/../../../automake/local.am

View File

@@ -1,28 +0,0 @@
## Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([rtems-c-src-lib-libcpu-i386],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
AC_CONFIG_SRCDIR([idtr.S])
RTEMS_TOP([../../../../..],[../../..])
RTEMS_SOURCE_TOP
RTEMS_BUILD_TOP
RTEMS_CANONICAL_TARGET_CPU
AM_INIT_AUTOMAKE([no-define foreign subdir-objects 1.12.2])
AM_MAINTAINER_MODE
RTEMS_ENV_RTEMSBSP
RTEMS_PROJECT_ROOT
RTEMS_PROG_CC_FOR_TARGET
AM_PROG_CC_C_O
RTEMS_CANONICALIZE_TOOLS
RTEMS_PROG_CCAS
RTEMS_AMPOLISH3
# Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile])
AC_OUTPUT