<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/board/cm4008/flash.c, branch main</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/board/cm4008/flash.c?h=main</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/board/cm4008/flash.c?h=main'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2015-02-24T22:07:11Z</updated>
<entry>
<title>ARM: remove cm4008 and cm41xx board support</title>
<updated>2015-02-24T22:07:11Z</updated>
<author>
<name>Masahiro Yamada</name>
<email>yamada.m@jp.panasonic.com</email>
</author>
<published>2015-02-24T02:45:07Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a2f39e830e509cb63aad2c752573d1c871a1d4bf'/>
<id>urn:sha1:a2f39e830e509cb63aad2c752573d1c871a1d4bf</id>
<content type='text'>
These are still non-generic boards.

Signed-off-by: Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;
Cc: Greg Ungerer &lt;greg.ungerer@opengear.com&gt;
Acked-by: Marek Vasut &lt;marex@denx.de&gt;
</content>
</entry>
<entry>
<title>arm: remove unneeded symbol offsets and _TEXT_BASE</title>
<updated>2014-02-26T20:18:12Z</updated>
<author>
<name>Albert ARIBAUD</name>
<email>albert.u.boot@aribaud.net</email>
</author>
<published>2014-02-22T16:53:43Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=b60eff31f3bd71a6f14b6c6efc8ad5fb3705de6d'/>
<id>urn:sha1:b60eff31f3bd71a6f14b6c6efc8ad5fb3705de6d</id>
<content type='text'>
Remove the last uses of symbol offsets in ARM U-Boot.
Remove some needless uses of _TEXT_BASE.
Remove all _TEXT_BASE definitions.

Signed-off-by: Albert ARIBAUD &lt;albert.u.boot@aribaud.net&gt;
</content>
</entry>
<entry>
<title>Add GPL-2.0+ SPDX-License-Identifier to source files</title>
<updated>2013-07-24T13:44:38Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2013-07-08T07:37:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=1a4596601fd395f3afb8f82f3f840c5e00bdd57a'/>
<id>urn:sha1:1a4596601fd395f3afb8f82f3f840c5e00bdd57a</id>
<content type='text'>
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
[trini: Fixup common/cmd_io.c]
Signed-off-by: Tom Rini &lt;trini@ti.com&gt;
</content>
</entry>
<entry>
<title>arm: Use sections header to obtain link symbols</title>
<updated>2013-03-15T20:13:58Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2013-03-05T14:39:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e103b7ae903dffc8e35cd676c1a72712dec14382'/>
<id>urn:sha1:e103b7ae903dffc8e35cd676c1a72712dec14382</id>
<content type='text'>
Include this header to get access to link symbols, which are otherwise
removed.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>board/cm4008/flash.c: Fix GCC 4.6 warnings</title>
<updated>2011-11-16T20:35:31Z</updated>
<author>
<name>Anatolij Gustschin</name>
<email>agust@denx.de</email>
</author>
<published>2011-11-15T13:20:57Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=33ad5ef059a82a159de39efdb42c4fef88c542fc'/>
<id>urn:sha1:33ad5ef059a82a159de39efdb42c4fef88c542fc</id>
<content type='text'>
Fix:
flash.c: In function 'flash_erase':
flash.c:209:6: warning: variable 'flag' set but not used
[-Wunused-but-set-variable]
flash.c: In function 'write_data':
flash.c:373:6: warning: variable 'flag' set but not used
[-Wunused-but-set-variable]

Signed-off-by: Anatolij Gustschin &lt;agust@denx.de&gt;
</content>
</entry>
<entry>
<title>CM4000: fix broken flash base for OpenGear boards</title>
<updated>2011-09-09T22:12:15Z</updated>
<author>
<name>Greg Ungerer</name>
<email>greg.ungerer@opengear.com</email>
</author>
<published>2011-09-09T12:23:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=297f18ac0fbeef30ba1c17fe131ca75f09a6e7cf'/>
<id>urn:sha1:297f18ac0fbeef30ba1c17fe131ca75f09a6e7cf</id>
<content type='text'>
Use _bss_start_ofs as the size of the boot loader code+data that we want
to protect in the flash. This replaces use of the no longer defined
_armboot_start.

Fixes:

flash.c: In function ‘flash_init’:
flash.c:75: error: ‘_bss_start’ undeclared (first use in this function)
flash.c:75: error: (Each undeclared identifier is reported only once
flash.c:75: error: for each function it appears in.)
flash.c:75: error: ‘_armboot_start’ undeclared (first use in this function)

Signed-off-by: &lt;greg.ungerer@opengear.com&gt;
</content>
</entry>
<entry>
<title>Timer: Fix misuse of ARM *timer_masked() functions outside arch/arm</title>
<updated>2011-07-16T09:55:00Z</updated>
<author>
<name>Graeme Russ</name>
<email>graeme.russ@gmail.com</email>
</author>
<published>2011-07-15T23:31:37Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a60d1e5b8e5007f53c198acc5ca636ae570ae180'/>
<id>urn:sha1:a60d1e5b8e5007f53c198acc5ca636ae570ae180</id>
<content type='text'>
Signed-off-by: Graeme Russ &lt;graeme.russ@gmail.com&gt;
</content>
</entry>
<entry>
<title>rename CFG_ macros to CONFIG_SYS</title>
<updated>2008-10-18T19:54:03Z</updated>
<author>
<name>Jean-Christophe PLAGNIOL-VILLARD</name>
<email>plagnioj@jcrosoft.com</email>
</author>
<published>2008-10-16T13:01:15Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6d0f6bcf337c5261c08fabe12982178c2c489d76'/>
<id>urn:sha1:6d0f6bcf337c5261c08fabe12982178c2c489d76</id>
<content type='text'>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD &lt;plagnioj@jcrosoft.com&gt;
</content>
</entry>
<entry>
<title>Patch by Greg Ungerer, 19 May 2005:</title>
<updated>2005-05-19T22:46:33Z</updated>
<author>
<name>wdenk</name>
<email>wdenk</email>
</author>
<published>2005-05-19T22:46:33Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=16b013e750345afdf73977be73eb046f2b476495'/>
<id>urn:sha1:16b013e750345afdf73977be73eb046f2b476495</id>
<content type='text'>
add support for the OpenGear CM4008 board
</content>
</entry>
</feed>
