[U-Boot] Suchen Sie nach einer Beschaftigung, die Ihnen Geld bringen konnte?

2011-04-07 Thread athens
Sehr geehrte Damen und Herren, zurzeit suchen wir engagierte Mitarbeiter, die Zuhause arbeiten wollen. Wir mochten gerne die Qualitat sowie auch die Quantitat in unserer Auftragsbearbeitung verbessern. Fur uns ist sehr wichtig, dass Sie sich mit Menschen gerne in Kontakt setzen, Verantwortung tra

Re: [U-Boot] [PATCH v3 7/8] tsec: Convert tsec to use PHY Lib

2011-04-07 Thread Kumar Gala
On Apr 7, 2011, at 9:56 PM, Andy Fleming wrote: > diff --git a/arch/powerpc/include/asm/config.h > b/arch/powerpc/include/asm/config.h > index 536f142..31b515e 100644 > --- a/arch/powerpc/include/asm/config.h > +++ b/arch/powerpc/include/asm/config.h > @@ -80,6 +80,13 @@ > #endif > #endif > > +

Re: [U-Boot] [PATCH] eNET: Fix undefined reference to `monitor_flash_len'

2011-04-07 Thread Graeme Russ
On 04/04/11 15:29, Graeme Russ wrote: > commit cfbe861506e2dc3250ac99dc45bb3d1ac60f4857 removed the definition of > monitor_flash_len from the eNET which was not picked up due to extensive > use of the SRAM configuration target for testing > > Signed-off-by: Graeme Russ > --- > board/eNET/eNET.c

Re: [U-Boot] [PATCH] Handle most LDSCRIPT setting centrally

2011-04-07 Thread Graeme Russ
On 08/04/11 02:01, Scott Wood wrote: > On Thu, 7 Apr 2011 09:11:03 +0200 > Wolfgang Denk wrote: > >> Dear Scott Wood, >> >> In message <20110406233136.ga13...@schlenkerla.am.freescale.net> you wrote: >>> Currently, some linker scripts are found by common code in config.mk. >>> Some are found usin

Re: [U-Boot] [PATCH] Blackfin: use common LDSCRIPT logic

2011-04-07 Thread Mike Frysinger
On Friday, April 08, 2011 00:56:34 Mike Frysinger wrote: > create mode 100644 arch/blackfin/cpu/u-boot.lds > delete mode 100644 arch/blackfin/lib/u-boot.lds.S blah, prob should have used -M. this is a simple rename. -mike signature.asc Description: This is a digitally signed message part. ___

[U-Boot] [PATCH] Blackfin: use common LDSCRIPT logic

2011-04-07 Thread Mike Frysinger
Now that common code is a bit smarter when it comes to default LDSCRIPT values, rename the default Blackfin file and drop the Blackfin-specific config.mk logic. Signed-off-by: Mike Frysinger --- arch/blackfin/config.mk|4 - arch/blackfin/cpu/u-boot.lds | 158 ++

Re: [U-Boot] [PATCH v3 0/8] Universal PHY Infrastructure

2011-04-07 Thread Mike Frysinger
do you have a git tree hosting these changes ? -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Pull request u-boot-blackfin.git

2011-04-07 Thread Mike Frysinger
The following changes since commit 4db2fa7f9446d0f2fe8db3d62184b1212fe22707: Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-04-05 12:24:20 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git master Andreas Schallenberg (1): Blackf

[U-Boot] [PATCH] config_defaults.h: drop OSE bootm default

2011-04-07 Thread Mike Frysinger
Most arches don't support OSE, and this is a new bootm target, so the likelihood of any board actually wanting this today is fairly low. Any board who actually wants this can enable it in the board-specific config without making it a default bloat. Signed-off-by: Mike Frysinger --- include/conf

Re: [U-Boot] [PATCH v3 5/8] Create PHY Lib for U-Boot

2011-04-07 Thread Wolfgang Denk
Dear Andy Fleming, In message <1302231367-25321-6-git-send-email-aflem...@freescale.com> you wrote: > Extends the mii_dev structure to participate in a full-blown MDIO and > PHY driver scheme. The mii_dev structure and miiphy calls are modified > in such a way to allow the original mii command an

[U-Boot] [PATCH v3 6/8] phylib: Add a bunch of PHY drivers from tsec

2011-04-07 Thread Andy Fleming
The tsec driver had a bunch of PHY drivers already written. This converts them all into PHY Lib drivers, and serves as the first set of PHY drivers for PHY Lib. While doing that, cleaned up a number of magic numbers (though not all of them, as PHY vendors like to keep their numbers as magical as p

[U-Boot] [PATCH v3 3/8] Remove instances of phy_read/write

2011-04-07 Thread Andy Fleming
There were a few files which were already using phy_read and phy_write for their PHY function names. It's only a few places, and the name seems most appropriate for the high-level abstraction, so let's rename the other versions to something more specific. Also, uec_phy.c had a marvell_init functi

[U-Boot] [PATCH v3 8/8] Add mdio command for new PHY infrastructure

2011-04-07 Thread Andy Fleming
The new mdio command doesn't have all of the features of the mii command, but it provides the necessary read/write primitives, and allows users to interact with 10G PHYs, and other PHYs which use Clause 45 of 802.3. This means that the mdio command requires a "Device Address" argument, though for

[U-Boot] [PATCH v3 4/8] miiphy: Fix some formatting issues

2011-04-07 Thread Andy Fleming
Mostly putting a space between function name and "(", and doing return (foo) Signed-off-by: Andy Fleming --- This is split off from the phylib changes to miiphyutil.c and miiphy.h common/miiphyutil.c | 144 +- include/miiphy.h| 36 ++---

[U-Boot] [PATCH v3 1/8] tsec: use IO accessors for IO accesses

2011-04-07 Thread Andy Fleming
From: Mingkai Hu Signed-off-by: Mingkai Hu Acked-by: Andy Fleming Signed-off-by: Kumar Gala --- v2: Fixed the commit message's spelling v3: Removed unnecessary syncs drivers/net/tsec.c | 249 ++-- include/tsec.h |8 +- 2 files changed,

[U-Boot] [PATCH v3 2/8] tsec: arrange the code to avoid useless function declaration

2011-04-07 Thread Andy Fleming
From: Mingkai Hu This is merely a rearrangement. No changes to the code, except to remove now-useless declarations. Signed-off-by: Mingkai Hu Acked-by: Andy Fleming Signed-off-by: Kumar Gala --- drivers/net/tsec.c | 855 +--- 1 files changed,

[U-Boot] [PATCH v3 0/8] Universal PHY Infrastructure

2011-04-07 Thread Andy Fleming
Or PHY Lib for U-Boot. This sequence of patches adds infrastructure for universally-available PHY drivers (and MDIO drivers). It piggy-backs on the existing miiphy code, for backwards compatibility, but it also creates a new set of APIs. This was necessary partly to provide cleaner interfaces for

Re: [U-Boot] [PATCH V6 4/4] SMDK2410: various cleanup/code style fixes

2011-04-07 Thread Minkyu Kang
On 25 March 2011 17:28, David Müller wrote: > Signed-off-by: David Müller > > --- >  board/samsung/smdk2410/smdk2410.c |   61 +--- >  include/configs/smdk2410.h        |  145 > ++--- >  2 files changed, 135 insertions(+), 71 deletions(-) > applied to

Re: [U-Boot] [PATCH V6 3/4] SMDK2410: use the CFI driver (and remove the old one)

2011-04-07 Thread Minkyu Kang
On 25 March 2011 17:28, David Müller wrote: > Signed-off-by: David Müller > > --- >  board/samsung/smdk2410/Makefile   |    2 +- >  board/samsung/smdk2410/flash.c    |  433 > - >  board/samsung/smdk2410/smdk2410.c |   12 + >  include/configs/smdk2410.h        

Re: [U-Boot] [PATCH V6 2/4] SMDK2410: remove unneeded config.mk

2011-04-07 Thread Minkyu Kang
On 25 March 2011 17:28, David Müller wrote: > Signed-off-by: David Müller > > --- >  board/samsung/smdk2410/config.mk |   25 - >  include/configs/smdk2410.h       |    2 ++ >  2 files changed, 2 insertions(+), 25 deletions(-) >  delete mode 100644 board/samsung/smdk2410/co

Re: [U-Boot] [PATCH V6 1/4] SMDK2410: activate ARM relocation feature

2011-04-07 Thread Minkyu Kang
On 25 March 2011 17:28, David Müller wrote: > Signed-off-by: David Müller > > --- >  include/configs/smdk2410.h |    6 ++ >  1 files changed, 6 insertions(+), 0 deletions(-) > applied to u-boot-samsung Thanks Minkyu Kang -- from. prom. www.promsoft.net _

[U-Boot] CLAIMS CONTACT @ fedextodaydelivery0...@hotmail.com..

2011-04-07 Thread Hedman Bertil
Your email has been rewarded with (£1.500,000.00GBP)in cash prize,contact fedextodaydelivery0...@hotmail.com Tel: +44 70359 65608 for details ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] DM9000 on 2011.03

2011-04-07 Thread Wolfgang Denk
Dear haifeng zhang, In message you wrote: > > I am trying to run u-boot-2011.03 on Mini2440 (samsung S3c2440), now uboot > is running, > > I have some trouble with network chip dm9000 , > Uboot can detect the chip > "net: dm9000" > > when doing ping, it keeps showing > "raise:signal # 8 caught"

Re: [U-Boot] [PATCH v3 4/4] ARMV7: OMAP3: Add support for Comelit DIG297 board

2011-04-07 Thread Wolfgang Denk
Dear Luca Ceresoli, In message <4d9e12b7.2040...@comelit.it> you wrote: > > I'm going to define the bit values for the GPMC_CONFIGn registers. > Is arch/arm/include/asm/arch-omap3/omap_gpmc.h the correct place? I think so, but I'm not an OMAP expert. Sandeep? > > Is this the correct machine ID

Re: [U-Boot] [RFC] mpc83xx: add config options to spd_sdram

2011-04-07 Thread York Sun
On Thu, 2011-04-07 at 22:42 +0200, Schwarz,Andre wrote: > York, > > > > > "Schwarz,Andre" hat am 6. April 2011 > um 20:42 geschrieben: > > > York, > > > > > > > > ok - will give it a try tomorrow. > > > > > > > > > hmm - having a look at the Makefile it looks like I need > CONFI

Re: [U-Boot] [RFC] mpc83xx: add config options to spd_sdram

2011-04-07 Thread Schwarz,Andre
York,   "Schwarz,Andre" hat am 6. April 2011 um 20:42 geschrieben: > York, >   > ok - will give it a try tomorrow. >   >   hmm - having a look at the Makefile it looks like I need CONFIG_FSL_DDR2. This seems to pull in the "new" code ... without omitting the "old" one  in arch/powerpc/cpu/mpc

Re: [U-Boot] [PATCH] Handle most LDSCRIPT setting centrally

2011-04-07 Thread Mike Frysinger
On Wed, Apr 6, 2011 at 7:31 PM, Scott Wood wrote: > Currently, some linker scripts are found by common code in config.mk. > Some are found using CONFIG_SYS_LDSCRIPT, but the code for that is > sometimes in arch config.mk and sometimes in board config.mk.  Some > are found using an arch-specific rul

[U-Boot] DM9000 on 2011.03

2011-04-07 Thread haifeng zhang
Hi, Guys I am trying to run u-boot-2011.03 on Mini2440 (samsung S3c2440), now uboot is running, I have some trouble with network chip dm9000 , Uboot can detect the chip "net: dm9000" when doing ping, it keeps showing "raise:signal # 8 caught" if comment it out. it complains: “could not establis

Re: [U-Boot] [PATCH v2 0/6] Universal PHY Infrastructure

2011-04-07 Thread Mike Frysinger
On Thu, Apr 7, 2011 at 10:13 AM, Andy Fleming wrote: > On Apr 6, 2011, at 7:07 AM, Detlev Zundel wrote: >>> This second version cleans up all checkpatch errors that I reasonably could, >>> and addresses most of the comments from the first round of reviews. >> >>  WARNING: Use of volatile is usually

Re: [U-Boot] [PATCH v3 4/4] ARMV7: OMAP3: Add support for Comelit DIG297 board

2011-04-07 Thread Luca Ceresoli
Il 06/04/2011 09:50, Wolfgang Denk ha scritto: > Dear Luca Ceresoli, > > In message<1301416116-5519-5-git-send-email-luca.ceres...@comelit.it> you > wrote: >> Board support for the DIG297 board manufactured by Comelit Group SpA. >> It is a custom board based on the BeagleBoard

Re: [U-Boot] [PATCH v2 4/6] Create PHY Lib for U-Boot

2011-04-07 Thread Mike Frysinger
On Thu, Apr 7, 2011 at 10:16 AM, Andy Fleming wrote: > On Apr 6, 2011, at 6:09 PM, Mike Frysinger wrote: >> On Tuesday, April 05, 2011 17:59:52 Andy Fleming wrote: >>> -#define debug(fmt,args...)  printf (fmt ,##args) >>> +#define debug(fmt, args...) printf(fmt, ##args) >> >> it'd be nice if all th

Re: [U-Boot] [PATCH v7 01/10] nds32: add header files support for nds32

2011-04-07 Thread Wolfgang Denk
Dear Macpaul Lin, In message you wrote: > > > Checkpatch complains a lot about "do not add new typedefs". > > Indeed, but this seems is special for Linux Kernel, Not really. This is Linux CodingStyle policy, which we usually adapt. > I've checked some of the "typedefs" from other architectur

Re: [U-Boot] [PATCH 01/13] add XScale sub architecture (IXP/PXA) to board list

2011-04-07 Thread Marek Vasut
On Thursday 07 April 2011 16:58:53 Wolfgang Denk wrote: > Dear Marek Vasut, > > In message <201104071529.42290.marek.va...@gmail.com> you wrote: > > > Marek, it seems you forgot to clean up MAINTAINERS, and also to add > > > the removed boards to the "doc/README.scrapyard" file. Can you please >

Re: [U-Boot] [PATCH] Handle most LDSCRIPT setting centrally

2011-04-07 Thread Scott Wood
On Thu, 7 Apr 2011 09:11:03 +0200 Wolfgang Denk wrote: > Dear Scott Wood, > > In message <20110406233136.ga13...@schlenkerla.am.freescale.net> you wrote: > > Currently, some linker scripts are found by common code in config.mk. > > Some are found using CONFIG_SYS_LDSCRIPT, but the code for that

Re: [U-Boot] [PATCH v7 01/10] nds32: add header files support for nds32

2011-04-07 Thread Macpaul Lin
Hi Wolfgang, 2011/4/7 Wolfgang Denk : Dear Macpaul Lin, >> Add generic header files support for nds32 architecture. >> Cache, ptregs, data type and other definitions are included. >> >> Signed-off-by: Macpaul Lin > > Checkpatch complains a lot about "do not add new typedefs". Indeed, but this s

Re: [U-Boot] [PATCH v2 4/6] Create PHY Lib for U-Boot

2011-04-07 Thread Wolfgang Denk
Dear Andy Fleming, In message you wrote: > > > it'd be nice if all these unrelated formatting changes werent > > > intermingled. > > but i guess too hard for you to untangle now. make it a pita to pick > out > > what > > are functional changes and what is pure noise. > > > A lot of that's

Re: [U-Boot] [PATCH 01/13] add XScale sub architecture (IXP/PXA) to board list

2011-04-07 Thread Wolfgang Denk
Dear Marek Vasut, In message <201104071529.42290.marek.va...@gmail.com> you wrote: > > > > Marek, it seems you forgot to clean up MAINTAINERS, and also to add > > the removed boards to the "doc/README.scrapyard" file. Can you please > > provide cleanup patches for these commits: > > > > 4262a7c

Re: [U-Boot] [PATCH v7 01/10] nds32: add header files support for nds32

2011-04-07 Thread Wolfgang Denk
Dear Macpaul Lin, In message <1302180333-25372-1-git-send-email-macp...@andestech.com> you wrote: > Add generic header files support for nds32 architecture. > Cache, ptregs, data type and other definitions are included. > > Signed-off-by: Macpaul Lin Checkpatch complains a lot about "do not add

Re: [U-Boot] [PATCH v2 4/6] Create PHY Lib for U-Boot

2011-04-07 Thread Andy Fleming
On Apr 6, 2011, at 6:09 PM, Mike Frysinger wrote: > On Tuesday, April 05, 2011 17:59:52 Andy Fleming wrote: >> -#define debug(fmt,args...) printf (fmt ,##args) >> +#define debug(fmt, args...) printf(fmt, ##args) > > it'd be nice if all these unrelated formatting changes werent intermingled. >

Re: [U-Boot] [PATCH v2 0/6] Universal PHY Infrastructure

2011-04-07 Thread Andy Fleming
On Apr 6, 2011, at 7:07 AM, Detlev Zundel wrote: > Hi Andy, > >> This second version cleans up all checkpatch errors that I reasonably could, >> and addresses most of the comments from the first round of reviews. > > WARNING: Use of volatile is usually wrong: see > Documentation/volatile-cons

Re: [U-Boot] [PATCH V8 0/6] add i2c support to pantheon and aramada100

2011-04-07 Thread Heiko Schocher
Hello Prafulle, Prafulla Wadaskar wrote: > >> -Original Message- >> From: Lei Wen [mailto:lei...@marvell.com] >> Sent: Tuesday, April 05, 2011 1:31 PM >> To: Heiko Schocher; Prafulla Wadaskar; Wolfgang Denk; u- >> b...@lists.denx.de; Marek Vasut; Ashish Karkare; Prabhanjan Sarnaik; Yu >>

Re: [U-Boot] [PATCH 01/13] add XScale sub architecture (IXP/PXA) to board list

2011-04-07 Thread Marek Vasut
On Wednesday 26 January 2011 08:30:35 Wolfgang Denk wrote: > Dear Michael Schwingen, > > In message <4d3f5f45.4020...@discworld.dascon.de> you wrote: > > > That's not a "board list", but the MAINTAINERS file (I would > > > expect changes to boards.cfg when I read "board list"). > > > > Right. Do

Re: [U-Boot] [PATCH V8 0/6] add i2c support to pantheon and aramada100

2011-04-07 Thread Prafulla Wadaskar
> -Original Message- > From: Lei Wen [mailto:lei...@marvell.com] > Sent: Tuesday, April 05, 2011 1:31 PM > To: Heiko Schocher; Prafulla Wadaskar; Wolfgang Denk; u- > b...@lists.denx.de; Marek Vasut; Ashish Karkare; Prabhanjan Sarnaik; Yu > Tang; adrian.w...@gmail.com > Subject: [PATCH V8

Re: [U-Boot] [U-Boot-Users] U-Boot WinCE booting support?

2011-04-07 Thread Marek Vasut
On Thursday 07 April 2011 15:02:37 Balaji P wrote: > Hi > I want to boot wince using uboot. Please provide me some help. Any why don't you just stick with eboot ? ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-b

[U-Boot] [U-Boot-Users] U-Boot WinCE booting support?

2011-04-07 Thread Balaji P
Hi I want to boot wince using uboot. Please provide me some help. -- Thanks& Regards Balaji P ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v7 05/10] nds32/ag101: lowlevel_init.S of ag101

2011-04-07 Thread Macpaul Lin
HI Wolfgang and all, 2011/4/7 Macpaul Lin : > lowlevel_init.S is a peripheral initial procedure of ag101. > It configures onboard dram, clock, and power settings. > It also prepars the dram environment before moving u-boot > from rom and flash into dram. > I'm so sorry there is really a need to s

[U-Boot] [PATCH v7 09/10] nds32: common bdinfo, bootm, image support

2011-04-07 Thread Macpaul Lin
Add support of NDS32 to common commands bdinfo, bootm, and image format. Signed-off-by: Macpaul Lin --- common/cmd_bdinfo.c | 28 +++- common/cmd_bootm.c |2 ++ common/image.c |1 + include/image.h |5 + 4 files changed, 35 insertions(+), 1 del

[U-Boot] [PATCH v7 10/10] adp-ag101: add board adp-ag101 support

2011-04-07 Thread Macpaul Lin
Add adp-ag101.c board config and related settings. Add evaluation board "adp-ag101" configuration file adp-ag101.h. Add board adp-ag101 into boards.cfg Signed-off-by: Macpaul Lin --- Changes for v1-v4: - code clean up Changes for v5-v6: - adp-ag101.h - Refine the definitions and parameter

[U-Boot] [PATCH v7 08/10] nds32: standalone support

2011-04-07 Thread Macpaul Lin
Add standalone program related support for nds32 architecture. Signed-off-by: Macpaul Lin --- examples/standalone/nds32.lds | 64 + examples/standalone/stubs.c | 17 +- examples/standalone/x86-testapp.c | 12 +++ 3 files changed, 92

[U-Boot] [PATCH v7 07/10] nds32/lib: add generic funcs in NDS32 lib

2011-04-07 Thread Macpaul Lin
Add Makefile, board.c, interrupts.c and bootm.c functions to nds32 architecture. Signed-off-by: Macpaul Lin --- Changes for v1-v4: - code clean up and formatting style. Changes for v5-v6: - board.c - Do some clean up and add code - Remove display banner which hasn't support. - Add f

[U-Boot] [PATCH v7 06/10] nds32/ag101: cpu and init funcs of SoC ag101

2011-04-07 Thread Macpaul Lin
Add main function of SoC ag101 based on NDS32 n1213 core. cpu.c According to the bootstrap procedure in n1213 Core, to turn off watchdog timer is suggested after the cpu is in superuser mdoe. 1. bootstrap 1.1 reset - start of Andesboot 1.2 to superuser mode - as is when reset 1.3 Turn off

[U-Boot] [PATCH v7 01/10] nds32: add header files support for nds32

2011-04-07 Thread Macpaul Lin
Add generic header files support for nds32 architecture. Cache, ptregs, data type and other definitions are included. Signed-off-by: Macpaul Lin --- Changes for v1-v4: - Code cleanup and style formatting. Changes for v5-v6: - This patch also updated the following changes against the c

[U-Boot] [PATCH v7 04/10] nds32/ag101: dev offset header of SoC ag101

2011-04-07 Thread Macpaul Lin
Add header file of device offset support for SoC ag101. SoC ag101 is the first chip using NDS32 N1213 cpu core. Note: Ag101 is actually use ftsdmc021 instead of ftsdmc020 as dram controller, which is probably wrong in the datasheet. Signed-off-by: Macpaul Lin --- arch/nds32/include/asm/a

[U-Boot] [PATCH v7 03/10] nds32/core N1213: NDS32 N12 core family N1213

2011-04-07 Thread Macpaul Lin
Add N1213 cpu core (N12 Core family) support for NDS32 arch. This patch includes start.S for the initialize procedure of N1213. NDS32 Core N1213 has the following hardware features. Core: - 16-/32-bit mixable instruction format - 32 general-purpose 32-bit registers - 8-stage pipeline - D

[U-Boot] [PATCH v7 05/10] nds32/ag101: lowlevel_init.S of ag101

2011-04-07 Thread Macpaul Lin
lowlevel_init.S is a peripheral initial procedure of ag101. It configures onboard dram, clock, and power settings. It also prepars the dram environment before moving u-boot from rom and flash into dram. This version of lowlevel_init.S also replace hardcode value by MARCO defines from the GPL versi

[U-Boot] [PATCH v7 02/10] nds32: add NDS32 support into common header file

2011-04-07 Thread Macpaul Lin
Add NDS32 support into common header file. Signed-off-by: Macpaul Lin --- include/common.h |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/common.h b/include/common.h index 54503ed..423bbd8 100644 --- a/include/common.h +++ b/include/common.h @@ -273,6 +273,10

[U-Boot] nand partition

2011-04-07 Thread Sanjeev_86
How to do nand partition and support jffs2 file system. -- View this message in context: http://old.nabble.com/nand-partition-tp31341957p31341957.html Sent from the Uboot - Users mailing list archive at Nabble.com. ___ U-Boot mailing list U-Boot@lists

[U-Boot] HELLO

2011-04-07 Thread Anita Abdul
I am writing this letter out of a genuine desperation to find a reliable partner in an unfolding transaction. I seek your help and genuine co-operation to our mutual benefit and I believe that you will not letdown the trust and confidence I am about to repose on you. I am Anita, Purchasi

[U-Boot] Please pull u-boot-cfi-flash

2011-04-07 Thread Stefan Roese
Hi Wolfgang, please pull the following changes: The following changes since commit 4db2fa7f9446d0f2fe8db3d62184b1212fe22707: Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-04-05 12:24:20 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-cfi-flash

Re: [U-Boot] [PATCH 2/3] mtd, cfi: introduce void flash_protect_default(void)

2011-04-07 Thread Stefan Roese
On Monday 04 April 2011 08:10:21 Heiko Schocher wrote: > collect code which protects default sectors in a function, called > flash_protect_default. So boardspecific code can call it too. Applied to u-boot-cfi-flash. Thanks. Cheers, Stefan -- DENX Software Engineering GmbH, MD: Wolfgang Den

Re: [U-Boot] [PATCH v2] cfi_flash: use AMD fixups for AMIC (e.g. A29L160A series) too

2011-04-07 Thread Stefan Roese
On Monday 21 February 2011 13:13:14 Mario Schuknecht wrote: > Signed-off-by: Mario Schuknecht > Signed-off-by: Steffen Sledz Applied to u-boot-cfi-flash. Thanks. Cheers, Stefan -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D

Re: [U-Boot] [PATCH 2/2] Initialize second PHY on OpenRD-Client and OpenRD-Ultimate.

2011-04-07 Thread Albert ARIBAUD
Le 07/04/2011 08:17, Prafulla Wadaskar a écrit : > > >> -Original Message- >> From: Clint Adams [mailto:cl...@debian.org] >> Sent: Thursday, April 07, 2011 12:25 AM >> To: u-boot@lists.denx.de >> Cc: Prafulla Wadaskar; julian.pidan...@citrix.com; Clint Adams >> Subject: [PATCH 2/2] Initiali

Re: [U-Boot] [PATCH v2 4/6] Create PHY Lib for U-Boot

2011-04-07 Thread Wolfgang Denk
Dear Mike Frysinger, In message <201104070047.28480.vap...@gentoo.org> you wrote: > > > We don't allow for CamelCaps identifiers or macro names. Macros are > > all caps, please. Please fix globally. > > these are taken straight from Linux which makes code sharing a lot easier I realized this la

Re: [U-Boot] [PATCH] Handle most LDSCRIPT setting centrally

2011-04-07 Thread Wolfgang Denk
Dear Scott Wood, In message <20110406233136.ga13...@schlenkerla.am.freescale.net> you wrote: > Currently, some linker scripts are found by common code in config.mk. > Some are found using CONFIG_SYS_LDSCRIPT, but the code for that is > sometimes in arch config.mk and sometimes in board config.mk.