forked from exactassembly/yocto-vscode-howto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cooker-menu.json
53 lines (50 loc) · 1.4 KB
/
cooker-menu.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"notes" : [
"Please refer to the README file for instruction on how to build the image"
],
"sources" : [
{ "url": "git://git.yoctoproject.org/poky",
"branch": "mickledore", "rev":"mickledore-4.2.3" },
{ "url": "git://git.openembedded.org/meta-openembedded",
"branch": "mickledore", "rev":"57c516973978ca2667339bf1aae7dc722b5bcac7" },
{ "url": "git://git.yoctoproject.org/meta-intel-fpga",
"branch": "mickledore", "rev":"243d252bd1d872b000933782490e5f9b8523f180" }
],
"layers" : [
"poky/meta",
"poky/meta-poky",
"poky/meta-yocto-bsp",
"meta-openembedded/meta-oe",
"meta-openembedded/meta-python",
"meta-openembedded/meta-multimedia"
],
"builds" : {
"mitysom5cse": {
"target": "sdimage-mitysom5cse",
"layers": [
"meta-intel-fpga",
"meta-cl-mitysom",
"meta-howto"
],
"local.conf": [
"MACHINE = 'mitysom5cse' ",
"APPLICATION_NAME = 'howto' ",
"ENABLE_UART = '1' "
]
},
"mitysoma10s": {
"target": "sdimage-mitysoma10s",
"layers": [
"meta-intel-fpga",
"meta-cl-mitysom",
"meta-howto"
],
"local.conf": [
"MACHINE = 'mitysoma10s' ",
"APPLICATION_NAME = 'howto' ",
"ENABLE_UART = '1' ",
"USER_KERNEL_DEVICETREE = 'mitysom_a10s_user_empty.dtb' "
]
}
}
}