meta data for this page
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
sw:yocto:bitbake:ci [2025/06/11 12:13] – created niziak | sw:yocto:bitbake:ci [2025/06/11 12:22] (current) – niziak | ||
---|---|---|---|
Line 18: | Line 18: | ||
* PREFERRED_VERSION_my_app = " | * PREFERRED_VERSION_my_app = " | ||
* create new meta layer for CI and | * create new meta layer for CI and | ||
- | |||
* Possible to pass env variables to bitbake: [[https:// | * Possible to pass env variables to bitbake: [[https:// | ||
Line 27: | Line 26: | ||
where config file [[https:// | where config file [[https:// | ||
is used: | is used: | ||
+ | |||
<file bash poky-floating-revisions.inc> | <file bash poky-floating-revisions.inc> | ||
SRCREV_pn-oh-puzzles ?= " | SRCREV_pn-oh-puzzles ?= " | ||
Line 33: | Line 33: | ||
</ | </ | ||
- | See: [[https:// | + | In latest Yocto it looks like: |
+ | |||
+ | <file bash poky-floating-revisions.inc> | ||
+ | # | ||
+ | # Set recipe versions to auto-rev for cutting edge testing | ||
+ | # | ||
+ | |||
+ | INHERIT += "poky-bleeding" | ||
+ | |||
+ | POKY_AUTOREV_RECIPES = "\ | ||
+ | libmatchbox \ | ||
+ | opkg-utils \ | ||
+ | matchbox-config-gtk \ | ||
+ | matchbox-desktop \ | ||
+ | matchbox-keyboard \ | ||
+ | matchbox-panel-2 \ | ||
+ | matchbox-terminal \ | ||
+ | matchbox-theme-sato \ | ||
+ | matchbox-wm \ | ||
+ | pseudo \ | ||
+ | puzzles \ | ||
+ | sato-icon-theme \ | ||
+ | sato-screenshot \ | ||
+ | settings-daemon \ | ||
+ | " | ||
+ | </ | ||
+ | * See: [[https:// | ||
+ | * See: [[https:// | ||