Ignore:
Timestamp:
2013-02-09T23:14:45Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
Children:
22dfd38
Parents:
b5d2e57 (diff), 005b765 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

Conflict resulting from bool.h → stdbool.h move and ddf structs turning opaque.
Fails to boot to shell console.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/machine_func.c

    rb5d2e57 r03362fbd  
    4141#include <arch/mach/gta02/gta02.h>
    4242#include <arch/mach/integratorcp/integratorcp.h>
    43 #include <arch/mach/testarm/testarm.h>
     43#include <arch/mach/beagleboardxm/beagleboardxm.h>
    4444
    4545/** Pointer to machine_ops structure being used. */
     
    5151#if defined(MACHINE_gta02)
    5252        machine_ops = &gta02_machine_ops;
    53 #elif defined(MACHINE_testarm)
    54         machine_ops = &gxemul_machine_ops;
    5553#elif defined(MACHINE_integratorcp)
    5654        machine_ops = &icp_machine_ops;
     55#elif defined(MACHINE_beagleboardxm)
     56        machine_ops = &bbxm_machine_ops;
    5757#else
    5858#error Machine type not defined.
     
    131131}
    132132
     133const char * machine_get_platform_name(void)
     134{
     135        if (machine_ops->machine_get_platform_name)
     136                return machine_ops->machine_get_platform_name();
     137        return NULL;
     138}
    133139/** @}
    134140 */
Note: See TracChangeset for help on using the changeset viewer.