diff options
Diffstat (limited to 'meta/classes-recipe')
-rw-r--r-- | meta/classes-recipe/baremetal-image.bbclass | 4 | ||||
-rw-r--r-- | meta/classes-recipe/cross-canadian.bbclass | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes-recipe/baremetal-image.bbclass b/meta/classes-recipe/baremetal-image.bbclass index 7938c0a83f..4afc171314 100644 --- a/meta/classes-recipe/baremetal-image.bbclass +++ b/meta/classes-recipe/baremetal-image.bbclass | |||
@@ -16,8 +16,8 @@ | |||
16 | # See meta-skeleton for a working example. | 16 | # See meta-skeleton for a working example. |
17 | 17 | ||
18 | 18 | ||
19 | # Toolchain should be baremetal or newlib based. | 19 | # Toolchain should be baremetal or newlib/picolibc based. |
20 | # TCLIBC="baremetal" or TCLIBC="newlib" | 20 | # TCLIBC="baremetal" or TCLIBC="newlib" or TCLIBC="picolibc" |
21 | COMPATIBLE_HOST:libc-musl:class-target = "null" | 21 | COMPATIBLE_HOST:libc-musl:class-target = "null" |
22 | COMPATIBLE_HOST:libc-glibc:class-target = "null" | 22 | COMPATIBLE_HOST:libc-glibc:class-target = "null" |
23 | 23 | ||
diff --git a/meta/classes-recipe/cross-canadian.bbclass b/meta/classes-recipe/cross-canadian.bbclass index 1670217d69..059d9aa95f 100644 --- a/meta/classes-recipe/cross-canadian.bbclass +++ b/meta/classes-recipe/cross-canadian.bbclass | |||
@@ -36,7 +36,7 @@ python () { | |||
36 | if d.getVar("MODIFYTOS") != "1": | 36 | if d.getVar("MODIFYTOS") != "1": |
37 | return | 37 | return |
38 | 38 | ||
39 | if d.getVar("TCLIBC") in [ 'baremetal', 'newlib' ]: | 39 | if d.getVar("TCLIBC") in [ 'baremetal', 'newlib', 'picolibc' ]: |
40 | return | 40 | return |
41 | 41 | ||
42 | tos = d.getVar("TARGET_OS") | 42 | tos = d.getVar("TARGET_OS") |