16 Dec, 2008

2 commits


14 Dec, 2008

2 commits


13 Dec, 2008

1 commit


10 Dec, 2008

2 commits


09 Dec, 2008

4 commits


07 Dec, 2008

5 commits

  • Corrected endian order printing for compact flash serial number.

    Signed-off-by: Richard Retanubun

    Richard Retanubun
     
  • Modifications to support console multiplexing. This is controlled using
    CONFIG_SYS_CONSOLE_MUX in the board configuration file.

    This allows a user to specify multiple console devices in the environment
    with a command like this: setenv stdin serial,nc. As a result, the user can
    enter text on both the serial and netconsole interfaces.

    All devices - stdin, stdout and stderr - can be set in this manner.

    1) common/iomux.c and include/iomux.h contain the environment setting
    implementation.
    2) doc/README.iomux contains a somewhat more detailed description.
    3) The implementation in (1) is called from common/cmd_nvedit.c to
    handle setenv and from common/console.c to handle initialization of
    input/output devices at boot time.
    4) common/console.c also contains the code needed to poll multiple console
    devices for input and send output to all devices registered for output.
    5) include/common.h includes iomux.h and common/Makefile generates iomux.o
    when CONFIG_SYS_CONSOLE_MUX is set.

    Signed-off-by: Gary Jennejohn

    Gary Jennejohn
     
  • When running `strings` on really long strings, the stack tends to get
    smashed due to printf(). Switch to puts() instead since we're only passing
    the data through.

    Signed-off-by: Mike Frysinger

    Mike Frysinger
     
  • - fix size too small by one in sprintf
    - changed old (pre 2004) device name ibmEmac to emac
    - boot device may be overriden in board config
    - servername may be defined in board config
    - additional parameters may be defined in board config
    - fixed some line wrappings
    - replaced redundant MAX define by max

    Signed-off-by: Niklaus Giger

    Niklaus Giger
     
  • remove unneeded version.h from lcd.c

    Signed-off-by: Peter Tyser
    Signed-off-by: Wolfgang Denk

    Peter Tyser
     

06 Dec, 2008

1 commit


05 Dec, 2008

2 commits

  • When CONFIG_SYS_HUSH_PARSER is defined network download
    commands with 1 argument in the format 'tftp "/path/file"'
    do not work as expected. The hush command parser strips
    the quotes from "/path/file" which causes the network
    commands to interpret "/path/file" as an address
    instead of the intended filename.

    The previous check for a leading quote in netboot_common()
    was replaced with a check which ensures only valid
    numbers are treated as addresses.

    Signed-off-by: Peter Tyser
    Signed-off-by: Ben Warren

    Peter Tyser
     
  • Wolfgang Denk
     

03 Dec, 2008

1 commit


29 Nov, 2008

2 commits


24 Nov, 2008

2 commits


20 Nov, 2008

1 commit

  • This patch adds these UBI commands:

    ubi part [nand|onenand] [part] - Show or set current partition
    ubi info [l[ayout]] -Display volume and UBI layout information
    ubi create[vol] volume [size] [type] - Create volume name with size
    ubi write[vol] address volume size - Write volume from address with size
    ubi read[vol] address volume [size] - Read volume to address with size
    ubi remove[vol] volume - Remove volume

    Signed-off-by: Kyungmin Park
    Signed-off-by: Stefan Roese

    Kyungmin Park
     

02 Nov, 2008

3 commits


31 Oct, 2008

1 commit

  • fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry
    (16 bytes), so make sure that fdt_resize at least adds that much
    padding, no matter what the location or size of the fdt is.

    Signed-off-by: Peter Korsgaard
    Acked-by: Andy Fleming

    Peter Korsgaard
     

29 Oct, 2008

4 commits


28 Oct, 2008

1 commit


27 Oct, 2008

1 commit

  • The information displayed when CONFIG_LCD_INFO is set is inherently
    board-specific, so it should be done by the board code. The current code
    dealing with this only handles two cases, and is already a horrible mess
    of #ifdeffery.

    Yes, this duplicates some code, but it also allows boards to print more
    board-specific information; this used to be very difficult.

    Signed-off-by: Haavard Skinnemoen
    Signed-off-by: Anatolij Gustschin

    Haavard Skinnemoen
     

26 Oct, 2008

2 commits


25 Oct, 2008

2 commits


21 Oct, 2008

1 commit