source: rtems/c/src/lib/libbsp/x86_64/amd64/Makefile.am @ cf811a4

5
Last change on this file since cf811a4 was cf811a4, checked in by Amaan Cheval <amaan.cheval@…>, on 07/09/18 at 11:12:57

x86_64/console: Add NS16550 polled console driver

This addition allows us to successfully run the sample hello.exe test.

Updates #2898.

  • Property mode set to 100644
File size: 1.8 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4include $(top_srcdir)/../../bsp.am
5
6dist_project_lib_DATA = ../../../../../../bsps/x86_64/amd64/start/bsp_specs
7
8noinst_PROGRAMS =
9
10project_lib_DATA = linkcmds
11
12project_lib_LIBRARIES = librtemsbsp.a
13librtemsbsp_a_SOURCES =
14
15# startup
16librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/bspfatal-default.c
17#  XXX: We may want a custom bsp_work_area_initialize to detect memory size like
18#  the i386
19#
20# FreeBSD's bootloader may leave a bootinfo structure for the kernel to find later:
21# http://fxr.watson.org/fxr/source/i386/include/bootinfo.h?v=FREEBSD11#L48
22#
23librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/bspgetworkarea-default.c
24librtemsbsp_a_SOURCES += ../../../../../../bsps/x86_64/amd64/start/bspstart.c
25librtemsbsp_a_SOURCES += ../../../../../../bsps/x86_64/amd64/start/start.c
26librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/sbrk.c
27librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/getentropy/getentropy-cpucounter.c
28librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/bspreset-empty.c
29# clock
30librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/clock/clock-simidle.c
31# console
32librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/serial/console-termios-init.c
33librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/serial/console-termios.c
34librtemsbsp_a_SOURCES += ../../../../../../bsps/x86_64/amd64/console/console.c
35# timer
36librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/btimer/btimer-stub.c
37# cache
38librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/cache/nocache.c
39
40include $(top_srcdir)/../../../../automake/local.am
41include $(srcdir)/../../../../../../bsps/shared/shared-sources.am
42include $(srcdir)/../../../../../../bsps/x86_64/amd64/headers.am
Note: See TracBrowser for help on using the repository browser.