<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/tools/env, branch v1.3.4-rc1</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/tools/env?h=v1.3.4-rc1</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/tools/env?h=v1.3.4-rc1'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2008-05-20T22:14:08Z</updated>
<entry>
<title>Big white-space cleanup.</title>
<updated>2008-05-20T22:14:08Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2008-05-20T14:00:29Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=53677ef18e25c97ac613349087c5cb33ae5a2741'/>
<id>urn:sha1:53677ef18e25c97ac613349087c5cb33ae5a2741</id>
<content type='text'>
This commit gets rid of a huge amount of silly white-space issues.
Especially, all sequences of SPACEs followed by TAB characters get
removed (unless they appear in print statements).

Also remove all embedded "vim:" and "vi:" statements which hide
indentation problems.

Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>Propagate Error Status to the Shell on fw_printenv Errors</title>
<updated>2008-05-09T21:40:40Z</updated>
<author>
<name>Grant Erickson</name>
<email>gerickson@nuovations.com</email>
</author>
<published>2008-05-07T03:16:15Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=bc11756daff89a3de09ca80adac962b88cf06e6e'/>
<id>urn:sha1:bc11756daff89a3de09ca80adac962b88cf06e6e</id>
<content type='text'>
Changed implementation such that fw_printenv returns failure status
when one or more specified variables do not exist or when incorrect
command syntax is used.

This aids scripting fw_printenv such that the script can key of the
return status rather than relying on standard error "scraping".

Signed-off-by: Grant Erickson &lt;gerickson@nuovations.com&gt;
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>Fix Compilation Errors with 'tools/env/fw_printenv'</title>
<updated>2008-05-09T21:04:41Z</updated>
<author>
<name>Grant Erickson</name>
<email>gerickson@nuovations.com</email>
</author>
<published>2008-05-06T23:18:00Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6'/>
<id>urn:sha1:f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6</id>
<content type='text'>
In the current top-of-tree, 1.3.3.-rc2, the optional tool
'tools/env/fw_printenv' fails to compile for two reasons:

1) The header watchdog.h cannot be found.
2) The header zlib.h is picked up from the tool chain rather than the
   project causing a prototype conflict for crc32.

This patch addresses both of these issues.

Platforms Tested On:
- AMCC "Kilauea"

Signed-off-by: Grant Erickson &lt;gerickson@nuovations.com&gt;
</content>
</entry>
<entry>
<title>Fix compile problem with new env code.</title>
<updated>2008-01-08T21:58:27Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2008-01-08T21:58:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=c83d7ca4dadd44ae430235077f63b64a11f36f6e'/>
<id>urn:sha1:c83d7ca4dadd44ae430235077f63b64a11f36f6e</id>
<content type='text'>
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>tools: fix fw_printenv tool to compile again</title>
<updated>2008-01-08T21:53:01Z</updated>
<author>
<name>Markus Klotzbücher</name>
<email>mk@denx.de</email>
</author>
<published>2007-11-27T09:23:20Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6de66b35426312a21174a9bf0576a094e2904bea'/>
<id>urn:sha1:6de66b35426312a21174a9bf0576a094e2904bea</id>
<content type='text'>
This patch updates the fw_printenv/fw_setenv userspace tool to include
the correct MTD header in order to compile against current kernel
headers. Backward compatibility is preserved by introducing an option
MTD_VERSION which can be set to "old" for compilation using the old MTD
headers. Along with this a number of warnings are fixed.

Signed-off-by: Markus Klotzbuecher &lt;mk@denx.de&gt;
</content>
</entry>
<entry>
<title>Add support for a saving build objects in a separate directory.</title>
<updated>2006-09-01T17:49:50Z</updated>
<author>
<name>Marian Balakowicz</name>
<email>m8@semihalf.com</email>
</author>
<published>2006-09-01T17:49:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=f93286397ed2a7084efb0362a43ee09f11702349'/>
<id>urn:sha1:f93286397ed2a7084efb0362a43ee09f11702349</id>
<content type='text'>
Modifications are based on the linux kernel approach and
support two use cases:

  1) Add O= to the make command line
  'make O=/tmp/build all'

  2) Set environement variable BUILD_DIR to point to the desired location
  'export BUILD_DIR=/tmp/build'
  'make'

The second approach can also be used with a MAKEALL script
'export BUILD_DIR=/tmp/build'
'./MAKEALL'

Command line 'O=' setting overrides BUILD_DIR environent variable.

When none of the above methods is used the local build is performed and
the object files are placed in the source directory.
</content>
</entry>
<entry>
<title>Fix array overflow with fw_setenv on uninitialised environment</title>
<updated>2006-03-12T22:27:46Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@pollux.denx.de</email>
</author>
<published>2006-03-12T22:27:46Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=f07217c9e2912af5b2f05d61829f62cc865b481f'/>
<id>urn:sha1:f07217c9e2912af5b2f05d61829f62cc865b481f</id>
<content type='text'>
Patch by Murray Jensen, 15 Jul 2005
</content>
</entry>
<entry>
<title>Change all '$(...)' variable references into '${...}'</title>
<updated>2005-11-20T20:40:11Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@pollux.(none)</email>
</author>
<published>2005-11-20T20:40:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=fe126d8b34d2e7c3c2dc1d4e61086018e016768c'/>
<id>urn:sha1:fe126d8b34d2e7c3c2dc1d4e61086018e016768c</id>
<content type='text'>
which makes the environment compatible with the hush shell.
WARNING: Support for the old '$(...)' syntax will be
discontinued in a later version.
</content>
</entry>
<entry>
<title>Fix error handling in tools/env/fw_env.c</title>
<updated>2005-09-24T23:20:38Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@pollux.(none)</email>
</author>
<published>2005-09-24T23:20:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e2146b6aea0de16e55530cc5ff58fb626d9870cd'/>
<id>urn:sha1:e2146b6aea0de16e55530cc5ff58fb626d9870cd</id>
<content type='text'>
Patch by Ara Avanesyan, 01 Feb 2005
</content>
</entry>
<entry>
<title>* Code cleanup, mostly for GCC-3.3.x</title>
<updated>2004-12-31T09:32:47Z</updated>
<author>
<name>wdenk</name>
<email>wdenk</email>
</author>
<published>2004-12-31T09:32:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e2ffd59b4d93c9149de1caaa087371b0cfc512c9'/>
<id>urn:sha1:e2ffd59b4d93c9149de1caaa087371b0cfc512c9</id>
<content type='text'>
* Cleanup confusing use of CONFIG_ETH*ADDR - ust his only to
  pre-define a MAC address; use CONFIG_HAS_ETH* to enable support for
  additional ethernet addresses.

* Cleanup drivers/i82365.c - avoid duplication of code

* Fix bogus "cannot span across banks" flash error message

* Add support for CompactFlash for the CPC45 Board.
</content>
</entry>
</feed>
