30 Dec, 2016

1 commit


30 Nov, 2016

1 commit


24 Oct, 2016

2 commits


27 Sep, 2016

1 commit

  • Introduce a hidden USB_FUNCTION_DFU Kconfig option and select it for
    CMD_DFU (as we must have the DFU command enabled to do anything DFU).
    Make all of the entries in drivers/dfu/Kconfig depend on CMD_DFU and add
    options for all of the back end choices that DFU can make use of.

    Cc: Lukasz Majewski
    Signed-off-by: Tom Rini
    Acked-by: Lukasz Majewski

    Tom Rini
     

10 Sep, 2016

1 commit


09 Sep, 2016

1 commit


28 Jul, 2016

2 commits


12 Jul, 2016

1 commit

  • Booting a NXP kernel with mainline U-boot leads to the following kernel
    crash:

    caam: probe of 30900000.caam failed with error -11
    Unable to handle kernel NULL pointer dereference at virtual address 00000004
    pgd = 80004000
    [00000004] *pgd=00000000
    Internal error: Oops: 805 [#1] PREEMPT SMP ARM

    This happens because NXP kernel expects MX7 to boot in secure mode,
    so introduce mx7dsabresd_secure_defconfig that selects CONFIG_MX7_SEC
    and allows booting a NXP provided kernel successfully.

    Signed-off-by: Fabio Estevam

    Fabio Estevam