blob: c9fc17a7b5e9defac372d46f5c48a1f226273c87 [file] [log] [blame]
Uwe Hermann661e3802008-03-21 18:37:23 +00001##
Uwe Hermann661e3802008-03-21 18:37:23 +00002##
3## Copyright (C) 2008 Advanced Micro Devices, Inc.
Stefan Reinauer69863582008-08-08 13:45:03 +00004## Copyright (C) 2008 coresystems GmbH
Uwe Hermann661e3802008-03-21 18:37:23 +00005##
6## Redistribution and use in source and binary forms, with or without
7## modification, are permitted provided that the following conditions
8## are met:
9## 1. Redistributions of source code must retain the above copyright
10## notice, this list of conditions and the following disclaimer.
11## 2. Redistributions in binary form must reproduce the above copyright
12## notice, this list of conditions and the following disclaimer in the
13## documentation and/or other materials provided with the distribution.
14## 3. The name of the author may not be used to endorse or promote products
15## derived from this software without specific prior written permission.
16##
17## THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18## ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20## ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23## OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26## OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27## SUCH DAMAGE.
28##
Jordan Crousef6145c32008-03-19 23:56:58 +000029
Gabe Black1ee2c6d2013-08-09 04:27:35 -070030libc-$(CONFIG_LP_LIBC) += malloc.c printf.c console.c string.c
Julius Werner177aee22024-01-30 17:22:34 -080031libc-$(CONFIG_LP_LIBC) += memory.c ctype.c lib.c libgcc.c
Subrata Banikafa39102024-05-18 12:26:40 +000032libc-$(CONFIG_LP_LIBC) += rand.c time.c
Gabe Black1ee2c6d2013-08-09 04:27:35 -070033libc-$(CONFIG_LP_LIBC) += readline.c getopt_long.c sysinfo.c
Julius Werner7a8a4ab2015-05-22 16:26:40 -070034libc-$(CONFIG_LP_LIBC) += args.c
Gabe Black1ee2c6d2013-08-09 04:27:35 -070035libc-$(CONFIG_LP_LIBC) += strlcpy.c
36libc-$(CONFIG_LP_LIBC) += qsort.c
37libc-$(CONFIG_LP_LIBC) += hexdump.c
Vadim Bendebury864ec8c2014-07-31 21:02:57 -070038libc-$(CONFIG_LP_LIBC) += coreboot.c
Patrick Georgi89f73dc2015-07-09 13:57:00 +020039libc-$(CONFIG_LP_LIBC) += fmap.c
Julius Werner96b00a52020-07-01 19:18:34 -070040libc-$(CONFIG_LP_LIBC) += fpmath.c
Hsuan Ting Chen607b39c2022-03-25 17:23:21 +080041
Jakub Czapigaf64f3d02023-09-08 13:17:21 +000042ifeq ($(CONFIG_LP_VBOOT_LIB),y)
43libc-$(CONFIG_LP_LIBC) += lp_vboot.c
44endif
45
Hsuan Ting Chen607b39c2022-03-25 17:23:21 +080046ifeq ($(CONFIG_LP_LIBC),y)
47libc-srcs += $(coreboottop)/src/commonlib/bsd/elog.c
Yidi Lin0285d672023-11-02 12:29:04 +080048libc-srcs += $(coreboottop)/src/commonlib/bsd/gcd.c
Julius Werner177aee22024-01-30 17:22:34 -080049libc-srcs += $(coreboottop)/src/commonlib/bsd/ipchksum.c
Maximilian Brunea99b5802023-09-16 19:56:45 +020050ifeq ($(CONFIG_LP_GPL),y)
51libc-srcs += $(coreboottop)/src/commonlib/list.c
52endif
Hsuan Ting Chen607b39c2022-03-25 17:23:21 +080053endif