/openbmc/u-boot/tools/patman/ |
H A D | README | 53 For most cases of using patman for U-Boot development, patman can use the 63 During the first run patman creates a config file for you by taking the default 66 To add your own, create a file ~/.patman like this: 69 # patman alias file 86 by patman but are known to bounce you can add a [bounces] section to your 87 .patman file. Unlike the [alias] section these are simple key: value pairs 98 If you want to change the defaults for patman's command-line arguments, 99 you can add a [settings] section to your .patman file. This can be used 101 patman.py. For reference, the useful ones (at the moment) shown below 133 $ ./tools/patman/patman -n [all …]
|
H A D | setup.py | 4 setup(name='patman', 7 scripts=['patman'], 8 packages=['patman'], 9 package_dir={'patman': ''}, 10 package_data={'patman': ['README']},
|
H A D | settings.py | 21 the "dest" of the option parser from patman.py. 204 """Creates a config file under $(HOME)/.patman if it can't find one. 207 config_fname: Default config filename i.e., $(HOME)/.patman 224 print("Couldn't create patman config file\n") 242 The idea here is that the .patman file should be able to update 332 config_fname = '%s/.patman' % os.getenv('HOME') 335 print("No config file found ~/.patman\nCreating one...\n")
|
H A D | gitutil.py | 357 # For the duration of this doctest pretend that we ran patman with ./patman 359 >>> sys.argv[0] = './patman' 374 "m.poppins@cloud.net" --cc-cmd "./patman --cc-cmd cc-fname" cover p1 p2' 378 "m.poppins@cloud.net" --cc-cmd "./patman --cc-cmd cc-fname" p1' 382 'git send-email --annotate --to "this-is-me@me.com" --cc-cmd "./patman \ 388 "m.poppins@cloud.net" --cc-cmd "./patman --cc-cmd cc-fname" cover p1 p2' 528 os.path.join(GetTopLevel(), 'tools', 'patman')
|
H A D | func_test.py | 37 self.tmpdir = tempfile.mkdtemp(prefix='patman.') 74 """Tests the basic flow of patman 109 git log -n2 --reverse >/path/to/tools/patman/test/test01.txt 111 mv 00* /path/to/tools/patman/test
|
H A D | patman | 17 from patman import checkpatch, command, gitutil, patchstream, \
|
H A D | patman.py | 17 from patman import checkpatch, command, gitutil, patchstream, \
|
H A D | series.py | 224 fname = '/tmp/patman.%d' % os.getpid()
|
/openbmc/u-boot/tools/buildman/ |
H A D | func_test.py | 43 commit_shortlog = """4aca821 patman: Avoid changing the order of tags 44 39403bb patman: Use --no-pager' to stop git from forking a pager 45 db6e6f2 patman: Remove the -a option 46 f2ccf03 patman: Correct unit tests to run correctly 47 1d097f9 patman: Fix indentation in terminal.py 48 d073747 patman: Support the 'reverse' option for 'git log 71 patman: Support the 'reverse' option for 'git log' 90 patman: Fix indentation in terminal.py 106 patman: Correct unit tests to run correctly 111 ./tools/patman/patman --test [all …]
|
H A D | buildman | 15 # Bring in the patman libraries 17 sys.path.insert(1, os.path.join(our_path, '../patman'))
|
H A D | buildman.py | 15 # Bring in the patman libraries 17 sys.path.insert(1, os.path.join(our_path, '../patman'))
|
H A D | test.py | 12 # Bring in the patman libraries 14 sys.path.append(os.path.join(our_path, '../patman'))
|
/openbmc/u-boot/test/ |
H A D | run | 42 run_test "patman" ./tools/patman/patman --test
|
/openbmc/u-boot/tools/dtoc/ |
H A D | dtoc.py | 33 # Bring in the patman libraries 35 sys.path.append(os.path.join(our_path, '../patman')) 77 ['tools/patman/*.py', '*/fdt*', '*test*'], options.build_dir)
|
H A D | dtoc | 33 # Bring in the patman libraries 35 sys.path.append(os.path.join(our_path, '../patman')) 77 ['tools/patman/*.py', '*/fdt*', '*test*'], options.build_dir)
|
H A D | test_fdt | 13 # Bring in the patman libraries 15 for dirname in ['../patman', '..']: 515 ['tools/patman/*.py', '*test_fdt.py'], options.build_dir)
|
H A D | test_fdt.py | 13 # Bring in the patman libraries 15 for dirname in ['../patman', '..']: 515 ['tools/patman/*.py', '*test_fdt.py'], options.build_dir)
|
/openbmc/u-boot/tools/binman/ |
H A D | binman | 19 # Bring in the patman and dtoc libraries 21 for dirname in ['../patman', '../dtoc', '..', '../concurrencytest']: 115 ['*test*', '*binman.py', 'tools/patman/*', 'tools/dtoc/*'],
|
H A D | binman.py | 19 # Bring in the patman and dtoc libraries 21 for dirname in ['../patman', '../dtoc', '..', '../concurrencytest']: 115 ['*test*', '*binman.py', 'tools/patman/*', 'tools/dtoc/*'],
|
/openbmc/u-boot/doc/ |
H A D | bounces | 1 # List of addresses picked up by patman/get_maintainer.pl that are known to
|
H A D | git-mailrc | 124 alias patman uboot, sjg
|
/openbmc/u-boot/ |
H A D | .travis.yml | 148 ./tools/patman/patman --test &&
|
H A D | MAINTAINERS | 614 PATMAN 617 F: tools/patman/
|
/openbmc/u-boot/doc/driver-model/ |
H A D | spi-howto.txt | 589 You can use 'tools/patman/patman' to prepare, check and send patches for
|
/openbmc/u-boot/tools/ |
H A D | moveconfig.py | 317 sys.path.append(os.path.join(os.path.dirname(__file__), 'patman'))
|