Commit 3d35d87d5482de23cd5dc4d7721b1086107cae50

Authored by Wolfgang Denk
1 parent 632a6dd0b6

Prepare 2009.08

Update CHANGELOG

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

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

  1 +commit 632a6dd0b612eb7b143f789f2a0273917468c041
  2 +Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
  3 +Date: Mon Aug 31 16:18:24 2009 +0200
  4 +
  5 + Add common code dir for Matrix Vision boards.
  6 +
  7 + This fixes current build failure.
  8 +
  9 + Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
  10 +
  11 + mvblm7.c: fix warning: implicit declaration of function
  12 + 'mv_reset_environment'
  13 +
  14 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  15 +
  16 +commit 52f6c34c85d6c16f2a41433b5000490ecf374992
  17 +Author: David Brownell <dbrownell@users.sourceforge.net>
  18 +Date: Sun Aug 30 11:05:29 2009 -0700
  19 +
  20 + bugfix CONFIG_SYS_CONSOLE_INFO_QUIET
  21 +
  22 + The "console: unify printing current devices" patch goofed:
  23 + CONFIG_SYS_CONSOLE_INFO_QUIET is supposed to *REMOVE* boot
  24 + time noise, not add it. Said patch changed the #ifndefs
  25 + to #ifdef; this one restores them to the proper sense.
  26 +
  27 + Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
  28 +
  29 +commit 28887d831b02c66ccc10d7f1379204b5a62f4543
  30 +Author: André Schwarz <andre.schwarz@matrix-vision.de>
  31 +Date: Thu Aug 27 14:48:35 2009 +0200
  32 +
  33 + Use common code for Matrix Vision boards
  34 +
  35 + Clean up existing boards (mvBC-P/MPC5200 and mvBL-M7/MPC8343) by
  36 + using common code.
  37 +
  38 + Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de>
  39 +
  40 +commit 05f91a65abc3180e2896cd8ddee7a34b1d1ce6e0
  41 +Author: Kim Phillips <kim.phillips@freescale.com>
  42 +Date: Wed Aug 26 21:27:37 2009 -0500
  43 +
  44 + mpc83xx: mpc8349itx - accommodate larger kernel sizes & unzero the bootdelay
  45 +
  46 + apparently the ITX was missed last round.
  47 +
  48 + Also make bootdelay consistent with other boards, so as to give on the
  49 + opportunity to fix mistakenly set bootcmd without having checked for an
  50 + bootdelay zero setting first.
  51 +
  52 + Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
  53 +
  54 +commit cc861f7127f200e704baaf061a7f508e3c93f2a3
  55 +Author: Kim Phillips <kim.phillips@freescale.com>
  56 +Date: Wed Aug 26 21:25:46 2009 -0500
  57 +
  58 + mpc83xx: match dtb filename references to their dts equivalents in the linux kernel
  59 +
  60 + Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
  61 +
  62 +commit 68e74567cf317318df52dbcb2ac170ffc5e7758a
  63 +Author: Feng Kan <fkan@amcc.com>
  64 +Date: Fri Aug 21 10:59:42 2009 -0700
  65 +
  66 + ppc4xx: Fix ECC Correction bug with SMC ordering for NDFC driver
  67 +
  68 + Fix ECC Correction bug where the byte offset location were double
  69 + flipped causing correction routine to toggle the wrong byte location
  70 + in the ECC segment. The ndfc_calculate_ecc routine change the order
  71 + of getting the ECC code.
  72 + /* The NDFC uses Smart Media (SMC) bytes order */
  73 + ecc_code[0] = p[2];
  74 + ecc_code[1] = p[1];
  75 + ecc_code[2] = p[3];
  76 + But in the Correction algorithm when calculating the byte offset
  77 + location, the s1 is used as the upper part of the address. Which
  78 + again reverse the order making the final byte offset address
  79 + location incorrect.
  80 + byteoffs = (s1 << 0) & 0x80;
  81 + .
  82 + .
  83 + byteoffs |= (s0 >> 4) & 0x08;
  84 + The order is change to read it in straight and let the correction
  85 + function to revert it to SMC order.
  86 +
  87 + Signed-off-by: Feng Kan <fkan@amcc.com>
  88 + Acked-by: Victor Gallardo <vgallardo@amcc.com>
  89 + Acked-by: Prodyut Hazarika <phazarika@amcc.com>
  90 + Signed-off-by: Stefan Roese <sr@denx.de>
  91 +
  92 +commit 30fc5cd3116cb112d0aab7e6d7c8eef1b67ed075
  93 +Author: Wolfgang Denk <wd@denx.de>
  94 +Date: Tue Aug 25 12:22:38 2009 +0200
  95 +
  96 + include/s3c24x0.h: fix S3C24X0_SPI_CHANNEL declaration
  97 +
  98 + The SPI controller on the S3C24X0 has 8 bit registers, not 32 bit.
  99 +
  100 + Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  101 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  102 +
  103 +commit e637385e69f63bc73b9dfd2ddd8d0f383790ca28
  104 +Author: Mike Frysinger <vapier@gentoo.org>
  105 +Date: Thu Aug 20 19:17:59 2009 -0400
  106 +
  107 + Blackfin: fix typos in gpio comments
  108 +
  109 + Signed-off-by: Mike Frysinger <vapier@gentoo.org>
  110 +
  111 +commit c2fbcb6ae86c10621a386c13be57eaa766221ed5
  112 +Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
  113 +Date: Tue Aug 18 04:49:57 2009 -0400
  114 +
  115 + Blackfin: cm-bf527/cm-bf537: increase flash sectors
  116 +
  117 + Newer revisions of these boards have slightly larger flashes, so increase
  118 + the configured number of sectors so that U-Boot works on all revisions.
  119 +
  120 + Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
  121 + Signed-off-by: Mike Frysinger <vapier@gentoo.org>
  122 +
  123 +commit a794f59a75bf9fd4a44f1ad2349cae903c42b89c
  124 +Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  125 +Date: Sun Aug 23 14:14:52 2009 +0200
  126 +
  127 + sh/rsk7203: add missing include net.h
  128 +
  129 + Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  130 +
  131 +commit 6ac9f47977a9fc1876979871eeb14f26ba1bdbe6
  132 +Author: Mike Frysinger <vapier@gentoo.org>
  133 +Date: Sun Aug 23 02:47:59 2009 -0400
  134 +
  135 + start a linker script helper file
  136 +
  137 + Start a common header file for common linker script code (such as
  138 + workarounds for older linkers) rather than doing this in the build system.
  139 +
  140 + As fallout, we no longer execute the linker every time config.mk is
  141 + included by a build file (which can easily be 70+ times), but rather only
  142 + execute it once.
  143 +
  144 + This also fixes a bug in the major version checking by creating a macro to
  145 + easily compare versions and keep people from making the same common
  146 + mistake (forgetting to check major and minor together).
  147 +
  148 + Signed-off-by: Mike Frysinger <vapier@gentoo.org>
  149 +
  150 +commit 2ed0869d30602eb660569eababb8fedff36bd23a
  151 +Author: Mike Frysinger <vapier@gentoo.org>
  152 +Date: Sat Aug 22 19:50:22 2009 -0400
  153 +
  154 + Blackfin: use common code to preprocess linker script
  155 +
  156 + Now that the common code preprocesses the linker script, the Blackfin code
  157 + no longer needs to do it.
  158 +
  159 + Signed-off-by: Mike Frysinger <vapier@gentoo.org>
  160 +
  161 +commit 4d3758c835c7e96da2a291e7fb5acfc19bc06e8e
  162 +Author: Mike Frysinger <vapier@gentoo.org>
  163 +Date: Sat Aug 22 19:48:56 2009 -0400
  164 +
  165 + .gitignore: ignore generated u-boot.lds
  166 +
  167 + Signed-off-by: Mike Frysinger <vapier@gentoo.org>
  168 +
  169 +commit 79b91de958511840d2a7491be92d435b7ef43f17
  170 +Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
  171 +Date: Sat Aug 22 14:21:53 2009 +0200
  172 +
  173 + include/mmc.h: Fix typo in IS_SD() macro
  174 +
  175 + Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
  176 +
  177 +commit 963f2f611741f8d9c38bd7caf20ae8c95cab7b3f
  178 +Author: Wolfgang Denk <wd@denx.de>
  179 +Date: Sat Aug 22 23:27:26 2009 +0200
  180 +
  181 + Prepare 2009.08-rc3
  182 +
  183 + Update CHANGELOG, minor Coding Style cleanup.
  184 +
  185 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  186 +
1 187 commit 5b2da6a309266f21cbb68f06fcfdf9ba141022e7
2 188 Author: Michal Simek <monstr@monstr.eu>
3 189 Date: Fri Aug 21 06:52:25 2009 +1000
... ... @@ -24,7 +24,7 @@
24 24 VERSION = 2009
25 25 PATCHLEVEL = 08
26 26 SUBLEVEL =
27   -EXTRAVERSION = -rc3
  27 +EXTRAVERSION =
28 28 ifneq "$(SUBLEVEL)" ""
29 29 U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
30 30 else