diff options
Diffstat (limited to 'scripts/combo-layer.conf.example')
-rw-r--r-- | scripts/combo-layer.conf.example | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/scripts/combo-layer.conf.example b/scripts/combo-layer.conf.example new file mode 100644 index 0000000000..09b94156fd --- /dev/null +++ b/scripts/combo-layer.conf.example | |||
@@ -0,0 +1,37 @@ | |||
1 | # component name | ||
2 | [bitbake] | ||
3 | # mandatory options | ||
4 | # git upstream uri | ||
5 | src_uri = git://git.openembedded.org/bitbake | ||
6 | |||
7 | # the directory to clone the component repo | ||
8 | local_repo_dir = /home/kyu3/src/test/bitbake | ||
9 | |||
10 | # the relative dir to commit the repo patch | ||
11 | # use "." if it is root dir | ||
12 | dest_dir = bitbake | ||
13 | |||
14 | # the updated revision last time. | ||
15 | # If empty, the tool will start from the first commit | ||
16 | last_revision = | ||
17 | |||
18 | # optional options | ||
19 | |||
20 | # file_filter: only include the interested file | ||
21 | # file_filter = [path] [path] ... | ||
22 | # example: | ||
23 | # file_filter = src/ : only include the subdir src | ||
24 | # file_filter = src/*.c : only include the src *.c file | ||
25 | # file_filter = src/main.c src/Makefile.am : only include these two files | ||
26 | |||
27 | # hook: if provided, the tool will call the hook to process the generated patch from upstream, | ||
28 | # and then apply the modified patch to combo repo | ||
29 | # the hook's parameter is: ./hook patchpath revision reponame | ||
30 | # example: | ||
31 | # hook = combo-layer-hook-default.sh | ||
32 | |||
33 | [oe-core] | ||
34 | src_uri = git://git.openembedded.org/openembedded-core | ||
35 | local_repo_dir = /home/kyu3/src/test/oecore | ||
36 | dest_dir = . | ||
37 | last_revision = | ||