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
---
board/cm4008/cm4008.c |4 ++--
1 files
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
---
board/cm41xx/cm41xx.c |4 ++--
1 files
Trivial conversion of the ks8695eth driver to a CONFIG_MULTI_ETH type
driver.
Signed-off-by: Greg Ungerer
---
board/cm4008/cm4008.c|4
board/cm41xx/cm41xx.c|4
drivers/net/ks8695eth.c | 42 --
include/configs/cm4008.h |1 +
Hi Wolfgang,
On 09/10/2011 08:32 AM, Wolfgang Denk wrote:
> Dear Greg,
>
> In message<1315570750-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
From: Andrew Murray
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:
- Use dedica
From: Andrew Murray
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: Andrew Murray
---
tools
From: Andrew Murray
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
---
common/console.c | 27 ++
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
---
common/cmd_bootm.c |1 +
1 files changed, 1 insertions
From: Andrew Murray
Documentation for the CONFIG_BOOT_TRACE option.
---
Changes for v2:
- Update documentation for v2 changes
Signed-off-by: Andrew Murray
---
doc/README.bootgraph | 54 ++
1 files changed, 54 insertions(+), 0 deletions(
From: Andrew Murray
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
---
common/main.c |
From: Andrew Murray
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
---
arch/arm/lib/board.c | 26 +-
1 files changed, 17 insertions
On 1 September 2011 00:53, Andrew Murray 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 await the
From: Andrew Murray
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 initialisation functions during
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
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 argu
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 argu
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
> ---
> board/cm4008/cm4008.c|4
> board/cm41xx/cm41xx.c|
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
> ---
>
> Changes since V1:
> - make list sorted (Wolfgang Denk)
>
> nand_spl/board/davinci/da8xxevm/Makefil
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
Cc: Simo
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 occu
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 netdev.
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 device
Hi,
On 10 September 2011 16:06, Wolfgang Denk 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 must
> l
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__ , t
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 Dureghello
---
arch/m68k/cpu/mcf530x/Makefile | 48 +++
arch/m68k/cpu
>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 maili
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
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'
func
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"
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 'lon
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)
>
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:14
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: impli
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 fun
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
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
> > Cc: Scott Wood
> > Cc: Stefano Babic
> > Cc: Wolfg
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 sourc
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 :
> > > On Friday, September 09, 2011 07:02:24 AM Chander Kashyap wrote:
> > >> Dear Marek Vasut,
> > >> Please use newly added spl framework to
On Friday, September 09, 2011 03:14:06 PM Chander Kashyap wrote:
> 2011/9/9 Marek Vasut :
> > 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 elabora
39 matches
Mail list logo