Re: [U-Boot] [PATCH 1/6] moveconfig: Support providing a path to the defconfig files

2017-05-19 Thread Masahiro Yamada
> if not matched: > -print >> sys.stderr, "warning: %s:%d: no defconfig matched '%s'" > % \ > - (defconfigs_file, i + 1, > line) > - > +print >> sys.stderr, ("warning: %s:%d: no defconfig matched > '%s'" % > +

[U-Boot] [PATCH 1/6] moveconfig: Support providing a path to the defconfig files

2017-05-15 Thread Simon Glass
It is convenient to provide the full patch to the defconfig files in some situations, e.g. when the file was generated by a shell command (e.g. 'ls configs/zynq*'). Add support for this, and move the globbing code into a function with its own documentation. Signed-off-by: Simon Glass --- tools