Re: [U-Boot] Please pull u-boot-ti/master

2011-09-10 Thread Albert ARIBAUD
Le 09/09/2011 23:26, Albert ARIBAUD a écrit : Hi Sandeep, Le 09/09/2011 22:35, s-paul...@ti.com a écrit : Albert, Stefano just sent a patch to fix an issue with the hawk board Regards, Sandeep The following changes since commit 6c01fdfbf64958f3b9390f271897fc18c7909c5f:

Re: [U-Boot] Please pull u-boot-ti/master

2011-09-10 Thread Albert ARIBAUD
Hi Sandeep, Le 09/09/2011 22:35, s-paul...@ti.com a écrit : Albert, Stefano just sent a patch to fix an issue with the hawk board Regards, Sandeep The following changes since commit 6c01fdfbf64958f3b9390f271897fc18c7909c5f: Sandeep Paulraj (1): Merge branch 'master'

[U-Boot] [PATCH] CM4008: fix signedness of env bootargs string pointer

2011-09-10 Thread Greg Ungerer
The pointer to the flash based bootargs should be a char *, not unsigned. Fixes: cm4008.c: In function ‘env_flash_cmdline’: cm4008.c:67: warning: pointer targets in passing argument 2 of ‘setenv’ differ in signedness Signed-off-by: Greg Ungerer greg.unge...@opengear.com ---

[U-Boot] [PATCH] CM41xx: fix signedness of env bootargs string pointer

2011-09-10 Thread Greg Ungerer
The pointer to the flash based bootargs should be a char *, not unsigned. Fixes: cm41xx.c: In function ‘env_flash_cmdline’: cm41xx.c:67: warning: pointer targets in passing argument 2 of ‘setenv’ differ in signedness Signed-off-by: Greg Ungerer greg.unge...@opengear.com ---

[U-Boot] [PATCH] KS8695: convert KS8695 eth driver to CONFIG_MULTI_ETH

2011-09-10 Thread Greg Ungerer
Trivial conversion of the ks8695eth driver to a CONFIG_MULTI_ETH type driver. Signed-off-by: Greg Ungerer greg.unge...@opengear.com --- board/cm4008/cm4008.c|4 board/cm41xx/cm41xx.c|4 drivers/net/ks8695eth.c | 42 --

Re: [U-Boot] [PATCH] KS8695: move TIMER_ definitions before code use

2011-09-10 Thread Greg Ungerer
Hi Wolfgang, On 09/10/2011 08:32 AM, Wolfgang Denk wrote: Dear Greg, In message1315570750-472-1-git-send-email-greg.unge...@opengear.com you wrote: Move the TIMER_ definitions before they are used in KS8695 timer.c code. Fixes: Could you please also fix the remaining warnings: Sure

[U-Boot] [PATCH v2 2/7] Add macros for recording init calls during UBoot execution

2011-09-10 Thread Andrew Murray
From: Andrew Murray amur...@mpcdata.com This patch adds macros which allow for the instrumentation of UBoot boot time. The macros can be used to call existing initialisation functions during start up. Each macro adds printf statements before and after the initialisation call. --- Changes for v2:

[U-Boot] [PATCH v2 1/7] Add bootgraph.pl script for generating a boot graph SVG file

2011-09-10 Thread Andrew Murray
From: Andrew Murray amur...@mpcdata.com This is a port of the kernel's script/bootgraph.pl script which generates an SVG image illustrating boot time in UBoot. The script relies on additional output generated by UBoot during boot when the CONFIG_BOOT_TRACE option is enabled. Signed-off-by:

[U-Boot] [PATCH v2 3/7] Add timing information to printf's for use with bootgraph.pl

2011-09-10 Thread Andrew Murray
From: Andrew Murray amur...@mpcdata.com This patch adds timings information to printfs. --- Changes for v2: - Add dedicated function to printf with timestamps - Fix compiler warnings - Remove code duplication within printf Signed-off-by: Andrew Murray amur...@theiet.org

[U-Boot] [PATCH v2 5/7] Add bootgraph instrumentation for bootm command

2011-09-10 Thread Andrew Murray
Under normal operation the bootm command will never return - this patch adds additional instrumentation to signal the 'end' of the bootm command such that this point can be reflected in any bootgraph SVG. Signed-off-by: Andrew Murray amur...@theiet.org --- common/cmd_bootm.c |1 + 1 files

[U-Boot] [PATCH v2 7/7] Add documentation for bootgraph.pl

2011-09-10 Thread Andrew Murray
From: Andrew Murray amur...@mpcdata.com Documentation for the CONFIG_BOOT_TRACE option. --- Changes for v2: - Update documentation for v2 changes Signed-off-by: Andrew Murray amur...@theiet.org --- doc/README.bootgraph | 54 ++ 1 files

[U-Boot] [PATCH v2 6/7] Add bootgraph instrumentation for UBoot commands

2011-09-10 Thread Andrew Murray
From: Andrew Murray amur...@mpcdata.com This patch adds bootgraph instrumentation for all U_BOOT_CMDs where the HUSH parser is not used. The patch also adds instrumentation for the common boot delay. --- Changes for v2: - Use improved DO_INITCALL_RET macro Signed-off-by: Andrew Murray

[U-Boot] [PATCH v2 4/7] Add bootgraph instrumentation for ARM boards

2011-09-10 Thread Andrew Murray
From: Andrew Murray amur...@mpcdata.com This patch adds bootgraph instrumentation for ARM boards. --- Changes for v2: - Use improvde DO_INITCALL_RET macro - Fix compiler warnings Signed-off-by: Andrew Murray amur...@theiet.org --- arch/arm/lib/board.c | 26

Re: [U-Boot] [PATCH 0/7] Bootgraph.pl instrumentation support for UBoot

2011-09-10 Thread Andrew Murray
On 1 September 2011 00:53, Andrew Murray amur...@theiet.org wrote: I will assume that we have a microsecond timer, update my patch and resubmit so you can take a look and see what you think. Hopefully we can unify this, your patch and the boot_progress stuff. Excellent! OK, well I will

[U-Boot] [PATCH v2 2/7] Add macros for recording init calls during UBoot execution

2011-09-10 Thread Andrew Murray
From: Andrew Murray amur...@mpcdata.com The previous patch included a compile error when the CONFIG_BOOT_TRACE macro is not set, this is an update to that patch --- This patch adds macros which allow for the instrumentation of UBoot boot time. The macros can be used to call existing

[U-Boot] [PATCH] utx8245: fix build breakage due to assert()

2011-09-10 Thread Wolfgang Denk
Commit 21726a7 Add assert() for debug assertions broke building the utx8245 board: dlmalloc.c: In function 'do_check_chunk': dlmalloc.c:1660: error: 'sz' undeclared (first use in this function) dlmalloc.c:1660: error: (Each undeclared identifier is reported only once dlmalloc.c:1660: error: for

Re: [U-Boot] [PATCH] CM4008: fix signedness of env bootargs string pointer

2011-09-10 Thread Wolfgang Denk
Dear Greg Ungerer, In message 1315643800-10579-1-git-send-email-greg.unge...@opengear.com you wrote: The pointer to the flash based bootargs should be a char *, not unsigned. Fixes: cm4008.c: In function ‘env_flash_cmdline’: cm4008.c:67: warning: pointer targets in passing argument 2

Re: [U-Boot] [PATCH] CM41xx: fix signedness of env bootargs string pointer

2011-09-10 Thread Wolfgang Denk
Dear Greg Ungerer, In message 1315643841-10616-1-git-send-email-greg.unge...@opengear.com you wrote: The pointer to the flash based bootargs should be a char *, not unsigned. Fixes: cm41xx.c: In function ‘env_flash_cmdline’: cm41xx.c:67: warning: pointer targets in passing argument 2

Re: [U-Boot] [PATCH] KS8695: convert KS8695 eth driver to CONFIG_MULTI_ETH

2011-09-10 Thread Wolfgang Denk
Dear Greg Ungerer, In message 1315644034-10661-1-git-send-email-greg.unge...@opengear.com you wrote: Trivial conversion of the ks8695eth driver to a CONFIG_MULTI_ETH type driver. Signed-off-by: Greg Ungerer greg.unge...@opengear.com --- board/cm4008/cm4008.c|4

Re: [U-Boot] [PATCH V2] ARM: hawkboard_nand: fix compilation of nand_spl

2011-09-10 Thread Wolfgang Denk
Dear Stefano Babic, In message 1315573742-10128-1-git-send-email-sba...@denx.de you wrote: get_ram_size() is called, but memsize.c is not compiled. Signed-off-by: Stefano Babic sba...@denx.de --- Changes since V1: - make list sorted (Wolfgang Denk)

[U-Boot] [PATCH] tegra2: fix warning: assert redefined

2011-09-10 Thread Wolfgang Denk
Commit 21726a7 Add assert() for debug assertions caused build warnings for all tegra2 based boards: clock.c:36:1: warning: assert redefined In file included from clock.c:29: include/common.h:144:1: warning: this is the location of the previous definition Signed-off-by: Wolfgang Denk w...@denx.de

[U-Boot] [PATCH] Improve output of bootm command

2011-09-10 Thread Andrew Murray
It's common for the bootm command to move a provided image in memory prior to it's execution - this move can contribute to increased boot times. This move is often seen in poorly configured devices which boot from NAND. This patch improves the output of the bootm command such that when a move

[U-Boot] [PATCH] cm4008, cm41xx: fix build warnings

2011-09-10 Thread Wolfgang Denk
Fix these: cm4008.c: In function 'board_eth_init': cm4008.c:79: warning: implicit declaration of function 'ks8695_eth_initialize' cm41xx.c: In function 'board_eth_init': cm41xx.c:79: warning: implicit declaration of function 'ks8695_eth_initialize' While we are at it, sort include list in

Re: [U-Boot] [PATCH] Improve output of bootm command

2011-09-10 Thread Wolfgang Denk
Dear Andrew Murray, In message 131567-6270-1-git-send-email-amur...@theiet.org you wrote: It's common for the bootm command to move a provided image in memory prior to it's execution - this move can contribute to increased boot times. This move is often seen in poorly configured devices

Re: [U-Boot] [PATCH] Improve output of bootm command

2011-09-10 Thread Andrew Murray
Hi, On 10 September 2011 16:06, Wolfgang Denk w...@denx.de wrote: Sorry, but I don't want to have this output. It would be always be printed for all systems booting from NOR flash, where the copy operation is absolutely normal. Also, on all PowerPC systems it is absolutely normal that you

Re: [U-Boot] [HELP] coldfire, bss.variable offset greater than __bss_end

2011-09-10 Thread Angelo Dureghello
Hi all, i reply just to close the thread and to help each other that can have similar issues, this since i have seen other boards that can have the same issue. The issue was related to my custom board, and more properly was that the linker added some other .bss.* variables after __bss_end__ ,

[U-Boot] [PATCH 1/1 V3] add support for mcf5307 cpu

2011-09-10 Thread Angelo Dureghello
Add support for mcf5307 coldfire cpu. This is the updated entire patch, tested on a mcf5307 based custom board. Only this new set of file has been added, no other files in the tree are involved. Signed-off-by: Angelo Dureghellosysa...@gmail.com --- arch/m68k/cpu/mcf530x/Makefile | 48

Re: [U-Boot] Please pull u-boot-ti/master

2011-09-10 Thread Paulraj, Sandeep
Alright, as Sandeep did not respond quickly, I'll assume he isn't available right now. Since there is only one commit, I'll cherry-pick it (and then run some builds and send an ARM pull req). Thanks, just saw this. Regards, Sandeep ___ U-Boot mailing

[U-Boot] (no subject)

2011-09-10 Thread UK INTERNATIONAL LOTTERY
YOU HAVE WON $750,000USD,TO CLAIM SEND YOUR NAME,ADDRESS MOBILE.___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] ARM: hawkboard: fix compilation of nand_spl

2011-09-10 Thread Wolfgang Denk
Fix build problem: nand_spl/board/davinci/da8xxevm/hawkboard_nand_spl.c: In function 'board_init_f': nand_spl/board/davinci/da8xxevm/hawkboard_nand_spl.c:132: warning: implicit declaration of function 'nand_boot' nand_spl/board/davinci/da8xxevm/hawkboard_nand_spl.c:133: warning: 'noreturn'

Re: [U-Boot] [PATCH] Fix warning: assert redefined

2011-09-10 Thread Wolfgang Denk
Dear Wolfgang Denk, In message 1315607922-7285-1-git-send-email...@denx.de you wrote: Commit 21726a7 Add assert() for debug assertions caused build warnings for many systems: In file included from bedbug.c:6: /home/wd/git/u-boot/work/include/bedbug/bedbug.h:24:1: warning: assert redefined

Re: [U-Boot] [PATCH] UBIFS: fix warning: format '%lX' expects type 'long unsigned int'

2011-09-10 Thread Wolfgang Denk
Dear Wolfgang Denk, In message 1315608216-7425-1-git-send-email...@denx.de you wrote: Commit 46d7274 UBIFS: Change ubifsload to set the filesize variable introduced the follwing compiler warning: ubifs.c: In function 'ubifs_load': ubifs.c:742: warning: format '%lX' expects type 'long

Re: [U-Boot] [PATCH] utx8245: fix build breakage due to assert()

2011-09-10 Thread Wolfgang Denk
Dear Wolfgang Denk, In message 1315663665-24926-1-git-send-email...@denx.de you wrote: Commit 21726a7 Add assert() for debug assertions broke building the utx8245 board: dlmalloc.c: In function 'do_check_chunk': dlmalloc.c:1660: error: 'sz' undeclared (first use in this function)

Re: [U-Boot] [PATCH] tegra2: fix warning: assert redefined

2011-09-10 Thread Wolfgang Denk
Dear Wolfgang Denk, In message 1315664363-3979-1-git-send-email...@denx.de you wrote: Commit 21726a7 Add assert() for debug assertions caused build warnings for all tegra2 based boards: clock.c:36:1: warning: assert redefined In file included from clock.c:29: include/common.h:144:1:

Re: [U-Boot] [PATCH] cm4008, cm41xx: fix build warnings

2011-09-10 Thread Wolfgang Denk
Dear Wolfgang Denk, In message 1315666885-4666-1-git-send-email...@denx.de you wrote: Fix these: cm4008.c: In function 'board_eth_init': cm4008.c:79: warning: implicit declaration of function 'ks8695_eth_initialize' cm41xx.c: In function 'board_eth_init': cm41xx.c:79: warning: implicit

Re: [U-Boot] [PATCH] ARM: hawkboard: fix compilation of nand_spl

2011-09-10 Thread Wolfgang Denk
Dear Wolfgang Denk, In message 1315686495-9133-1-git-send-email...@denx.de you wrote: Fix build problem: nand_spl/board/davinci/da8xxevm/hawkboard_nand_spl.c: In function 'board_init_f': nand_spl/board/davinci/da8xxevm/hawkboard_nand_spl.c:132: warning: implicit declaration of function

Re: [U-Boot] [PATCH 01/48] ARM: Update mach-types

2011-09-10 Thread Marek Vasut
On Friday, September 09, 2011 05:58:42 PM Wolfgang Denk wrote: Dear Marek Vasut, In message 201109091538.05019.marek.va...@gmail.com you wrote: I suspect you're going to have to trim this back to what is contained in Linus' tree. Which we do need to catch up to, btw. We have up to

Re: [U-Boot] [PATCH 5/5] NAND: Add scrub.quiet command option

2011-09-10 Thread Marek Vasut
On Friday, September 09, 2011 05:39:07 PM Detlev Zundel wrote: Hi Marek, This allows the scrub command to scrub without asking the user if he really wants to scrub the area. Useful in scripts. Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Scott Wood scottw...@freescale.com

Re: [U-Boot] [PATCH 01/48] ARM: Update mach-types

2011-09-10 Thread Wolfgang Denk
Dear Marek Vasut, In message 201109102249.13368.marek.va...@gmail.com you wrote: Well we'll have to break this policy. M28EVK machine ID isn't there yet. On the other hand, it's here: http://www.arm.linux.org.uk/developer/machines/ Which I'd guess is the most up-to-date source.

Re: [U-Boot] [PATCH 14/31] iMX28: Add MMC SPL

2011-09-10 Thread Marek Vasut
On Saturday, September 10, 2011 10:58:48 PM Marek Vasut wrote: On Friday, September 09, 2011 03:14:06 PM Chander Kashyap wrote: 2011/9/9 Marek Vasut marek.va...@gmail.com: On Friday, September 09, 2011 07:02:24 AM Chander Kashyap wrote: Dear Marek Vasut, Please use newly added spl

Re: [U-Boot] [PATCH 14/31] iMX28: Add MMC SPL

2011-09-10 Thread Marek Vasut
On Friday, September 09, 2011 03:14:06 PM Chander Kashyap wrote: 2011/9/9 Marek Vasut marek.va...@gmail.com: On Friday, September 09, 2011 07:02:24 AM Chander Kashyap wrote: Dear Marek Vasut, Please use newly added spl framework to add mmc spl support. Hi, if you could possibly