Re: [U-Boot] [PATCH] add missing space

2011-12-17 Thread Luka Perkov
On Fri, Dec 16, 2011 at 10:59:03AM -0500, Mike Frysinger wrote: > On Friday 16 December 2011 07:13:47 Anatolij Gustschin wrote: > > On Fri, 16 Dec 2011 00:32:15 +0100 Luka Perkov wrote: > > > Cosmetic patch for first U-Boot line that gets printed. > > > > > > --- a/include/version.h > > > +++ b/in

[U-Boot] [PATCH] common/cmd_nvedit.c: Fix size calculation in do_env_import()

2011-12-17 Thread Horst Kronstorfer
do_env_import() missed the final '\0' terminator when calculating the size of an environment data block. This led to an erroneous 'bad CRC, import failed' message for a checksum protected environment (-c.) Signed-off-by: Horst Kronstorfer --- common/cmd_nvedit.c |2 +- 1 files changed, 1 in

Re: [U-Boot] arm, da850: Question about start point

2011-12-17 Thread Christian Riesch
Hi Gabriele, On Friday, December 16, 2011, Gabriele Filosofi wrote: > Hi all, > > I'm new to this mailing-list and to u-boot. > I've to port the TI SDK_5.02 to a LogicPD_SOM_AM1808 -based application board. > The SDK_5.02 is based on PSP_03.21.00.04, whose u-boot was developed on git u-boot 2010.

Re: [U-Boot] [PATCH] USB: move keyboard polling from EHCI driver into kbd driver

2011-12-17 Thread Remy Bohmer
Hi, 2011/12/16 Allen Martin : > This removes dependency on global variable "new" from EHCI driver with > CONFIG_SYS_USB_EVENT_POLL turned on and gets USB keyboard working with > EHCI driver again. > > Signed-off-by: Allen Martin > --- >  common/usb_kbd.c            |   18 +- >  dr

Re: [U-Boot] [PATCH] add missing space

2011-12-17 Thread Wolfgang Denk
Dear Luka Perkov, In message <20111216234317.GB1393@w500.iskon.local> you wrote: > > Ok, thanks for pointing this out. I guess that something like patch > bellow is not acceptable? "acceptable" is somethign that is a bit hard to define. Let's say, there is no real incentive to apply this patch.

Re: [U-Boot] U-Boot on Nokia RX-51 (aka N900)

2011-12-17 Thread Pali Rohár
Hello, I'm sending new patch series, which add Nokia RX-51 support to U-Boot. This patches are based on master commit 06e42c6e2ce269667daecd6229d0b7c813838203 and now U-Boot working on Nokia RX-51. -- Pali Rohár pali.ro...@gmail.com signature.asc Description: This is a digitally signed message p

[U-Boot] [PATCH 01/16] arch/arm/cpu/armv7/omap3/lowlevel_init.S: save_boot_params

2011-12-17 Thread Pali Rohár
* Hide function save_boot_params if CONFIG_SPL_BUILD is not defined (function do nothing) * Same behaviour as in file arch/arm/cpu/armv7/omap4/lowlevel_init.S * This allow to implement board specified function save_boot_params in board code Signed-off-by: Pali Rohár --- arch/arm/cpu/armv7/oma

[U-Boot] [PATCH 02/16] arch/arm/lib/bootm.c: Optionally use existing atags

2011-12-17 Thread Pali Rohár
This patch adapts the bootm command so that it can use an existing atags command set up by a previous bootloader. If the environment variable "atagaddr" is unset, bootm behaves as normal. If "atagaddr" is set, bootm will use atags address from environment variable and also append new boot args (if

[U-Boot] [PATCH 03/16] include/twl4030.h: Add power bus message definitions

2011-12-17 Thread Pali Rohár
* Code from linux kernel: include/linux/i2c/twl.h Signed-off-by: Pali Rohár --- include/twl4030.h | 98 + 1 files changed, 98 insertions(+), 0 deletions(-) diff --git a/include/twl4030.h b/include/twl4030.h index 9cd32ab..f040594 100644 ---

[U-Boot] [PATCH 04/16] include/common.h: Add some ANSI escape codes definitions

2011-12-17 Thread Pali Rohár
Signed-off-by: Pali Rohár --- include/common.h | 18 ++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/include/common.h b/include/common.h index 5cfdd76..0a5e84e 100644 --- a/include/common.h +++ b/include/common.h @@ -760,6 +760,24 @@ void clear_ctrlc (vo

[U-Boot] [PATCH 05/16] common/main.c: Fix function readline

2011-12-17 Thread Pali Rohár
* Ignore ANSI escape sequences for moving cursor, which are generated by keyboard Signed-off-by: Pali Rohár --- common/main.c | 49 + 1 files changed, 49 insertions(+), 0 deletions(-) diff --git a/common/main.c b/common/main.c index e96c95a..5

[U-Boot] [PATCH 06/16] drivers/video/cfb_console.c: Fix function console_scrollup

2011-12-17 Thread Pali Rohár
* Use correct buffer size, do not damage screen output Signed-off-by: Pali Rohár --- drivers/video/cfb_console.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c index 904caf7..9092399 100644 --- a/drivers/video/

[U-Boot] [PATCH 07/16] drivers/video/cfb_console.c: Add function console_swap_colors

2011-12-17 Thread Pali Rohár
* swap background and text color Signed-off-by: Pali Rohár --- drivers/video/cfb_console.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c index 9092399..867c789 100644 --- a/drivers/video/cfb_console.c ++

[U-Boot] [PATCH 08/16] drivers/video/cfb_console.c: Add function console_clear and console_clear_line

2011-12-17 Thread Pali Rohár
* console_clear - clear full console framebuffer output * console_clear_line - clear part of specified line (or full) Signed-off-by: Pali Rohár --- drivers/video/cfb_console.c | 56 +- 1 files changed, 44 insertions(+), 12 deletions(-) diff --git a/dr

[U-Boot] [PATCH 09/16] drivers/video/cfb_console.c: Add functions for moving with cursor

2011-12-17 Thread Pali Rohár
* console_cursor_fix - check and fix cursor position (if it is not out of screen) * console_cursor_up, console_cursor_down, console_cursor_left, console_cursor_right and console_cursor_set_position for changing cursor position * console_newline - added param to specify count of creating new l

[U-Boot] [PATCH 10/16] drivers/video/cfb_console.c: Add support for some ANSI terminal escape codes

2011-12-17 Thread Pali Rohár
* This patch add support for cursor move and reverse colors via ANSI espace codes in cfb_console driver * ANSI escape codes can be enabled/disabled via CONFIG_CFB_CONSOLE_ANSI Signed-off-by: Pali Rohár --- drivers/video/cfb_console.c | 205 ++- 1 files

[U-Boot] [PATCH 11/16] New command clr: Clear the ANSI terminal

2011-12-17 Thread Pali Rohár
From: Marcel Mol * Command can be enabled by CONFIG_CMD_CLR Signed-off-by: Pali Rohár --- common/Makefile |1 + common/cmd_clr.c | 38 ++ include/config_cmd_all.h |1 + 3 files changed, 40 insertions(+), 0 deletions(-) create mod

[U-Boot] [PATCH 12/16] New config variable CONFIG_MENUCMD

2011-12-17 Thread Pali Rohár
* If defined CONFIG_MENUCMD and CONFIG_MENUKEY to 0 run env "menu_cmd" if key any pressed * If defined CONFIG_MENUCMD and other CONFIG_MENUKEY run env "menu_cmd" if key pressed is save as CONFIG_MENUKEY * If defined CONFIG_MENUCMD and not CONFIG_MENUKEY run env "menu_cmd" always * If not defi

[U-Boot] [PATCH 13/16] New config variable CONFIG_PREMONITOR

2011-12-17 Thread Pali Rohár
* if defined run env "premonitor" before Main Loop for Monitor Command Processing Signed-off-by: Pali Rohár --- common/env_common.c |3 +++ common/main.c | 10 ++ 2 files changed, 13 insertions(+), 0 deletions(-) diff --git a/common/env_common.c b/common/env_common.c index

[U-Boot] [PATCH 15/16] New command bootmenu: ANSI terminal Boot Menu support

2011-12-17 Thread Pali Rohár
* Configuration is done via env variables bootmenu_delay and bootmenu_: bootmenu_delay= bootmenu_="=" (title and commands are separated by first char '=') is delay in seconds of autobooting first entry is boot menu entry, starting from zero is text shown in boot screen

[U-Boot] [PATCH 16/16] RX-51: Add support for bootmenu

2011-12-17 Thread Pali Rohár
* default bootmenu contains: NOLO kernel, internal eMMC memory, external SD card, u-boot boot order * when keyboard is closed always boot NOLO kernel * when keyborad is open in CONFIG_PREBOOT try load bootmenu.scr from first FAT partition of internal eMMC memory (know as MyDocs) which (should)

[U-Boot] [PATCH] kirkwood_spi: fix setting of irq mask

2011-12-17 Thread Michael Walle
Since the data alignment fault was enabled recently in commit arm, arm926ejs: always do cpu critical inits the driver won't work anymore and all boards which use an environment in an SPI flash will fail booting. Signed-off-by: Michael Walle Cc: Albert ARIBAUD Cc: Prafulla Wadaskar --- driver

Re: [U-Boot] [PATCH] kirkwood_spi: fix setting of irq mask

2011-12-17 Thread Michael Walle
Am Samstag 17 Dezember 2011, 18:28:05 schrieb Michael Walle: > Since the data alignment fault was enabled recently in commit > arm, arm926ejs: always do cpu critical inits > the driver won't work anymore and all boards which use an environment in an > SPI flash will fail booting. Sorry i don't k

Re: [U-Boot] [PATCH] net: Fix arguments in tftpput command

2011-12-17 Thread Mike Frysinger
Acked-by: Mike Frysinger -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

Re: [U-Boot] U-Boot on Nokia RX-51 (aka N900)

2011-12-17 Thread Wolfgang Denk
Dear Pali =?ISO-8859-1?Q?Roh=E1r?=, In message <2772527.Czs1Sl5aoH@pali-elitebook> you wrote: > > I'm sending new patch series, which add Nokia RX-51 support to U-Boot. > This > patches are based on master commit 06e42c6e2ce269667daecd6229d0b7c81383 > 8203 > and now U-Boot working on Nokia RX-5

Re: [U-Boot] [GIT PULL] Please pull powerpc/mpc83xx: set TXEQA/TXEQE value for mpc837XE sata

2011-12-17 Thread Wolfgang Denk
Dear Kim Phillips, In message <20111212185411.efd76b8871ab4b5b3a0bb...@freescale.com> you wrote: > Wolfgang Denk, > > Please pull, for u-boot v2011.12: > > The following changes since commit 06e42c6e2ce269667daecd6229d0b7c813838203: > > Merge branch 'ag...@denx.de' of git://git.denx.de/u-boot

Re: [U-Boot] Pull request: u-boot-usb

2011-12-17 Thread Wolfgang Denk
Dear Remy Bohmer, In message you wrote: > The following changes since commit 06e42c6e2ce269667daecd6229d0b7c813838203: > > Merge branch 'ag...@denx.de' of git://git.denx.de/u-boot-staging > (2011-12-12 14:51:16 +0100) > > are available in the git repository at: > > git://git.denx.de/u-boo

Re: [U-Boot] [PATCH v3 1/3] mx28: Let imx_get_mac_from_fuse be common for mx28

2011-12-17 Thread Wolfgang Denk
Dear Fabio, In message <4eea340a.3080...@denx.de> Stefano Babic wrote: > On 15/12/2011 17:34, Fabio Estevam wrote: > > Let imx_get_mac_from_fuse function be a common function, so that other > > mx28 boards can reuse it. > > > > Signed-off-by: Fabio Estevam > > --- > > Hi Fabio, > > > + if (m

Re: [U-Boot] [PATCH v3] tools/setlocalversion: Update from the Linux Kernel

2011-12-17 Thread Wolfgang Denk
Dear Kyle Moffett, In message <1324070080-16827-1-git-send-email-kyle.d.moff...@boeing.com> you wrote: > Several bugfixes have occurred upstream since this script was imported > into U-Boot. In particular, the script currently in U-Boot does not > describe commit f8bbb4dad0e9d91b7a51d6cc54dcf66d

Re: [U-Boot] [PATCH] net: Fix arguments in tftpput command

2011-12-17 Thread Wolfgang Denk
Dear Simon Glass, In message <1324095888-22757-1-git-send-email-...@chromium.org> you wrote: > The switch to strict_strtoul() was not done correctly - this fixes > the compile error when CONFIG_CMD_TFTPPUT is active. > > Signed-off-by: Simon Glass > --- > common/cmd_net.c |4 ++-- > 1 files

Re: [U-Boot] [PATCH] common/cmd_nvedit.c: Fix size calculation in do_env_import()

2011-12-17 Thread Wolfgang Denk
Dear Horst Kronstorfer, In message <1324114390-27290-1-git-send-email-hkron...@frequentis.com> you wrote: > do_env_import() missed the final '\0' terminator when calculating the > size of an environment data block. This led to an erroneous 'bad CRC, > import failed' message for a checksum protec

Re: [U-Boot] Some thoughts on SPL

2011-12-17 Thread Wolfgang Denk
Dear Simon Glass, In message you wrote: > > On Fri, Dec 16, 2011 at 9:20 AM, jonsm...@gmail.com wr= > ote: ... > > The concept is to remove SPL as a special class and turn it into the > > base layer that everything builds on. Changing the model in this was > > should make the config files easi

Re: [U-Boot] [PATCH] ftintc010.h: add header of ftintc010 interrupt controller

2011-12-17 Thread Wolfgang Denk
Dear Macpaul Lin, In message <1324024304-32444-1-git-send-email-macp...@andestech.com> you wrote: > add header definition of faraday interrupt controller > > Signed-off-by: Macpaul Lin > --- > include/faraday/ftintc010.h | 101 > +++ > 1 files changed,

Re: [U-Boot] [PATCH] mpc8xxx: Fix "DRAM" message formatting

2011-12-17 Thread Wolfgang Denk
Dear Kyle Moffett, In message <1324001689-15226-1-git-send-email-kyle.d.moff...@boeing.com> you wrote: > When the "Detected RDIMM [...]" message was added, it broke the > pretty-printing of the DRAM information during boot. > > It used to look like this: > DRAM: 2 GiB (DDR2, 64-bit, CL=4, ECC

Re: [U-Boot] [PATCH] net/eth: Don't issue warnings for offboard ethernet chips

2011-12-17 Thread Wolfgang Denk
Dear Kyle Moffett, In message <1324001821-15337-1-git-send-email-kyle.d.moff...@boeing.com> you wrote: > When using an offboard ethernet chip such as e1000, it is highly likely > that the driver has already read a valid MAC address from the onboard > EEPROM. In that case, U-Boot should not issue

Re: [U-Boot] [PATCH 00/18 V2] CHECKPATCH: fpgadata.c cleanup

2011-12-17 Thread Wolfgang Denk
Dear Stefan Roese, In message <201112151715.35434...@denx.de> you wrote: > > Okay. If nobody objects I'll queue these patches up in u-boot-ppc4xx/next in > the next few days. Hm... I think I will just pull this whole list of checkpatch patches directly into "next". Best regards, Wolfgang Denk

Re: [U-Boot] [PATCH 00/18 V2] CHECKPATCH: fpgadata.c cleanup

2011-12-17 Thread Wolfgang Denk
Dear Matthias Fuchs, In message <4eea14e6.2020...@esd.eu> you wrote: > Hi Marek, > > thanks for that work. > The patches against the esd files are > > Acked-by: Matthias Fuchs Sorry, but doing it this way is a pretty reliable way that your Acked-by: gets _lost_. We don't add these manually, i

Re: [U-Boot] [PATCH 00/18 V2] CHECKPATCH: fpgadata.c cleanup

2011-12-17 Thread Wolfgang Denk
Dear Anatolij Gustschin, In message <20111215181509.57c6535d@wker> you wrote: > On Thu, 15 Dec 2011 14:26:41 +0100 > Marek Vasut wrote: > > > First of the CHECKPATCH series of patches with per-file checkpatch fixes. > > > > This series fixes all files fpgadata.c, which contains PPC FPGA firmwar

Re: [U-Boot] [PATCH v1 2/2] tpm: Add i2c TPM driver

2011-12-17 Thread Wolfgang Denk
Dear Che-Liang Chiou, In message <1323852504-19954-3-git-send-email-clch...@chromium.org> you wrote: > Peter Huewe implemented the original driver; this patch only reorganizes > the code structure of the driver, and does not make logical changes. > > tpm.c implements the interface defined in tpm.

Re: [U-Boot] [PATCH v1 1/2] tpm: Rename generic_lpc_tpm to tpm_tis_lpc

2011-12-17 Thread Wolfgang Denk
Dear Che-Liang Chiou, In message <1323852504-19954-2-git-send-email-clch...@chromium.org> you wrote: > The new name is more aligned with Linux kernel's naming of TPM driver. > > Signed-off-by: Peter Huewe > Signed-off-by: Che-Liang Chiou > Acked-by: Mike Frysinger > --- > Changes in v1: > - Up

Re: [U-Boot] [PATCH 01/18 V2] CHECKPATCH: ./board/dave/PPChameleonEVB/fpgadata.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-17 Thread Wolfgang Denk
Dear Peter Barada, In message <1324067511-14142-1-git-send-email-peter.bar...@logicpd.com> you wrote: > This patch adds basic support for OMAP35x/DM37x SOM LV/Torpedo > reference boards. It assumes U-boot is loaded to SDRAM with the > help of another small bootloader (x-load) running from SRAM. >

Re: [U-Boot] [PATCH 02/18 V2] CHECKPATCH: ./board/esd/cpciiser4/fpgadata.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 03/18 V2] CHECKPATCH: ./board/esd/du405/fpgadata.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] git-mailrc: Add self to davinci/omap, add ti

2011-12-17 Thread Wolfgang Denk
Dear Tom Rini, In message <1323879316-21776-1-git-send-email-tr...@ti.com> you wrote: > Adding a 'ti' alias since not all parts are "omap" or "davinci" and > adding myself to that alias as co-custodian of u-boot-ti > > Signed-off-by: Tom Rini > --- > doc/git-mailrc |5 +++-- > 1 files chang

Re: [U-Boot] [PATCH 04/18 V2] CHECKPATCH: ./board/esd/canbt/fpgadata.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 05/18 V2] CHECKPATCH: ./board/esd/cpci405/fpgadata_cpci4052.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 06/18 V2] CHECKPATCH: ./board/esd/cpci405/fpgadata_cpci405ab.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 07/18 V2] CHECKPATCH: ./board/esd/cpci405/fpgadata_cpci405.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 08/18 V2] CHECKPATCH: ./board/esd/wuh405/fpgadata.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] km/common: add toolchain variable

2011-12-17 Thread Wolfgang Denk
Dear Holger Brunck, In message <1323879110-8404-1-git-send-email-holger.bru...@keymile.com> you wrote: > Add a variable "toolchain" and configure the rootpath > for the nfsargs with this variable. > > Signed-off-by: Holger Brunck > cc: Wolfgang Denk > --- > board/keymile/scripts/README

Re: [U-Boot] [PATCH 09/18 V2] CHECKPATCH: ./board/esd/plu405/fpgadata.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 10/18 V2] CHECKPATCH: ./board/esd/ar405/fpgadata.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 11/18 V2] CHECKPATCH: ./board/esd/ar405/fpgadata_xl30.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 12/18 V2] CHECKPATCH: ./board/esd/dasa_sim/fpgadata.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 13/18 V2] CHECKPATCH: ./board/esd/ash405/fpgadata.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 14/18 V2] CHECKPATCH: ./board/esd/voh405/fpgadata.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 15/18 V2] CHECKPATCH: ./board/esd/apc405/fpgadata.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 16/18 V2] CHECKPATCH: ./board/esd/tasreg/fpgadata.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 17/18 V2] CHECKPATCH: ./board/esd/pci405/fpgadata.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 18/18 V2] CHECKPATCH: ./board/esd/hh405/fpgadata.c

2011-12-17 Thread Anatolij Gustschin
Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v6 0/4] Buffer overruns in printf

2011-12-17 Thread Wolfgang Denk
Dear Simon Glass, In message you wrote: > > Is this series going into this month's release? No. This goes into "next". Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

Re: [U-Boot] [PATCH v6 1/4] Move vsprintf functions into their own header

2011-12-17 Thread Wolfgang Denk
Dear Simon Glass, In message <1320263530-22843-2-git-send-email-...@chromium.org> you wrote: > common.h is very large, so before changing the vsprintf functions, move the > prototypes into their own header file. > > Signed-off-by: Simon Glass > --- > Changes in v3: > - Move prototypes from commo

Re: [U-Boot] [PATCH v6 2/4] Add safe vsnprintf and snprintf library functions

2011-12-17 Thread Wolfgang Denk
Dear Simon Glass, In message <1320263530-22843-3-git-send-email-...@chromium.org> you wrote: > From: Sonny Rao > > From: Sonny Rao > > These functions are useful in U-Boot because they allow a graceful failure > rather than an unpredictable stack overflow when printf() buffers are > exceeded.

Re: [U-Boot] [PATCH v6 3/4] vsprintf: Move function documentation into header file

2011-12-17 Thread Wolfgang Denk
Dear Simon Glass, In message <1320263530-22843-4-git-send-email-...@chromium.org> you wrote: > Now that this is not in common.h, perhaps it is acceptable to move this > documentation into the header file. > > Signed-off-by: Simon Glass > --- > Changes in v3: > - Move function documentation into

Re: [U-Boot] [PATCH v6 4/4] Make printf and vprintf safe from buffer overruns

2011-12-17 Thread Wolfgang Denk
Dear Simon Glass, In message <1320263530-22843-5-git-send-email-...@chromium.org> you wrote: > From: Sonny Rao > > From: Sonny Rao > > utilize the added vscnprintf functions to avoid buffer overruns > The implementation is fairly dumb in that it doesn't detect > that the buffer is too small, b

Re: [U-Boot] [PATCH] sandbox: Add tap based networking

2011-12-17 Thread Wolfgang Denk
Dear Matthias Weisser, In message <1323021425-7854-1-git-send-email-weiss...@arcor.de> you wrote: > This patch adds support for networking to sandbox architecture using > tap. A tap device "tap0" has to be created e.g. using openvpn > > $ openvpn --mktun --dev tap0 > > u-boot should then be able

Re: [U-Boot] [PATCH] arm, fdt: update ethernet mac address before booting Linux

2011-12-17 Thread Wolfgang Denk
Dear Heiko Schocher, In message <1316063790-4583-1-git-send-email...@denx.de> you wrote: > Signed-off-by: Heiko Schocher > Cc: Albert ARIBAUD > Cc: Gerald van Baren > --- > arch/arm/lib/bootm.c |2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) Acked-by: Wolfgang Denk Albert, ca

Re: [U-Boot] [PATCH v2 1/3] cmd_sf.c: fix printf() length modifier

2011-12-17 Thread Wolfgang Denk
Dear =?UTF-8?q?Andreas=20Bie=C3=9Fmann?=, In message <1323939415-21743-2-git-send-email-andreas.de...@googlemail.com> you wrote: > From: Andreas Bießmann > > size_t is not always 'unsigned int', use corret length modifer. > > This patch fixes following warning: > > ---8<--- > cmd_sf.c: In fun

Re: [U-Boot] [PATCH v2 2/3] fat.c: fix printf() length modifier

2011-12-17 Thread Wolfgang Denk
Dear =?UTF-8?q?Andreas=20Bie=C3=9Fmann?=, In message <1323939415-21743-3-git-send-email-andreas.de...@googlemail.com> you wrote: > From: Andreas Bießmann > > The DIRENTSPERBLOCK utilizes sizeof() which will return a size_t which has no > fixed size. Therefor use correct length modifer for print

Re: [U-Boot] [PATCH v2 3/3] avr32:mmu.c: fix printf() length modifier

2011-12-17 Thread Wolfgang Denk
Dear =?UTF-8?q?Andreas=20Bie=C3=9Fmann?=, In message <1323939415-21743-4-git-send-email-andreas.de...@googlemail.com> you wrote: > From: Andreas Bießmann > > avr32 uses unsigned long addresses, fix the printf() length modifier for that > fact. > > Before this patch following warning occours: >

Re: [U-Boot] [PATCH 01/18 V2] CHECKPATCH: ./board/dave/PPChameleonEVB/fpgadata.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-2-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/dave/PPChameleonEVB/fpgadata.c | 3416 ++--- > 1 files changed, 2277 insertions(+

Re: [U-Boot] [PATCH 02/18 V2] CHECKPATCH: ./board/esd/cpciiser4/fpgadata.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-3-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/cpciiser4/fpgadata.c | 6204 ++- > 1 files changed, 4136 insertions(+

Re: [U-Boot] [PATCH 03/18 V2] CHECKPATCH: ./board/esd/du405/fpgadata.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-4-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/du405/fpgadata.c | 2108 > +--- > 1 files changed, 1405 insertio

Re: [U-Boot] [PATCH 04/18 V2] CHECKPATCH: ./board/esd/canbt/fpgadata.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-5-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/canbt/fpgadata.c | 1211 > +--- > 1 files changed, 807 insertion

Re: [U-Boot] [PATCH 05/18 V2] CHECKPATCH: ./board/esd/cpci405/fpgadata_cpci4052.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-6-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/cpci405/fpgadata_cpci4052.c | 2294 > ++--- > 1 files changed, 1529 insertio

Re: [U-Boot] [PATCH 07/18 V2] CHECKPATCH: ./board/esd/cpci405/fpgadata_cpci405.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-8-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/cpci405/fpgadata_cpci405.c | 1025 ++--- > 1 files changed, 683 insertions(+)

Re: [U-Boot] [PATCH 06/18 V2] CHECKPATCH: ./board/esd/cpci405/fpgadata_cpci405ab.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-7-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/cpci405/fpgadata_cpci405ab.c | 3854 > +--- > 1 files changed, 2569 insertio

Re: [U-Boot] [PATCH 08/18 V2] CHECKPATCH: ./board/esd/wuh405/fpgadata.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-9-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/wuh405/fpgadata.c | 5454 -- > 1 files changed, 3636 insertions(+

Re: [U-Boot] [PATCH 09/18 V2] CHECKPATCH: ./board/esd/plu405/fpgadata.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-10-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/plu405/fpgadata.c | 3537 -- > 1 files changed, 2358 insertions(

Re: [U-Boot] [PATCH 10/18 V2] CHECKPATCH: ./board/esd/ar405/fpgadata.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-11-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/ar405/fpgadata.c | 8250 > +--- > 1 files changed, 5500 inserti

Re: [U-Boot] [PATCH 12/18 V2] CHECKPATCH: ./board/esd/dasa_sim/fpgadata.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-13-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/dasa_sim/fpgadata.c | 5855 > +++-- > 1 files changed, 3903 inserti

Re: [U-Boot] [PATCH 11/18 V2] CHECKPATCH: ./board/esd/ar405/fpgadata_xl30.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-12-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/ar405/fpgadata_xl30.c | 7308 > ++- > 1 files changed, 4872 inserti

Re: [U-Boot] [PATCH 13/18 V2] CHECKPATCH: ./board/esd/ash405/fpgadata.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-14-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/ash405/fpgadata.c | 7475 -- > 1 files changed, 4983 insertions(

Re: [U-Boot] [PATCH 15/18 V2] CHECKPATCH: ./board/esd/apc405/fpgadata.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-16-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/apc405/fpgadata.c | 6012 -- > 1 files changed, 4008 insertions(

Re: [U-Boot] [PATCH 14/18 V2] CHECKPATCH: ./board/esd/voh405/fpgadata.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-15-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/voh405/fpgadata.c | 6032 -- > 1 files changed, 4021 insertions(

Re: [U-Boot] [PATCH 17/18 V2] CHECKPATCH: ./board/esd/pci405/fpgadata.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-18-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/pci405/fpgadata.c | 2238 -- > 1 files changed, 1492 insertions(

Re: [U-Boot] [PATCH 16/18 V2] CHECKPATCH: ./board/esd/tasreg/fpgadata.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-17-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/tasreg/fpgadata.c |15992 -- > 1 files changed, 10661 insertions

Re: [U-Boot] [PATCH 18/18 V2] CHECKPATCH: ./board/esd/hh405/fpgadata.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323955619-8691-19-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Anatolij Gustschin > Cc: Stefano Babic > --- > board/esd/hh405/fpgadata.c | 7551 > +--- > 1 files changed, 5034 inserti

Re: [U-Boot] [PATCH 2/7] CHECKPATCH: ./board/esd/voh405/logo_320_240_4bpp.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323956755-9826-3-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Stefan Roese > --- > board/esd/voh405/logo_320_240_4bpp.c | 230 ++--- > 1 files changed, 153 insertions(+), 77 deletions(-) Applied

Re: [U-Boot] [PATCH 1/7] CHECKPATCH: ./board/esd/voh405/logo_640_480_24bpp.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323956755-9826-2-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Stefan Roese > --- > board/esd/voh405/logo_640_480_24bpp.c | 5165 > ++--- > 1 files changed, 3443 insertions(+), 1722 deletions(-) A

Re: [U-Boot] [PATCH 3/7] CHECKPATCH: ./board/esd/apc405/logo_640_480_24bpp.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323956755-9826-4-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Stefan Roese > --- > board/esd/apc405/logo_640_480_24bpp.c | 1694 > ++--- > 1 files changed, 1129 insertions(+), 565 deletions(-) Ap

Re: [U-Boot] [PATCH 4/7] CHECKPATCH: ./board/esd/hh405/logo_640_480_24bpp.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323956755-9826-5-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Stefan Roese > --- > board/esd/hh405/logo_640_480_24bpp.c |12626 ++--- > 1 files changed, 8417 insertions(+), 4209 deletions(-) Appli

Re: [U-Boot] [PATCH 5/7] CHECKPATCH: ./board/esd/hh405/logo_320_240_4bpp.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323956755-9826-6-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Stefan Roese > --- > board/esd/hh405/logo_320_240_4bpp.c | 681 > +++ > 1 files changed, 454 insertions(+), 227 deletions(-) App

Re: [U-Boot] [PATCH 7/7] CHECKPATCH: ./board/esd/hh405/logo_320_240_8bpp.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323956755-9826-8-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Stefan Roese > --- > board/esd/hh405/logo_320_240_8bpp.c | 1563 > +++ > 1 files changed, 1042 insertions(+), 521 deletions(-) Ap

Re: [U-Boot] [PATCH 6/7] CHECKPATCH: ./board/esd/hh405/logo_1024_768_8bpp.c

2011-12-17 Thread Wolfgang Denk
Dear Marek Vasut, In message <1323956755-9826-7-git-send-email-marek.va...@gmail.com> you wrote: > Signed-off-by: Marek Vasut > Cc: Stefan Roese > --- > board/esd/hh405/logo_1024_768_8bpp.c | 7631 ++--- > 1 files changed, 5087 insertions(+), 2544 deletions(-) Appli

[U-Boot] [STATUS] "next" branch started

2011-12-17 Thread Wolfgang Denk
Hi, as you may have seen from some of my confirmation messages, I have started a "next" branch. Please feel free to send pull-requests for next, or to point me to patches that should go into next (or even into the upcoming release). Thanks. Best regards, Wolfgang Denk -- DENX Software Engine

Re: [U-Boot] [PATCH] kirkwood_spi: fix setting of irq mask

2011-12-17 Thread Prafulla Wadaskar
> -Original Message- > From: Michael Walle [mailto:mich...@walle.cc] > Sent: 17 December 2011 09:31 > To: u-boot@lists.denx.de > Cc: Albert ARIBAUD; Prafulla Wadaskar; Wolfgang Denk > Subject: Re: [PATCH] kirkwood_spi: fix setting of irq mask > > Am Samstag 17 Dezember 2011, 18:28:05 sch

Re: [U-Boot] [PATCH] net: Fix arguments in tftpput command

2011-12-17 Thread Simon Glass
Hi Wolfgang, On Sat, Dec 17, 2011 at 12:00 PM, Wolfgang Denk wrote: > Dear Simon Glass, > > In message <1324095888-22757-1-git-send-email-...@chromium.org> you wrote: >> The switch to strict_strtoul() was not done correctly - this fixes >> the compile error when CONFIG_CMD_TFTPPUT is active. >> >

Re: [U-Boot] Some thoughts on SPL

2011-12-17 Thread Simon Glass
Hi Wolfgang, On Sat, Dec 17, 2011 at 12:08 PM, Wolfgang Denk wrote: > Dear Simon Glass, > > In message > you > wrote: >> >> On Fri, Dec 16, 2011 at 9:20 AM, jonsm...@gmail.com wr= >> ote: > ... >> > The concept is to remove SPL as a special class and turn it into the >> > base layer that ever

  1   2   >