<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/lib_ppc/Makefile, branch v2009.06-rc2</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/'/>
<entry>
<title>Big white-space cleanup.</title>
<updated>2008-05-20T22:14:08+00:00</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2008-05-20T14:00:29+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=53677ef18e25c97ac613349087c5cb33ae5a2741'/>
<id>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>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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;
</pre>
</div>
</content>
</entry>
<entry>
<title>[Makefile] Sort COBJS in lib_&lt;arch&gt; Makefiles</title>
<updated>2008-02-27T10:00:47+00:00</updated>
<author>
<name>Marian Balakowicz</name>
<email>m8@semihalf.com</email>
</author>
<published>2008-02-27T10:00:47+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=823afe7cefe00dafefc6696c1cc7aa828c394234'/>
<id>823afe7cefe00dafefc6696c1cc7aa828c394234</id>
<content type='text'>
Signed-off-by: Marian Balakowicz &lt;m8@semihalf.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Marian Balakowicz &lt;m8@semihalf.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of /home/git/u-boot</title>
<updated>2008-02-21T16:18:01+00:00</updated>
<author>
<name>Marian Balakowicz</name>
<email>m8@semihalf.com</email>
</author>
<published>2008-02-21T16:18:01+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=20c93959330aba8b5bbdbfde1ef319e99eba235d'/>
<id>20c93959330aba8b5bbdbfde1ef319e99eba235d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ppc: Refactor cache routines, so there is only one common set.</title>
<updated>2008-02-14T21:00:41+00:00</updated>
<author>
<name>Rafal Jaworowski</name>
<email>raj@semihalf.com</email>
</author>
<published>2008-01-15T11:52:31+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=f57d7d364ce189e39b0a64338d2f8012c074a2bd'/>
<id>f57d7d364ce189e39b0a64338d2f8012c074a2bd</id>
<content type='text'>
Signed-off-by: Rafal Jaworowski &lt;raj@semihalf.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Rafal Jaworowski &lt;raj@semihalf.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[new uImage] Rename architecture specific bootm code files</title>
<updated>2008-02-07T00:12:57+00:00</updated>
<author>
<name>Marian Balakowicz</name>
<email>m8@semihalf.com</email>
</author>
<published>2008-01-31T12:20:06+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=4a995edec1ac163d9326d143ffe2b47e7543407f'/>
<id>4a995edec1ac163d9326d143ffe2b47e7543407f</id>
<content type='text'>
Implementation of the do_bootm_linux() and other bootm helper routines is
architecture specific code. As such it resides in lib_&lt;arch&gt; directories
in files named &lt;arch&gt;_linux.c

This patch renames those files to a more clear and accurate
lib_&lt;arch&gt;/bootm.c form.

List of the renamed files:
   lib_arm/armlinux.c -&gt; lib_arm/bootm.c
   lib_avr32/avr32_linux.c -&gt; lib_avr32/bootm.c
   lib_blackfin/bf533_linux.c -&gt; lib_blackfin/bootm.c
   lib_i386/i386_linux.c -&gt; lib_i386/bootm.c
   lib_m68k/m68k_linux.c -&gt; lib_m68k/bootm.c
   lib_microblaze/microblaze_linux.c -&gt; lib_microblaze/bootm.c
   lib_mips/mips_linux.c -&gt; lib_mips/bootm.c
   lib_nios/nios_linux.c -&gt; lib_nios/bootm.c
   lib_nios2/nios_linux.c -&gt; lib_nios2/bootm.c
   lib_ppc/ppc_linux.c -&gt; lib_ppc/bootm.c
   lib_sh/sh_linux.c -&gt; lib_sh/bootm.c

Signed-off-by: Marian Balakowicz &lt;m8@semihalf.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Implementation of the do_bootm_linux() and other bootm helper routines is
architecture specific code. As such it resides in lib_&lt;arch&gt; directories
in files named &lt;arch&gt;_linux.c

This patch renames those files to a more clear and accurate
lib_&lt;arch&gt;/bootm.c form.

List of the renamed files:
   lib_arm/armlinux.c -&gt; lib_arm/bootm.c
   lib_avr32/avr32_linux.c -&gt; lib_avr32/bootm.c
   lib_blackfin/bf533_linux.c -&gt; lib_blackfin/bootm.c
   lib_i386/i386_linux.c -&gt; lib_i386/bootm.c
   lib_m68k/m68k_linux.c -&gt; lib_m68k/bootm.c
   lib_microblaze/microblaze_linux.c -&gt; lib_microblaze/bootm.c
   lib_mips/mips_linux.c -&gt; lib_mips/bootm.c
   lib_nios/nios_linux.c -&gt; lib_nios/bootm.c
   lib_nios2/nios_linux.c -&gt; lib_nios2/bootm.c
   lib_ppc/ppc_linux.c -&gt; lib_ppc/bootm.c
   lib_sh/sh_linux.c -&gt; lib_sh/bootm.c

Signed-off-by: Marian Balakowicz &lt;m8@semihalf.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c</title>
<updated>2008-02-07T00:12:54+00:00</updated>
<author>
<name>Marian Balakowicz</name>
<email>m8@semihalf.com</email>
</author>
<published>2008-01-08T17:11:43+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=5d3cc55ecbae277e08f5ff771da20b1d6a36ec36'/>
<id>5d3cc55ecbae277e08f5ff771da20b1d6a36ec36</id>
<content type='text'>
PPC implementation of do_bootm_linux() routine is moved to
a dedicated file lib_ppc/ppc_linux.c

Signed-off-by: Marian Balakowicz &lt;m8@semihalf.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PPC implementation of do_bootm_linux() routine is moved to
a dedicated file lib_ppc/ppc_linux.c

Signed-off-by: Marian Balakowicz &lt;m8@semihalf.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Move "ar" flags to config.mk to allow for silent "make -s"</title>
<updated>2006-10-08T23:02:05+00:00</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@atlas.denx.de</email>
</author>
<published>2006-10-08T23:02:05+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=2b208f5308ae0c72a6840180e59ed1ab4f9b69fc'/>
<id>2b208f5308ae0c72a6840180e59ed1ab4f9b69fc</id>
<content type='text'>
Based on patch by Mike Frysinger, 20 Jun 2006
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Based on patch by Mike Frysinger, 20 Jun 2006
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for a saving build objects in a separate directory.</title>
<updated>2006-09-01T17:49:50+00:00</updated>
<author>
<name>Marian Balakowicz</name>
<email>m8@semihalf.com</email>
</author>
<published>2006-09-01T17:49:50+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=f93286397ed2a7084efb0362a43ee09f11702349'/>
<id>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>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.
</pre>
</div>
</content>
</entry>
<entry>
<title>* Patch by Gleb Natapov, 19 Sep 2003:</title>
<updated>2003-12-06T19:49:23+00:00</updated>
<author>
<name>wdenk</name>
<email>wdenk</email>
</author>
<published>2003-12-06T19:49:23+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=a8c7c708a9e0051c6358718c53572a4681eaa22b'/>
<id>a8c7c708a9e0051c6358718c53572a4681eaa22b</id>
<content type='text'>
  Move most of the timer interrupt related PPC code to ppc_lib/interrupts.c

* Patch by Anders Larsen, 17 Sep 2003:
  Bring ARM memory layout in sync with the documentation:
  stack and malloc-heap are now located _below_ the U-Boot code
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  Move most of the timer interrupt related PPC code to ppc_lib/interrupts.c

* Patch by Anders Larsen, 17 Sep 2003:
  Bring ARM memory layout in sync with the documentation:
  stack and malloc-heap are now located _below_ the U-Boot code
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial revision</title>
<updated>2002-08-14T08:04:29+00:00</updated>
<author>
<name>wdenk</name>
<email>wdenk</email>
</author>
<published>2002-08-14T08:04:29+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=0c8959d6417011f00295bd0591dfa02f140da2e7'/>
<id>0c8959d6417011f00295bd0591dfa02f140da2e7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
