Commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869

Authored by Wolfgang Denk
1 parent fb98f94fcb

Prepare for v1.3.3-rc3

Update ChNAGELOG, minor white space cleanup.

Signed-off-by: Wolfgang Denk <wd@denx.de>

Showing 3 changed files with 413 additions and 2 deletions Side-by-side Diff

  1 +commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
  2 +Author: Wolfgang Denk <wd@denx.de>
  3 +Date: Sun May 4 00:35:15 2008 +0200
  4 +
  5 + drivers/net/tsec.c: Fix typo.
  6 +
  7 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  8 +
  9 +commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
  10 +Author: Mike Frysinger <vapier@gentoo.org>
  11 +Date: Fri May 2 21:45:12 2008 -0400
  12 +
  13 + version_autogenerated.h: use printf rather than echo -n
  14 +
  15 + Some systems are dumb and do not implement the -n flag to echo (like OS X).
  16 + Convert the Makefile to use printf as this should work everywhere.
  17 +
  18 + Signed-off-by: Mike Frysinger <vapier@gentoo.org>
  19 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  20 +
  21 +commit 4acc2a108ad0a669165924704a6cb083f9138242
  22 +Author: Mike Frysinger <vapier@gentoo.org>
  23 +Date: Fri May 2 18:17:50 2008 -0400
  24 +
  25 + fix building when saveenv is disabled in some setups
  26 +
  27 + If you enable environment in the flash, but disable the embedded
  28 + option, and you disable the saveenv command, then the #if nested
  29 + logic will trigger a compile failure:
  30 + env_flash.c: In function 'env_relocate_spec':
  31 + env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
  32 + The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
  33 +
  34 + Signed-off-by: Mike Frysinger <vapier@gentoo.org>
  35 +
  36 +commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
  37 +Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
  38 +Date: Fri May 2 16:10:04 2008 -0400
  39 +
  40 + SBC8548: fix address mask to allow 64M flash
  41 +
  42 + Fix incorrect mask to enable all 64MB of onboard flash.
  43 + Previously U-Boot incorrectly mapped only 8MB of flash, this
  44 + patch correctly maps all the available flash.
  45 +
  46 + Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
  47 +
  48 +commit 3648085c464c8c22ef76fab006ca4344d3796124
  49 +Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  50 +Date: Fri May 2 19:48:56 2008 +0200
  51 +
  52 + qemu_mips: add README
  53 +
  54 + Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  55 +
  56 +commit 6fdd002689190a0022c7b3dbab37fcba724580ce
  57 +Author: Marcel Ziswiler <marcel@ziswiler.com>
  58 +Date: Fri May 2 02:35:59 2008 +0200
  59 +
  60 + Fix misspelled comment
  61 +
  62 + Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
  63 +
  64 +commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
  65 +Author: Mike Frysinger <vapier@gentoo.org>
  66 +Date: Thu May 1 04:13:05 2008 -0400
  67 +
  68 + mkimage: make mmap() checks consistent
  69 +
  70 + The mmap() related code is full of inconsistent casts/constants when
  71 + it comes to error checking, and may break when building on some
  72 + systems (like ones that do not implicitly define the caddr_t type).
  73 + Let's just avoid the whole mess by writing the code nice and clean in
  74 + the first place.
  75 +
  76 + Signed-off-by: Mike Frysinger <vapier@gentoo.org>
  77 +
  78 +commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
  79 +Author: Marcel Ziswiler <marcel@ziswiler.com>
  80 +Date: Thu May 1 09:05:34 2008 +0200
  81 +
  82 + Fix defined but not used build warning
  83 +
  84 + - warning: 'srom' defined but not used
  85 +
  86 + Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
  87 +
  88 +commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
  89 +Author: Marcel Ziswiler <marcel@ziswiler.com>
  90 +Date: Thu May 1 09:05:26 2008 +0200
  91 +
  92 + Fix implicit declaration build warnings
  93 +
  94 + - warning: implicit declaration of function โ€˜serial_initializeโ€™
  95 +
  96 + Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
  97 +
  98 +commit 9acde129cc3f9c1b3bc11a821480dd446774d618
  99 +Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
  100 +Date: Tue Apr 29 19:18:32 2008 +0200
  101 +
  102 + TSEC: add config options for VSC8601 RGMII PHY
  103 +
  104 + The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
  105 + and Tx clock lines. They are configured using 2 bits in extended
  106 + register 0x17.
  107 + Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
  108 + been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
  109 +
  110 + Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
  111 + Acked-by: Andy Fleming <afleming@freescale.com>
  112 + Acked-by: Ben Warren <biggerbadderben@gmail.com>
  113 + --
  114 +
  115 + drivers/net/tsec.c | 6 ++++++
  116 + drivers/net/tsec.h | 3 +++
  117 + 2 files changed, 9 insertions(+), 0 deletions(-)
  118 +
  119 +commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
  120 +Author: Wolfgang Denk <wd@denx.de>
  121 +Date: Sat May 3 23:07:15 2008 +0200
  122 +
  123 + Revert "ColdFire: Get information from the correct GCC"
  124 +
  125 + This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
  126 + (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
  127 +
  128 +commit c4e5f52a58d278eebb87f476e353972c5dacea40
  129 +Author: Wolfgang Denk <wd@denx.de>
  130 +Date: Sat May 3 22:25:00 2008 +0200
  131 +
  132 + config.mk: use correct (cross) compiler
  133 +
  134 + Some config.mk files reference $(CC) to test for specific tool chain
  135 + features, so make sure $(CC) gets set before including any such
  136 + config files.
  137 +
  138 + This patch replaces commit b7166e05a5 ("ColdFire: Get information from
  139 + the correct GCC").
  140 +
  141 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  142 +
  143 +commit 27c38689d0cfde0e444239345f97b5eecc9f4067
  144 +Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  145 +Date: Thu May 1 02:13:44 2008 +0200
  146 +
  147 + pxa: fix previous definition on cpu init
  148 +
  149 + start.S:183:1: warning: "ICMR" redefined
  150 + In file included from start.S:33:
  151 + include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
  152 + start.S:187:1: warning: "RCSR" redefined
  153 + ...
  154 +
  155 + Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  156 +
  157 +commit 6d12e697de794d700767f22f950e3026ccf4daf6
  158 +Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  159 +Date: Thu May 1 02:13:43 2008 +0200
  160 +
  161 + pxa: fix pcmcia operation on 'i' may be undefined
  162 +
  163 + Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  164 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  165 +
  166 +commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
  167 +Author: Kumar Gala <galak@kernel.crashing.org>
  168 +Date: Wed Apr 30 16:24:35 2008 -0500
  169 +
  170 + MPC8610HPCD: Drop -O2 from the build flags
  171 +
  172 + Make the flags use -Os like all other boards
  173 +
  174 + Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
  175 +
  176 +commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
  177 +Author: Stefan Roese <sr@denx.de>
  178 +Date: Wed Apr 30 15:50:39 2008 +0200
  179 +
  180 + RTC: Fix month offset by one problem in M41T62 RTC driver
  181 +
  182 + This patch fixes a problem with the month being read and written
  183 + incorrectly (offset by one). This only gets visible by also using
  184 + the Linux driver (rtc-m41t80).
  185 +
  186 + Tested on AMCC Canyonlands.
  187 +
  188 + Signed-off-by: Stefan Roese <sr@denx.de>
  189 +
  190 +commit 141ba1cad8e6598a2466e7e2976c6a12285df619
  191 +Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
  192 +Date: Sat May 3 13:51:44 2008 +0900
  193 +
  194 + [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
  195 +
  196 + Current trick to pick up GNU assembler minor version uses a dot(.) as a
  197 + delimiter, and take the second field to obtain minor version number. But
  198 + as can be expected, this doesn't work with a version string which has
  199 + dots more than needs.
  200 +
  201 + Here's an example:
  202 +
  203 + $ mips-linux-gnu-as --version | grep 'GNU assembler'
  204 + GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
  205 + $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
  206 + 2-129) 2
  207 + $
  208 +
  209 + This patch restricts the version format to 2.XX.XX... This will work
  210 + in most cases.
  211 +
  212 + $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
  213 + 2.18.50.20080215
  214 + $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
  215 + 18
  216 + $
  217 +
  218 + Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
  219 +
  220 +commit ea638951acead7f1086c908c0b9f086beab82a22
  221 +Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
  222 +Date: Sat May 3 13:51:28 2008 +0900
  223 +
  224 + [MIPS] cpu/mips/cache.S: Add dcache_enable
  225 +
  226 + Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
  227 + "allow ports to override bootelf behavior") requires ports to have this
  228 + function.
  229 +
  230 + Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
  231 + Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  232 +
  233 +commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
  234 +Author: Wolfgang Denk <wd@denx.de>
  235 +Date: Thu May 1 21:30:16 2008 +0200
  236 +
  237 + onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
  238 +
  239 + Onenand needs a version of memcpy() which performs 16 bit accesses
  240 + only; make sure the name does not conflict with the standard
  241 + function.
  242 +
  243 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  244 +
  245 +commit 12bc4e94251c369c529ffa505cf58b148c372f7f
  246 +Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  247 +Date: Wed Apr 30 22:38:17 2008 +0200
  248 +
  249 + cmd_nand: fix warning: str2long ncompatible pointer type
  250 +
  251 + Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  252 +
  253 +commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
  254 +Author: Timur Tabi <timur@freescale.com>
  255 +Date: Fri Apr 4 11:16:11 2008 -0500
  256 +
  257 + Fix calculation of I2C clock for some 86xx chips
  258 +
  259 + Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
  260 + There is no pattern that can be used to determine which chips use which
  261 + frequency, so the only way to determine is to look up the actual SOC
  262 + designation and use the right value for that SOC.
  263 +
  264 + Signed-off-by: Timur Tabi <timur@freescale.com>
  265 +
  266 +commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
  267 +Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
  268 +Date: Wed Apr 30 12:11:19 2008 -0500
  269 +
  270 + ColdFire: Fix ethernet hang issue for mcf547x_8x
  271 +
  272 + The ethernet hang is caused by receiving buffer in DRAM is not
  273 + yet ready due to access cycles require longer time in DRAM.
  274 + Relocate DMA buffer descriptors from DRAM to internal SRAM.
  275 +
  276 + Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
  277 +
  278 +commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
  279 +Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
  280 +Date: Wed Apr 30 12:10:47 2008 -0500
  281 +
  282 + ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
  283 +
  284 + Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
  285 + Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
  286 +
  287 +commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
  288 +Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
  289 +Date: Wed Apr 30 12:10:23 2008 -0500
  290 +
  291 + ColdFire: Get information from the correct GCC
  292 +
  293 + Signed-off-by: Kurt Mahan <kmahan@freescale.com>
  294 + Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
  295 +
  296 +commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
  297 +Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
  298 +Date: Wed Apr 30 18:02:59 2008 +0200
  299 +
  300 + Fix warning in env_nand.c if compiled for DaVinci Schmoogie
  301 +
  302 + Fix warnings
  303 +
  304 + nv_nand.c: In function 'saveenv':
  305 + env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
  306 + env_nand.c: In function 'env_relocate_spec':
  307 + env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
  308 +
  309 + if compiled for davinci_schmoogie_config.
  310 +
  311 + Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
  312 + Ack by: Sergey Kubushyn <ksi@koi8.net>
  313 +
  314 +commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
  315 +Author: Anatolij Gustschin <agust@denx.de>
  316 +Date: Wed Apr 30 13:34:40 2008 +0200
  317 +
  318 + Fix warnings while compiling net/net.c for MPC8610HPCD board
  319 +
  320 + MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
  321 + causing overriding default -Os option. New gcc (ver. 4.2.2)
  322 + produces warnings while compiling net/net.c file with -O2
  323 + option. The patch is an attempt to fix this.
  324 +
  325 + Signed-off-by: Anatolij Gustschin <agust@denx.de>
  326 +
  327 +commit 58b575e575c25fdf8c88141e145db201f3092149
  328 +Author: Sascha Laue <Sascha.Laue@gmx.biz>
  329 +Date: Wed Apr 30 15:23:38 2008 +0200
  330 +
  331 + lwmon5: fix offset error in sysmon0 POST
  332 +
  333 + Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
  334 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  335 +
  336 +commit e7419b243a373de4ee042f7d4f45f66de787240d
  337 +Author: Sascha Laue <Sascha.Laue@gmx.biz>
  338 +Date: Wed Apr 30 15:16:35 2008 +0200
  339 +
  340 + lwmon5: fix manual merge error in POST
  341 +
  342 + Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
  343 +
  344 +commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
  345 +Author: Wolfgang Denk <wd@denx.de>
  346 +Date: Wed Apr 30 17:46:26 2008 +0200
  347 +
  348 + cmd_nand.c: fix another 'incompatible pointer type' warning.
  349 +
  350 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  351 +
  352 +commit de109d909707e2dfe806be5efc3cdb103b47c8ad
  353 +Author: Wolfgang Denk <wd@denx.de>
  354 +Date: Wed Apr 30 17:25:07 2008 +0200
  355 +
  356 + Makefile: fix parallel builds
  357 +
  358 + This problem shows up with parallel builds only; it results in
  359 + somewhat cryptic error messages like
  360 +
  361 + $ JOBS=-j6 MAKEALL netstar
  362 + Configuring for netstar board...
  363 + arm-linux-ld: cannot find -lgeneric
  364 + make[1]: *** [eeprom.srec] Error 1
  365 +
  366 + A few boards (like netstar and voiceblue) need some libraries for
  367 + building; however, the board Makefile does not contain any such
  368 + dependencies which may cause problems with parallel builds. Adding
  369 + such dependencies is difficult as we would also have to provide build
  370 + rules, which already exist in the respective library Makefiles.
  371 +
  372 + To solve this, we make sure that all libraries get built before the
  373 + board code.
  374 +
  375 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  376 +
  377 +commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
  378 +Author: Stefan Roese <sr@denx.de>
  379 +Date: Wed Apr 30 14:51:36 2008 +0200
  380 +
  381 + ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
  382 +
  383 + This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
  384 + used for NAND booting to match the values needed for the new 512MB
  385 + DIMM modules shipped with the productions boards:
  386 +
  387 + Crucial: CT6464AC667.8FB
  388 +
  389 + Signed-off-by: Stefan Roese <sr@denx.de>
  390 +
  391 +commit ea9202a659dc75996facf1475f1866a19a9d3129
  392 +Author: Stefan Roese <sr@denx.de>
  393 +Date: Wed Apr 30 10:49:43 2008 +0200
  394 +
  395 + ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
  396 +
  397 + This patch fixes a problem with DIMMs that have 8 banks. Now the
  398 + MCIF0_MBxCF register will be setup correctly for this setup too.
  399 +
  400 + This was noticed with the 512MB DIMM on Canyonlands/Glacier.
  401 +
  402 + Signed-off-by: Stefan Roese <sr@denx.de>
  403 +
  404 +commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
  405 +Author: Wolfgang Denk <wd@denx.de>
  406 +Date: Tue Apr 29 23:41:06 2008 +0200
  407 +
  408 + Prepare v1.3.3-rc2, again.
  409 +
  410 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  411 +
1 412 commit b7fcc4c13993782342cf5cd20d237a6281648a0b
2 413 Author: Wolfgang Denk <wd@denx.de>
3 414 Date: Tue Apr 29 23:35:24 2008 +0200
... ... @@ -24,7 +24,7 @@
24 24 VERSION = 1
25 25 PATCHLEVEL = 3
26 26 SUBLEVEL = 3
27   -EXTRAVERSION = -rc2
  27 +EXTRAVERSION = -rc3
28 28 U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
29 29 VERSION_FILE = $(obj)include/version_autogenerated.h
30 30  
post/board/lwmon5/sysmon.c
... ... @@ -67,7 +67,7 @@
67 67 #define TEMPERATURE_MIN (-40) /* degr. C */
68 68 #define TEMPERATURE_MAX (+90) /* degr. C */
69 69 #define TEMPERATURE_DISPLAY_MIN (-35) /* degr. C */
70   -#define TEMPERATURE_DISPLAY_MAX (+85) /* degr. C */
  70 +#define TEMPERATURE_DISPLAY_MAX (+85) /* degr. C */
71 71  
72 72 #define VOLTAGE_5V_MIN (+4500) /* mV */
73 73 #define VOLTAGE_5V_MAX (+5500) /* mV */