2010-03-03 06:58:37 +08:00
|
|
|
######################################################################
|
|
|
|
##
|
|
|
|
## Copyright (C) 2010, Karlsruhe University
|
|
|
|
##
|
2010-08-11 00:34:22 +08:00
|
|
|
## File path: kdb/generic/Makeconf
|
2010-03-03 06:58:37 +08:00
|
|
|
## Description: Generic linkser script for x86.
|
|
|
|
##
|
|
|
|
## Redistribution and use in source and binary forms, with or without
|
|
|
|
## modification, are permitted provided that the following conditions
|
|
|
|
## are met:
|
|
|
|
## 1. Redistributions of source code must retain the above copyright
|
|
|
|
## notice, this list of conditions and the following disclaimer.
|
|
|
|
## 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
## notice, this list of conditions and the following disclaimer in the
|
|
|
|
## documentation and/or other materials provided with the distribution.
|
|
|
|
##
|
|
|
|
## THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
## ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
## ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
## OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
## OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
## SUCH DAMAGE.
|
|
|
|
##
|
|
|
|
## $Id$
|
|
|
|
##
|
|
|
|
######################################################################
|
2007-07-06 18:24:13 +08:00
|
|
|
SOURCES+= kdb/generic/bootinfo.cc \
|
|
|
|
kdb/generic/cmd.cc \
|
|
|
|
kdb/generic/console.cc \
|
|
|
|
kdb/generic/entry.cc \
|
|
|
|
kdb/generic/init.cc \
|
|
|
|
kdb/generic/input.cc \
|
|
|
|
kdb/generic/kmemory.cc \
|
|
|
|
kdb/generic/linker_set.cc \
|
|
|
|
kdb/generic/memdump.cc \
|
|
|
|
kdb/generic/print.cc \
|
|
|
|
kdb/generic/tid_format.cc \
|
2010-08-11 00:34:22 +08:00
|
|
|
kdb/generic/tracepoints.cc
|
|
|
|
|
|
|
|
|
|
|
|
ifeq ("$(CONFIG_TRACEBUFFER)","y")
|
|
|
|
SOURCES+= kdb/generic/tracebuffer.cc
|
|
|
|
endif
|
2007-07-06 18:24:13 +08:00
|
|
|
|
2007-11-09 22:19:14 +08:00
|
|
|
ifeq ("$(CONFIG_X86_IO_FLEXPAGES)","y")
|
2007-07-06 18:24:13 +08:00
|
|
|
SOURCES+= kdb/generic/vrt.cc
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ("$(CONFIG_ACPI)","y")
|
|
|
|
SOURCES+= kdb/generic/acpi.cc
|
|
|
|
endif
|