28 May, 2016

1 commit


23 Mar, 2016

1 commit


08 Feb, 2016

1 commit


20 Nov, 2015

1 commit


07 Sep, 2015

1 commit

  • This code allows using DFU defined mediums for storing data received via
    TFTP protocol.

    It reuses and preserves functionality of legacy code at common/update.c.

    The update_tftp() function now accepts parameters - namely medium device
    name and its number (e.g. mmc 1).

    Without this information passed old behavior is preserved.

    Signed-off-by: Lukasz Majewski
    Acked-by: Joe Hershberger

    Lukasz Majewski
     

19 Jul, 2014

1 commit


30 May, 2014

10 commits


10 May, 2014

1 commit


18 Apr, 2014

1 commit


09 Nov, 2013

1 commit


15 Oct, 2013

1 commit


24 Jul, 2013

1 commit


05 Jun, 2013

9 commits


01 May, 2013

1 commit


13 Mar, 2013

2 commits


04 Feb, 2013

2 commits


20 Dec, 2012

1 commit


12 Dec, 2012

1 commit


29 Nov, 2012

1 commit


19 Nov, 2012

1 commit


13 Nov, 2012

1 commit

  • If kernel-offset is specified in the fdt, set an environment variable
    so that scripts can access the attached kernel.

    This can be used by a packaging program to tell U-Boot about a kernel
    that has been downloaded alongside U-Boot. The value in the fdt is
    the offset of the kernel from the start of the U-Boot image, so we can
    find it just by adding CONFIG_SYS_TEXT_BASE.

    It is then fairly easy to put something like this in the environment
    variables in the board header file:

    "if test ${kernaddr} != \"\"; then "\
    "echo \"Using bundled kernel\"; "\
    "bootm ${kernaddr};" \
    "fi; "\
    /* rest of boot sequence follows here */

    Signed-off-by: Simon Glass

    Simon Glass