-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add support for additional menus (#154)
* feat: Add support for additional menus * fix: Add package recognition
- Loading branch information
1 parent
719cc1c
commit bc86864
Showing
14 changed files
with
296 additions
and
20 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
Empty file.
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,30 @@ | ||
{ | ||
"notes": [ | ||
"This is a minimal example for a linux platform.", | ||
"It is meant to split common parts to a separate menu", | ||
"Therefore you can have the same base for different", | ||
"targets and machines.", | ||
"Please refer to the README.md file for instruction on how to build the image" | ||
], | ||
"sources": [ | ||
{ | ||
"url": "https://git.yoctoproject.org/poky", | ||
"branch": "kirkstone", | ||
"rev": "kirkstone-4.0.18" | ||
}, | ||
{ | ||
"url": "https://github.com/openembedded/meta-openembedded", | ||
"branch": "kirkstone", | ||
"rev": "8609de00952d65bb813a48c535c937324efeb18a", | ||
"dir": "meta-openembedded" | ||
} | ||
], | ||
"layers": [ | ||
"poky/meta", | ||
"poky/meta-poky", | ||
"poky/meta-yocto-bsp", | ||
"meta-openembedded/meta-oe", | ||
"meta-openembedded/meta-networking", | ||
"meta-openembedded/meta-python" | ||
] | ||
} |
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,30 @@ | ||
{ | ||
"notes": [ | ||
"This is the specialization for the general platform menu.", | ||
"Please refer to the README.md file for instruction on how to build the image" | ||
], | ||
"sources": [ | ||
{ | ||
"url": "https://github.com/rauc/meta-rauc", | ||
"branch": "kirkstone", | ||
"rev": "ed6dc67ffb143a4c4fac01e0b7e8a60fc6260b85", | ||
"dir": "meta-rauc" | ||
} | ||
], | ||
"layers": [ | ||
"meta-rauc" | ||
], | ||
"builds": { | ||
"YOURBUILD": { | ||
"notes": [ | ||
"The default `core-image-minimal` image is used for bitbake." | ||
], | ||
"target": [ | ||
"core-image-minimal" | ||
], | ||
"local.conf": [ | ||
"MACHINE = 'qemux86'" | ||
] | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -42,3 +42,4 @@ test(basic/inheritance) | |
test(basic/shell) | ||
test(basic/config) | ||
test(basic/log) | ||
test(basic/additional-menus) |
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,33 @@ | ||
{ | ||
"notes": [ | ||
"This is an additional note.", | ||
], | ||
"sources": [ | ||
{ | ||
"url": "https://SOMEURL1.test/meta-stuff1", | ||
"rev": "SOMEREV1", | ||
"dir": "meta-stuff1" | ||
}, | ||
{ | ||
"url": "https://SOMEURL2.test/meta-stuff2", | ||
"rev": "SOMEREV2", | ||
"dir": "meta-stuff2" | ||
}, | ||
], | ||
"layers": [ | ||
"meta-stuff1", | ||
"meta-stuff2", | ||
], | ||
"builds": { | ||
"some-build": { | ||
"notes": [ | ||
"A build note." | ||
], | ||
"target": ["sometarget"], | ||
"local.conf": [ | ||
"MACHINE = 'some-machine'", | ||
"DISTRO = 'some-distro'" | ||
] | ||
} | ||
} | ||
} |
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,23 @@ | ||
{ | ||
"notes": [ | ||
"This is a base note.", | ||
], | ||
"sources": [ | ||
{ | ||
"url": "https://git.yoctoproject.org/poky", | ||
"branch": "kirkstone", | ||
"rev": "kirkstone-4.0.14" | ||
}, | ||
{ | ||
"url": "https://github.com/openembedded/meta-openembedded", | ||
"branch": "kirkstone", | ||
"rev": "8609de00952d65bb813a48c535c937324efeb18a", | ||
"dir": "meta-openembedded" | ||
}, | ||
], | ||
"layers": [ | ||
"poky/meta", | ||
"poky/meta-poky", | ||
"meta-openembedded/meta-oe", | ||
], | ||
} |
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,50 @@ | ||
{ | ||
"notes": [ | ||
"This is a base note.", | ||
"This is an additional note." | ||
], | ||
"sources": [ | ||
{ | ||
"url": "https://git.yoctoproject.org/poky", | ||
"branch": "kirkstone", | ||
"rev": "kirkstone-4.0.14" | ||
}, | ||
{ | ||
"url": "https://github.com/openembedded/meta-openembedded", | ||
"branch": "kirkstone", | ||
"rev": "8609de00952d65bb813a48c535c937324efeb18a", | ||
"dir": "meta-openembedded" | ||
}, | ||
{ | ||
"url": "https://SOMEURL1.test/meta-stuff1", | ||
"rev": "SOMEREV1", | ||
"dir": "meta-stuff1" | ||
}, | ||
{ | ||
"url": "https://SOMEURL2.test/meta-stuff2", | ||
"rev": "SOMEREV2", | ||
"dir": "meta-stuff2" | ||
} | ||
], | ||
"layers": [ | ||
"poky/meta", | ||
"poky/meta-poky", | ||
"meta-openembedded/meta-oe", | ||
"meta-stuff1", | ||
"meta-stuff2" | ||
], | ||
"builds": { | ||
"some-build": { | ||
"notes": [ | ||
"A build note." | ||
], | ||
"target": [ | ||
"sometarget" | ||
], | ||
"local.conf": [ | ||
"MACHINE = 'some-machine'", | ||
"DISTRO = 'some-distro'" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.