blob: 0bead2ef6292278e2322fbbd75cb0f6af3138244 [file] [log] [blame]
Damjan Marion561f2732018-09-21 12:27:45 +02001
2Changes needed to DPDK are stored here as git patch files. Maintaining these
3files using git format-patch and git am will make it simpler to manage
4these changes. Patches made to DPDK should only be temporary until they are
5accepted upstream and made available in the next DPDK release.
6
7The following is the method used to generate these patches:
8
91. Git clone the package to a new directory:
10 # git clone http://dpdk.org/git/dpdk dpdk
11
122. Create a branch based on the release you wish to patch.
13Note, git tag will show you all the release tags. The following example is
14for release tag v2.2.0 and will create a branch named two_dot_two”.
15 # cd <root dir>
16 # git checkout -b two_dot_two v2.2.0
17
183. Apply all the existing patches to this new branch.
19 # git am </path/to/existing/patches/*>
20
214. Make your changes and commit your change to your repository.
22 # <edit files>
23 # git commit -s
24
255. Create the patch files with format-patch. This creates all the patch files
26for your branch (two_dot_two), with your latest commits as the last ones.
27 # git format-patch master..two_dot_two
28
296. Copy, add and commit the new patches into the patches directory.
30