Commit 635e5f8fc82365e6e9734b3132bc95135a6de679

Authored by Wolfgang Denk
1 parent 65ff996802

Prepare 2009.01-rc3

Update CHANGELOG

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

Showing 2 changed files with 177 additions and 1 deletions Side-by-side Diff

  1 +commit 4cda437898f7873752f0201757cd33f12196ce87
  2 +Author: Mike Frysinger <vapier@gentoo.org>
  3 +Date: Sat Jan 17 13:32:42 2009 -0500
  4 +
  5 + build system: treat all Darwin's alike
  6 +
  7 + The x86 based version of Darwin behaves the same quirky way as the powerpc
  8 + Darwin, so only check HOSTOS when setting up Darwin workarounds.
  9 +
  10 + Signed-off-by: Mike Frysinger <vapier@gentoo.org>
  11 +
  12 +commit c088a108c75db565e07292fd668dfa5491e85bc2
  13 +Author: Peter Korsgaard <jacmet@sunsite.dk>
  14 +Date: Wed Jan 14 13:52:24 2009 +0100
  15 +
  16 + fdt_resize(): fix actualsize calculations with unaligned blobs
  17 +
  18 + The code in fdt_resize() to extend the fdt size to end on a page boundary
  19 + is wrong for fdt's not located at an address aligned on a page boundary.
  20 + What's even worse, the code would make actualsize shrink rather than grow
  21 + if (blob & 0xfff) was bigger than the amount of padding added by ALIGN(),
  22 + causing fdt_add_mem_rsv to fail.
  23 +
  24 + Fix it by aligning end address (blob + size) to a page boundary instead.
  25 + For aligned fdt's this is equivalent to what we had before.
  26 +
  27 + Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
  28 +
  29 +commit fadad1573fb16c90025f08a2861d6047d093cba7
  30 +Author: Mike Frysinger <vapier@gentoo.org>
  31 +Date: Fri Jan 9 04:38:17 2009 -0500
  32 +
  33 + ncb: use socklen_t
  34 +
  35 + The recvfrom() function takes a socklen_t, not an int.
  36 +
  37 + Signed-off-by: Mike Frysinger <vapier@gentoo.org>
  38 +
  39 +commit fc83c9273cec6e6e542f4a0ea3b653b7d0513ffa
  40 +Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  41 +Date: Sun Jan 11 16:35:16 2009 +0100
  42 +
  43 + sh: serial: use readx/writex accessors
  44 +
  45 + Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  46 + Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  47 +
  48 +commit 9e1fa628bdb64745811cdd26c4f953846c076180
  49 +Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  50 +Date: Sun Jan 11 16:35:15 2009 +0100
  51 +
  52 + sh: serial: coding style cleanup
  53 +
  54 + Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  55 + Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  56 +
  57 +commit c9935c992575922b7ef13eec0656ed8665d324e3
  58 +Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  59 +Date: Sun Jan 11 17:48:56 2009 +0900
  60 +
  61 + sh: Fix compile error on lowlevel_init file
  62 +
  63 + lowlevel_init of SH was corrected to use the write/readXX macro.
  64 + However, there was a problem that was not able to be compiled partially.
  65 + This patch corrected this.
  66 +
  67 + Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  68 +
  69 +commit a5b04d00bfeb940c62232972ce644d50b45797f9
  70 +Author: Kieran Bingham <kieranbingham@gmail.com>
  71 +Date: Tue Dec 30 01:16:03 2008 +0000
  72 +
  73 + sh: Fix up rsk7203 target for out of tree build
  74 +
  75 + Fix up rsk7203 target to build successfully using out-of-tree build.
  76 +
  77 + Signed-off-by: Kieran Bingham <kbingham@mpc-data.co.uk>
  78 + Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  79 +
  80 +commit f7e78f3b74aae9caca2997bad865a72338326c0a
  81 +Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  82 +Date: Sat Dec 20 19:29:49 2008 +0100
  83 +
  84 + sh: use write{8,16,32} in all lowlevel_init
  85 +
  86 + Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  87 + Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  88 +
  89 +commit e4430779623af500de1cee7892c379f07ef59813
  90 +Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  91 +Date: Sat Dec 20 19:29:48 2008 +0100
  92 +
  93 + sh: lowlevel_init coding style cleanup
  94 +
  95 + Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  96 + Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  97 +
  98 +commit 85cb052ee41675ca361e6a4c69455dc715c8f2d9
  99 +Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  100 +Date: Sat Dec 20 15:27:45 2008 +0100
  101 +
  102 + sh: update sh2/sh2a timer coding style
  103 +
  104 + Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  105 + Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  106 +
  107 +commit 1e15ff999322e81af4c0c0c548908f38944ba39c
  108 +Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  109 +Date: Sat Dec 20 15:25:22 2008 +0100
  110 +
  111 + sh: update sh timer coding style
  112 +
  113 + Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  114 + Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  115 +
  116 +commit 0e3ece33801e377be67ffa29f083421ad820f28b
  117 +Author: Wolfgang Denk <wd@denx.de>
  118 +Date: Wed Jan 14 23:26:05 2009 +0100
  119 +
  120 + Prepare 2009.01-rc2
  121 +
  122 + Update CHANGELOG.
  123 +
  124 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  125 +
1 126 commit e92c9a860e44c14513c8909ce4299e253a775eeb
2 127 Author: Wolfgang Denk <wd@denx.de>
3 128 Date: Wed Jan 14 22:35:30 2009 +0100
... ... @@ -11,6 +136,57 @@
11 136 Use "ln -sf" as quick work around for the issue.
12 137  
13 138 Signed-off-by: Wolfgang Denk <wd@denx.de>
  139 +
  140 +commit 3ba605d4beec649438539e7df97b5fedb26592fb
  141 +Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
  142 +Date: Fri Jan 2 12:18:49 2009 +0100
  143 +
  144 + ppc4xx: Add loadpci command to esd's CPCI4052 and CPCI405AB boards
  145 +
  146 + This patch adds esd's loadpci BSP command to CPCI4052 and
  147 + CPCI405AB board. This requires CONFIG_CMD_BSP and CONFIG_PRAM.
  148 +
  149 + Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
  150 + Signed-off-by: Stefan Roese <sr@denx.de>
  151 +
  152 +commit 600fe46fb3dab7f07604f9009904f31584415114
  153 +Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
  154 +Date: Fri Jan 2 12:18:12 2009 +0100
  155 +
  156 + ppc4xx: Disable pci node in device tree on CPCI405 pci adapters
  157 +
  158 + Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
  159 + Signed-off-by: Stefan Roese <sr@denx.de>
  160 +
  161 +commit f6a1f490d224c600a09137e58d1026d150b8e679
  162 +Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
  163 +Date: Fri Jan 2 12:17:36 2009 +0100
  164 +
  165 + ppc4xx: Cleanup CPCI405 board code
  166 +
  167 + This patch cleans up CPCI405 board support:
  168 + - wrap long lines
  169 + - unification of spaces in function calls
  170 + - remove dead code
  171 +
  172 + Use correct io accessors on peripherals.
  173 +
  174 + Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
  175 + Signed-off-by: Stefan Roese <sr@denx.de>
  176 +
  177 +commit fceebb45a0b97e92f9889861f8c3b9cb885e706f
  178 +Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
  179 +Date: Fri Jan 2 12:16:35 2009 +0100
  180 +
  181 + ppc4xx: Enable auto RS485 mode on PLU405 boards
  182 +
  183 + This patch turns on the auto RS485 mode in the 2nd external
  184 + uart on PLU405 boards. This is a special mode of the used
  185 + Exar XR16C2850 uart. Because these boards only have a 485 physical
  186 + layer connected it's a good idea to turn it on by default.
  187 +
  188 + Signed-off-by: Matthias Fuchs <mf@esd.eu>
  189 + Signed-off-by: Stefan Roese <sr@denx.de>
14 190  
15 191 commit b5f65dfa9aa8e068e62aba4733dc4fd97b1d9bf6
16 192 Author: Haiying Wang <Haiying.Wang@freescale.com>
... ... @@ -24,7 +24,7 @@
24 24 VERSION = 2009
25 25 PATCHLEVEL = 01
26 26 SUBLEVEL =
27   -EXTRAVERSION = -rc1
  27 +EXTRAVERSION = -rc3
28 28 ifneq "$(SUBLEVEL)" ""
29 29 U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
30 30 else