forked from ros/meta-ros
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a very basic kas config file to test stuff with gitlab action. I find it much easier than the mcf stuff. Signed-off-by: Matthias Schoepfer <[email protected]>
- Loading branch information
1 parent
b1d7ee2
commit f1adce3
Showing
3 changed files
with
78 additions
and
0 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
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,9 @@ | ||
header: | ||
version: 16 | ||
|
||
local_conf_header: | ||
bb_pressure_stuff: | | ||
BB_NICE_LEVEL = "11" | ||
BB_PRESSURE_MAX_CPU = "1000000" | ||
BB_PRESSURE_MAX_IO = "50000" | ||
BB_PRESSURE_MAX_MEMORY = "10000" |
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,54 @@ | ||
header: | ||
version: 16 | ||
|
||
build_system: openembedded | ||
|
||
machine: qemux86-64 | ||
distro: nodistro | ||
target: ros-image-core | ||
|
||
repos: | ||
openembedded-core: | ||
url: https://github.com/openembedded/openembedded-core.git | ||
branch: scarthgap | ||
path: layers/openembedded-core | ||
layers: | ||
meta: | ||
bitbake: | ||
url: https://github.com/openembedded/bitbake.git | ||
branch: "2.8" | ||
path: layers/openembedded-core/bitbake | ||
layers: | ||
bitbake: excluded | ||
meta-openembedded: | ||
url: https://github.com/openembedded/meta-openembedded.git | ||
branch: scarthgap | ||
path: layers/meta-openembedded | ||
layers: | ||
meta-oe: | ||
meta-python: | ||
meta-networking: | ||
meta-ros: | ||
layers: | ||
meta-ros-common: | ||
meta-ros2: | ||
meta-ros2-rolling: | ||
|
||
local_conf_header: | ||
standard: | ||
CONF_VERSION = "2" | ||
|
||
diskmon: | | ||
BB_DISKMON_DIRS ?= "\ | ||
STOPTASKS,${TMPDIR},1G,100K \ | ||
STOPTASKS,${DL_DIR},1G,100K \ | ||
STOPTASKS,${SSTATE_DIR},1G,100K \ | ||
STOPTASKS,/tmp,100M,100K \ | ||
HALT,${TMPDIR},100M,1K \ | ||
HALT,${DL_DIR},100M,1K \ | ||
HALT,${SSTATE_DIR},100M,1K \ | ||
HALT,/tmp,10M,1K" | ||
# Frankly, idk why but ipk gives me funny file not found errors | ||
package_class: | ||
PACKAGE_CLASSES ?= "package_rpm" |