blob: c21165005e67a817003aa24beb7e13a9b8e32b72 (
plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
# Working on the chinook branch
## Intro
This is a quick howto for working on the 'Charming Chinook' branch. Working on the branch
is easy as we maintain all changes through gerrit.automotivelinux.org.
If you are unfamiliar with gerrit, please read these fine how-to pages were put together from the
Mediawiki community here: <https://www.mediawiki.org/wiki/Gerrit/Tutorial> . This covers the basics very well. Of course we'll work with gerrit.automotivelinux.org instead so apply likewise.
## Installation of tools
Install `git` with your distributions package manager.
A very useful tool is "git-review" (cmdline is then `git review`).
Install it from your distro or with `sudo pip install git-review`.
## Prerequisites
It is important to setup git and gerrit properly (see the Tutorial page mentioned above):
* prereq #1) make sure git is properly setup with name/email
* prereq #2) make sure your ssh key is in gerrit.automotivelinux.org
## Cloning, editing and submitting for review
Follow these steps to submit a change to the 'Charming Chinook' branch:
1. cloning the (tip of the) branch
```bash
repo init -b chinook -m default.xml -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo
repo sync
```
1. Change the recipe in question (one change at a time - small is better)
```bash
vi recipe-foo/bar/baz.bb
```
1. Do a a few builds and tests (try 2 architectures if possible)
```bash
source meta-agl/scripts/aglsetup.sh .... agl-all-features
bitbake agl-demo-platform
```
1. once satisfied do commit your change as usual in git
Make sure to do a proper commit message:
<http://chris.beams.io/posts/git-commit/>
```bash
git commit -s
<enter proper commit message>
```
1. All repos have .gitreview files already, so now it is just
```bash
git review
```
1. (optional, but highly recommended!) Reset to gerrit/chinook
```bash
git checkout chinook`
git reset --hard gerrit/chinook
```
It helps during the review process as gerrit would otherwise enforce
the whole series of patches to be reviewed/merged together (2nd depends on 1st patch).
1. Rinse (=6) and repeat (=2-5)
## Using git review to review/test-build a specific change in gerrit
'git review' is also useful if you want to review a change.
Example for meta-agl:
```bash
repo init -b chinook -m default.xml -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo
repo sync
cd meta-agl/
git review -d 8105
```
This will pull-down change 8105. Now we can build with it applied:
```bash
cd ..
source ...
bitbake ...
```
## Using gerrit to amend a changeset while in review
The same workflow applies if you want to _amend_ a changeset while it is in review (not merged, yet):
```bash
cd meta-agl/
git review -d 8105
```
This will pull-down change 8105. You can now edit a file:
```bash
vi recipes-foo/bar/baz.bb
git commit -s --amend
```
Don't forget a test build
```bash
cd ..
source meta-agl/scripts/aglsetup.sh ..... agl-all-features
bitbake ... # e.g. agl-demo-platform
```
Finally call git review to upload the change
```bash
git review
```
|