-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Bensuperpc <[email protected]>
- Loading branch information
1 parent
5889c35
commit 8f93e8e
Showing
49 changed files
with
269 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"menu": "raylib.json", | ||
"layer-dir": "layers", | ||
"build-dir": "builds", | ||
"dl-dir": "downloads", | ||
"sstate-dir": "sstate-cache", | ||
"cooker-config-version": 1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
builds/* | ||
sstate-cache/* | ||
downloads/* | ||
.vscode/settings.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule yocto-docs
updated
from 4924c9 to 29cee5
Submodule meta-raylib
added at
220a85
Submodule bitbake
added at
966f25
Submodule meta-amd
updated
from 02fcb9 to 9a7860
Submodule meta-arm
updated
from e91489 to 571242
Submodule meta-atmel
updated
67 files
Submodule meta-aws
updated
53 files
Submodule meta-browser
updated
98 files
Submodule meta-clang
updated
15 files
Submodule meta-debian
updated
21 files
Submodule meta-freescale
updated
from 1366c9 to 967c45
Submodule meta-intel
updated
from 6a3d31 to 2d8d97
Submodule meta-linux-mainline
updated
from 2fd639 to e3a938
Submodule meta-mono
updated
11 files
Submodule meta-odroid
updated
24 files
Submodule meta-openembedded
updated
from 9fc1b0 to 098dc6
Submodule meta-qt5
updated
from 434bcd to 2adc71
Submodule meta-qt6
updated
from b09103 to 7e80a1
Submodule meta-raspberrypi
updated
from 482d86 to b859bc
Submodule meta-raspberrypi-baremetal
updated
7 files
Submodule meta-riscv
updated
54 files
Submodule meta-rockchip
updated
from 782e9f to 655ba3
Submodule meta-rust
updated
14 files
Submodule meta-rust-bin
updated
13 files
Submodule meta-security
updated
from aca6d4 to b2e151
Submodule meta-selinux
updated
from e44d4f to 7d5dc4
Submodule meta-smartphone
updated
18 files
Submodule meta-tegra
updated
58 files
Submodule meta-tensorflow
updated
from 9c0916 to f5f218
Submodule meta-ti
updated
from 0c8721 to 0fdb49
Submodule meta-yocto
updated
from a0077d to f148b0
Submodule openembedded-core
updated
from 30a9f7 to 38a5fc
Submodule poky
updated
from 561c63 to 611826
Submodule yocto-cooker
added at
1fc016
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"sources" : [ | ||
{ "url": "git://git.openembedded.org/meta-openembedded", "branch": "kirkstone", "rev": "9c5541f7e18a1fac3b8dea71e1ebb8398d58e6ff" }, | ||
{ "url": "git://git.yoctoproject.org/poky", "branch": "kirkstone", "rev": "ef5214f584765810e94a6f61585ccbcd9b909502" } | ||
], | ||
|
||
"layers" : [ | ||
"poky/meta", | ||
"poky/meta-poky", | ||
"poky/meta-yocto-bsp", | ||
"meta-openembedded/meta-oe" | ||
], | ||
|
||
"local.conf": [ | ||
"BB_NUMBER_THREADS = '2' ", | ||
"BB_NUMBER_PARSE_THREADS = '2' ", | ||
"PARALLEL_MAKE = '-j 2' ", | ||
"PARALLEL_MAKEINST = '-j 2' ", | ||
"INHERIT += ' ccache'" | ||
], | ||
|
||
"builds" : { | ||
"base-qemuarm64": { | ||
"target" : "core-image-base", | ||
"local.conf": [ | ||
"MACHINE = 'qemuarm64' ", | ||
"DISTRO = 'poky' ", | ||
"PACKAGE_CLASSES = 'package_rpm' ", | ||
"EXTRA_IMAGE_FEATURES = 'debug-tweaks package-management' ", | ||
"IMAGE_INSTALL:append = ' nano' ", | ||
"IMAGE_FEATURES:append = ' empty-root-password' " | ||
] | ||
}, | ||
"sato-qemuarm64": { | ||
"target" : "core-image-sato", | ||
"local.conf": [ | ||
"MACHINE = 'qemuarm64' ", | ||
"DISTRO = 'poky' ", | ||
"PACKAGE_CLASSES = 'package_rpm' ", | ||
"EXTRA_IMAGE_FEATURES = 'debug-tweaks splash package-management' ", | ||
"IMAGE_INSTALL:append = ' nano' ", | ||
"IMAGE_FEATURES:append = ' empty-root-password' " | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"sources" : [ | ||
{ "url": "git://git.openembedded.org/meta-openembedded", "branch": "kirkstone", "rev": "9c5541f7e18a1fac3b8dea71e1ebb8398d58e6ff" }, | ||
{ "url": "git://git.yoctoproject.org/poky", "branch": "kirkstone", "rev": "ef5214f584765810e94a6f61585ccbcd9b909502" } | ||
], | ||
|
||
"layers" : [ | ||
"poky/meta", | ||
"poky/meta-poky", | ||
"poky/meta-yocto-bsp", | ||
"meta-openembedded/meta-oe" | ||
], | ||
|
||
"local.conf": [ | ||
"BB_NUMBER_THREADS = '2' ", | ||
"BB_NUMBER_PARSE_THREADS = '2' ", | ||
"PARALLEL_MAKE = '-j 2' ", | ||
"PARALLEL_MAKEINST = '-j 2' ", | ||
"INHERIT += ' ccache'" | ||
], | ||
|
||
"builds" : { | ||
"base-qemuriscv64": { | ||
"target" : "core-image-base", | ||
"local.conf": [ | ||
"MACHINE = 'qemuriscv64' ", | ||
"DISTRO = 'poky' ", | ||
"PACKAGE_CLASSES = 'package_rpm' ", | ||
"EXTRA_IMAGE_FEATURES = 'debug-tweaks package-management' ", | ||
"IMAGE_INSTALL:append = ' nano' ", | ||
"IMAGE_FEATURES:append = ' empty-root-password' " | ||
] | ||
}, | ||
"sato-qemuriscv64": { | ||
"target" : "core-image-sato", | ||
"local.conf": [ | ||
"MACHINE = 'qemuriscv64' ", | ||
"DISTRO = 'poky' ", | ||
"PACKAGE_CLASSES = 'package_rpm' ", | ||
"EXTRA_IMAGE_FEATURES = 'debug-tweaks splash package-management' ", | ||
"IMAGE_INSTALL:append = ' nano' ", | ||
"IMAGE_FEATURES:append = ' empty-root-password' " | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"sources" : [ | ||
{ "url": "git://git.openembedded.org/meta-openembedded", "branch": "kirkstone", "rev": "9c5541f7e18a1fac3b8dea71e1ebb8398d58e6ff" }, | ||
{ "url": "git://git.yoctoproject.org/poky", "branch": "kirkstone", "rev": "ef5214f584765810e94a6f61585ccbcd9b909502" } | ||
], | ||
|
||
"layers" : [ | ||
"poky/meta", | ||
"poky/meta-poky", | ||
"poky/meta-yocto-bsp", | ||
"meta-openembedded/meta-oe" | ||
], | ||
|
||
"local.conf": [ | ||
"BB_NUMBER_THREADS = '2' ", | ||
"BB_NUMBER_PARSE_THREADS = '2' ", | ||
"PARALLEL_MAKE = '-j 2' ", | ||
"PARALLEL_MAKEINST = '-j 2' ", | ||
"INHERIT += ' ccache'" | ||
], | ||
|
||
"builds" : { | ||
"base-qemux86-64": { | ||
"target" : "core-image-base", | ||
"local.conf": [ | ||
"MACHINE = 'qemux86-64' ", | ||
"DISTRO = 'poky' ", | ||
"PACKAGE_CLASSES = 'package_rpm' ", | ||
"EXTRA_IMAGE_FEATURES = 'debug-tweaks splash package-management' ", | ||
"IMAGE_INSTALL:append = ' nano' ", | ||
"IMAGE_FEATURES:append = ' empty-root-password' " | ||
] | ||
}, | ||
"sato-qemux86-64": { | ||
"target" : "core-image-sato", | ||
"local.conf": [ | ||
"MACHINE = 'qemux86-64' ", | ||
"DISTRO = 'poky' ", | ||
"PACKAGE_CLASSES = 'package_rpm' ", | ||
"EXTRA_IMAGE_FEATURES = 'debug-tweaks splash package-management' ", | ||
"IMAGE_INSTALL:append = ' nano' ", | ||
"IMAGE_FEATURES:append = ' empty-root-password' " | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.