diff options
author | Chris Packham <judge.packham@gmail.com> | 2015-07-22 21:21:46 +1200 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-07-28 10:36:25 -0600 |
commit | 488d19cbcace0b87a2d08881eab7356088198903 (patch) | |
tree | f9281221aab01bd319535e2c9f2b24d892c93e67 /tools/patman/README | |
parent | 1ed6648be08e4da76a08a09317932c73db0745ff (diff) | |
download | u-boot-488d19cbcace0b87a2d08881eab7356088198903.tar.gz |
patman: add distutils based installer
To make it easier to use patman on other projects add a distutils style
installer. Now patman can be installed with
cd u-boot/tools/patman && python setup.py install
There are also the usual distutils options for creating source/binary
distributions of patman.
Tested-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/README')
-rw-r--r-- | tools/patman/README | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/patman/README b/tools/patman/README index 27ec90acc8..5bd74c4f83 100644 --- a/tools/patman/README +++ b/tools/patman/README @@ -135,6 +135,17 @@ Similar to the above, but skip the first commit and take the next 5. This is useful if your top commit is for setting up testing. +How to install it +================= + +The most up to date version of patman can be found in the U-boot sources. +However to use it on other projects it may be more convenient to install it as +a standalone application. A distutils installer is included, this can be used +to install patman: + +$ cd tools/patman && python setup.py install + + How to add tags =============== |