diff options
Diffstat (limited to 'meta/recipes-core/picolibc/picolibc.inc')
-rw-r--r-- | meta/recipes-core/picolibc/picolibc.inc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/recipes-core/picolibc/picolibc.inc b/meta/recipes-core/picolibc/picolibc.inc new file mode 100644 index 0000000000..68c32894a7 --- /dev/null +++ b/meta/recipes-core/picolibc/picolibc.inc | |||
@@ -0,0 +1,20 @@ | |||
1 | SUMMARY = "C Libraries for Smaller Embedded Systems" | ||
2 | HOMEPAGE = "https://keithp.com/picolibc" | ||
3 | DESCRIPTION = "Picolibc is a set of standard C libraries, both libc and libm, designed for smaller embedded systems with limited ROM and RAM. Picolibc includes code from Newlib and AVR Libc." | ||
4 | SECTION = "libs" | ||
5 | |||
6 | # Newlib based code but GPL related bits removed, test/printf-tests.c and test/testcases.c | ||
7 | # are GPLv2 and GeneratePicolibcCrossFile.sh is AGPL3 but not part of the artifacts. | ||
8 | LICENSE = "BSD-2-Clause & BSD-3-Clause" | ||
9 | LIC_FILES_CHKSUM = " \ | ||
10 | file://COPYING.GPL2;md5=59530bdf33659b29e73d4adb9f9f6552 \ | ||
11 | file://COPYING.NEWLIB;md5=08ae03456feb75b81cfdb359e0f1ef85 \ | ||
12 | file://COPYING.picolibc;md5=e50fa9458a40929689861ed472d46bc7 \ | ||
13 | " | ||
14 | |||
15 | BASEVER = "1.8.6" | ||
16 | PV = "${BASEVER}+git" | ||
17 | SRC_URI = "git://github.com/picolibc/picolibc.git;protocol=https;branch=main" | ||
18 | SRCREV = "764ef4e401a8f4c6a86ab723533841f072885a5b" | ||
19 | |||
20 | B = "${WORKDIR}/build" | ||