[U-Boot] [RFC/PATCH] allow boards to customize compiler options on a per-file/dir basis

2009-05-17 Thread Mike Frysinger
With our Blackfin boards, we like to build the compression routines with -O2 as our tests show a pretty good size/speed tradeoff. For the rest of U-Boot though, we want to stick with the default -Os as that is mostly control code. So in our case, we would add a line like so to the board specific

[U-Boot] [RFC/PATCH] Add support for Linux-like kallsysms

2009-05-17 Thread Mike Frysinger
The kernel stores address<->symbol names in it so things can be decoded at runtime. Do it in U-Boot, and we get nice symbol decoding when crashing. Signed-off-by: Mike Frysinger --- Makefile | 17 +++--- common/Makefile |1 + common/kalls

[U-Boot] Ethernet not working on OMAP3 board with

2009-05-17 Thread Pillai, Manikandan
Hi, I was testing the latest tip of u-boot and v2009.06-rc1, I find that the Ethernet is not working. Is there some fix available for this issue ? The 2009.03 was working fine. Regards Mani --- Manikandan Pillai BCG-PSP Project Le

[U-Boot] Booting X86 using uboot

2009-05-17 Thread Zvi Vered
Hello, Is it possible to boot an X86 machine (with ATOM or Core2Duo) using uboot ? If yes, how uboot is loaded to the master boot record of the disk from which the machine is booted ? What file in include/configs fits to x86 board ? Thanks.___ U-Boot

Re: [U-Boot] [PATCH 1/1] arm: unify some CONFIGs

2009-05-17 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <1242593505-27370-1-git-send-email-plagn...@jcrosoft.com> you wrote: > all arm boards share the same following define > > size in bytes reserved for initial data > CONFIG_SYS_GBL_DATA_SIZE > > max number of command args > CONFIG_SYS_MAXARGS > >

Re: [U-Boot] [PATCH v2] OMAP3: Zoom2: Enable Board and CPU info

2009-05-17 Thread Jean-Christophe PLAGNIOL-VILLARD
On 12:31 Sun 17 May , Dirk Behme wrote: > With other OMAP3 boards we recently switched to CPU and Board > info API. From parallel merge, this is missing for Zoom2. > Enable it for Zoom2, too. > > CC: Tom Rix > Signed-off-by: Dirk Behme > --- Applied to arm/next Best Regards, J.

Re: [U-Boot] [RFC/PATCH] jffs2/mtdparts: Fix problem with usage from JFFS2 and MTDPARTS together

2009-05-17 Thread Wolfgang Denk
Dear Stefan, on NOR fals systems with just a single bank of memory it seems to work: => chpart nor0,3 partition changed to nor0,3 => fsinfo ### filesystem type is JFFS2 Scanning JFFS2 FS: . done. Compression: NONE frag count: 25 compressed sum: 0 uncompressed sum: 0 Compr

Re: [U-Boot] [RFC/PATCH] jffs2/mtdparts: Fix problem with usage from JFFS2 and MTDPARTS together

2009-05-17 Thread Wolfgang Denk
Dear Stefan, In message <1242468262-25814-1-git-send-email...@denx.de> you wrote: > Currently using JFFS2 with MTDPARTS enabled doesn't work. This is because > mtdparts_init() is available in both files, cmd_mtdparts.c and > cmd_jffs2.c. Please note that in the original cmd_jffs2.c file (before >

Re: [U-Boot] new cpu(Ingenic), new board(PI)

2009-05-17 Thread Wolfgang Denk
Dear xiangfu_gmail, In message <4a101e59.8050...@gmail.com> you wrote: > > I have try to add new device(PI) to u-boot. > when I compile the code I get error message: ... > -c -o bedbug.o bedbug.c > bedbug.c: In function 'find_next_address': > bedbug.c:1081: error: 'struct pt_regs' has no member na

Re: [U-Boot] new cpu(Ingenic), new board(PI)

2009-05-17 Thread xiangfu_gmail
Wolfgang Denk wrote: > Dear xiangfu_gmail, > > In message <49e5a2ed.2060...@gmail.com> you wrote: > >> there is a device name PI, >> the CPU is Ingenic 4740 [1], >> now we have the u-boot-1.1.6 patch. >> >> >> I have try to add new device(PI) to u-boot. when I compile the code I get error m

[U-Boot] [PATCH] cmd_mtdparts.c: allow to omit definitions for default settings

2009-05-17 Thread Wolfgang Denk
There is actually no good reason to enforce that all board configuations must define default settings for "mtdids" and "mtdparts". Actually this may be difficult to handle, especially on boards where different sizes of flash chips can be fit, so there is no real "default" partition map for all boa

Re: [U-Boot] [RFC/PATCH] jffs2/mtdparts: Fix problem with usage from JFFS2 and MTDPARTS together

2009-05-17 Thread Wolfgang Denk
Dear Stefan, In message <1242468262-25814-1-git-send-email...@denx.de> you wrote: > Currently using JFFS2 with MTDPARTS enabled doesn't work. This is because > mtdparts_init() is available in both files, cmd_mtdparts.c and > cmd_jffs2.c. Please note that in the original cmd_jffs2.c file (before >

Re: [U-Boot] [PATCH] Canyonlands

2009-05-17 Thread Kazuaki Ichinohe
Hello Denk, Stefan, I sent the patch source again on May 15. I corrected your pointing out. Could you review the patch source again ? Regards, Kazuaki Ichinohe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] OMAP3: Zoom2: Fix missing Board and CPU info

2009-05-17 Thread Dirk Behme
Dear Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 16:11 Sat 16 May , Dirk Behme wrote: >> With other OMAP3 boards we recently switched to CPU and Board >> info API. From parallel merge, this is missing for Zoom2. >> Enable it for Zoom2, too. > It's an option so it's not a fix

[U-Boot] [PATCH v2] OMAP3: Zoom2: Enable Board and CPU info

2009-05-17 Thread Dirk Behme
With other OMAP3 boards we recently switched to CPU and Board info API. From parallel merge, this is missing for Zoom2. Enable it for Zoom2, too. CC: Tom Rix Signed-off-by: Dirk Behme --- Changes in v2: - Use full name in CC Compile tested on recent u-boot next branch. include/configs/omap3

Re: [U-Boot] [PATCH 2/2] ZOOM2 Add led support.

2009-05-17 Thread Jean-Christophe PLAGNIOL-VILLARD
On 13:49 Sat 16 May , Tom Rix wrote: > This patch controls the large LED on the top left of the zoom2. > > Signed-off-by: Tom Rix > --- Applied to arm/next Best Regards, J. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/l

Re: [U-Boot] [PATCH 1/2] ZOOM2 Add serial support.

2009-05-17 Thread Jean-Christophe PLAGNIOL-VILLARD
On 13:49 Sat 16 May , Tom Rix wrote: > Zoom2 serial is in general supplied by one of the 4 UARTS on the debug board. > The default serial is from the USB connector on left side of the debug board. > The USB connector will produce 2 of the 4 UARTS. On your host pick the first > enumeration. >

Re: [U-Boot] [PATCH] OMAP3: Zoom2: Fix missing Board and CPU info

2009-05-17 Thread Jean-Christophe PLAGNIOL-VILLARD
On 16:11 Sat 16 May , Dirk Behme wrote: > With other OMAP3 boards we recently switched to CPU and Board > info API. From parallel merge, this is missing for Zoom2. > Enable it for Zoom2, too. It's an option so it's not a fix but you enable each board Maintainer do his own choice > > CC: tom...