06 Feb, 2020

1 commit

  • At present dm/device.h includes the linux-compatible features. This
    requires including linux/compat.h which in turn includes a lot of headers.
    One of these is malloc.h which we thus end up including in every file in
    U-Boot. Apart from the inefficiency of this, it is problematic for sandbox
    which needs to use the system malloc() in some files.

    Move the compatibility features into a separate header file.

    Signed-off-by: Simon Glass

    Simon Glass
     

03 Dec, 2019

1 commit


25 Jul, 2019

1 commit

  • This patch determines the A/B-specific bootloader message structure
    that is the basis for implementation of recovery and A/B update
    functions. A/B metadata is stored in this structure and used to decide
    which slot should we use to boot the device. Also some basic functions
    for A/B metadata manipulation are implemented (like slot selection).

    The patch was extracted from commits [1], [2] with some coding style
    fixes.

    [1] https://android-review.googlesource.com/c/platform/external/u-boot/+/729878/2
    [2] https://android-review.googlesource.com/c/platform/external/u-boot/+/729880/2

    Signed-off-by: Ruslan Trofymenko
    Signed-off-by: Igor Opaniuk
    Reviewed-by: Sam Protsenko
    Reviewed-by: Simon Glass

    Ruslan Trofymenko