13 Dec, 2015

1 commit

  • VxWorks 7 kernels retrieve 'local-mac-addr' from dtb and use
    that for NIC MAC address. As a result, when booting the same
    kernel image on multiple boards, there will be address
    conflicts.

    So fixup MAC address when booting VxWorks 7 kernels

    Signed-off-by: Miao Yan
    Reviewed-by: Bin Meng

    Miao Yan
     

15 Jan, 2015

1 commit


19 Jul, 2014

1 commit


19 Jun, 2014

1 commit

  • This file has code in three different categories:
    - Command processing
    - OS-specific boot code
    - Locating images and setting up to boot

    Only the first category really belongs in a file called cmd_bootm.c.

    Leave the command processing code where it is. Split out the OS-specific
    boot code into bootm_os.c. Split out the other code into bootm.c

    Header files and extern declarations are tidied but otherwise no code
    changes are made, to make it easier to review.

    Signed-off-by: Simon Glass

    Simon Glass