| 1c4ea78a | 04-Oct-2012 |
Joe Hershberger <joe.hershberger@ni.com> |
tools: Add a README note about fw_printenv lock file
Add a mention of the lock file to the README for the fw_printenv tool.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com> Reported-by: Luka
tools: Add a README note about fw_printenv lock file
Add a mention of the lock file to the README for the fw_printenv tool.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com> Reported-by: Luka Perkov <uboot@lukaperkov.net>
show more ...
|
| 62a34a04 | 03-Oct-2012 |
Joe Hershberger <joe.hershberger@ni.com> |
tools/env: Remove unneeded complexity
The length included the name length, and then it was subtracted back out on each use. Now we don't include it in the first place. Also realloc as we process a
tools/env: Remove unneeded complexity
The length included the name length, and then it was subtracted back out on each use. Now we don't include it in the first place. Also realloc as we process arguments and eliminate memset. Use memcpy instead of manually copying each byte.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
show more ...
|
| 497f2053 | 03-Oct-2012 |
Joe Hershberger <joe.hershberger@ni.com> |
tools/env: Use a board-specific default env
Originally added in aa701b94336b358798d676eef12a7b90bdac23f5
Before this patch, there was a hard-coded env that was used as default if the env in flash i
tools/env: Use a board-specific default env
Originally added in aa701b94336b358798d676eef12a7b90bdac23f5
Before this patch, there was a hard-coded env that was used as default if the env in flash is detected as invalid. Now this tool (compiled for a given board) will share the default env with the u-boot for the board.
Fix include of config.h
Need to define "TEXT_BASE" when building the fw_env tool so that the default env will be correct for environments which use it.
Define __ASSEMBLY__ when calling #include <config.h> so that we only get #defines (all we're interested in).
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
show more ...
|
| 92eee7cd | 28-Sep-2012 |
Fabio Estevam <fabio.estevam@freescale.com> |
tools: Add cleanpatch
There are some errors reported by checkpatch.pl that can be easily cleaned up by using the cleanpatch tool.
Import the cleanpatch script from linux kernel 3.5.4 stable version
tools: Add cleanpatch
There are some errors reported by checkpatch.pl that can be easily cleaned up by using the cleanpatch tool.
Import the cleanpatch script from linux kernel 3.5.4 stable version as from the following commit:
commit cb3ed5b7e09c6c0462e396d55e3fecc0980a333a Author: H. Peter Anvin <hpa@zytor.com> Date: Fri May 25 17:58:26 2007 -0700
scripts: Make cleanfile/cleanpatch warn about long lines
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
show more ...
|
| afb9bf55 | 27-Sep-2012 |
Simon Glass <sjg@chromium.org> |
patman: Handle checkpatch.pl not providing file/line info
Sometimes we don't get a valid filename or line number from checkpatch.pl, for example if the patch is in a bad format. Deal with this by us
patman: Handle checkpatch.pl not providing file/line info
Sometimes we don't get a valid filename or line number from checkpatch.pl, for example if the patch is in a bad format. Deal with this by using a default value, rather than a stack trace.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
| 43de0244 | 18-Aug-2012 |
Otavio Salvador <otavio@ossystems.com.br> |
patman: Do not Cc addresses included in To list
In case an address is listed in the To list, those will be skipped on Cc list or user might end with a duplicated message.
This fixes the case when a
patman: Do not Cc addresses included in To list
In case an address is listed in the To list, those will be skipped on Cc list or user might end with a duplicated message.
This fixes the case when a tag points to same address used as series destination thus avoiding duplicated sending.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
show more ...
|
| d5f81d8a | 13-Aug-2012 |
Otavio Salvador <otavio@ossystems.com.br> |
patman: Allow for changelog use in first version of a series
When a patchset had a RFC series, a v1 might have a changelog of changes done since the RFC. The patch changes the range checked for chan
patman: Allow for changelog use in first version of a series
When a patchset had a RFC series, a v1 might have a changelog of changes done since the RFC. The patch changes the range checked for changelog and allow it to start for version 1.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Simon Glass <sjg@chromium.org>
show more ...
|
| c7379149 | 06-Aug-2012 |
Ilya Yanok <ilya.yanok@cogentembedded.com> |
patman: don't mess with signoffs
Currently patman assumes that there should be only one Signoff line and this is obviously incorrect: we often have to work with patches containing other people signo
patman: don't mess with signoffs
Currently patman assumes that there should be only one Signoff line and this is obviously incorrect: we often have to work with patches containing other people signoffs. Moreover, it's really desirable to preserve the comments between signoffs.
So until some sophisticated signoff processing will be developed I suggest just don't mess with signoffs at all and treat them like plain text lines. The only drawback I've found so far is the case where you have a patch with someones else signoff but not yours and also have to patman tags under signoff line. In this case you will get extra empty line between signoffs.
Signed-off-by: Ilya Yanok <ilya.yanok@cogentembedded.com>
show more ...
|
| 73fe07a7 | 06-Aug-2012 |
Ilya Yanok <ilya.yanok@cogentembedded.com> |
patman: don't mess with changelog
Don't try to sort and uniq changelog entries as this breaks multiline entries. It will be better to add some real multi-line support but for now just preserve the e
patman: don't mess with changelog
Don't try to sort and uniq changelog entries as this breaks multiline entries. It will be better to add some real multi-line support but for now just preserve the entries as is.
Signed-off-by: Ilya Yanok <ilya.yanok@cogentembedded.com>
show more ...
|
| a8840cb2 | 06-Aug-2012 |
Ilya Yanok <ilya.yanok@cogentembedded.com> |
patman: don't pick changes while processing patches
We already got all changes from git log output and the comment to the ProcessLine function clearly states that 'patch' mode is not for scanning ta
patman: don't pick changes while processing patches
We already got all changes from git log output and the comment to the ProcessLine function clearly states that 'patch' mode is not for scanning tags.
Signed-off-by: Ilya Yanok <ilya.yanok@cogentembedded.com>
show more ...
|