Changeset f9ab562 in mainline for kernel


Ignore:
Timestamp:
2012-12-02T22:29:34Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5a00ee0, 5df69cb
Parents:
5481a22e
Message:

Remove support for the testarm machine.

Location:
kernel/arch/arm32
Files:
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/Makefile.inc

    r5481a22e rf9ab562  
    7676endif
    7777
    78 ifeq ($(MACHINE),testarm)
    79         ARCH_SOURCES += arch/$(KARCH)/src/mach/testarm/testarm.c
    80 endif
    81 
    8278ifeq ($(MACHINE),integratorcp)
    8379        ARCH_SOURCES += arch/$(KARCH)/src/mach/integratorcp/integratorcp.c
  • kernel/arch/arm32/include/fpu_context.h

    r5481a22e rf9ab562  
    3131 */
    3232/** @file
    33  *  @brief FPU context (not implemented).
    34  *
    35  *  GXemul doesn't support FPU on its ARM CPU.
     33 *  @brief FPU context.
    3634 */
    3735
  • kernel/arch/arm32/src/mach/gta02/gta02.c

    r5481a22e rf9ab562  
    2727 */
    2828
    29 /** @addtogroup arm32gxemul
     29/** @addtogroup arm32gta02
    3030 * @{
    3131 */
  • kernel/arch/arm32/src/machine_func.c

    r5481a22e rf9ab562  
    4141#include <arch/mach/gta02/gta02.h>
    4242#include <arch/mach/integratorcp/integratorcp.h>
    43 #include <arch/mach/testarm/testarm.h>
    4443#include <arch/mach/beagleboardxm/beagleboardxm.h>
    4544
     
    5251#if defined(MACHINE_gta02)
    5352        machine_ops = &gta02_machine_ops;
    54 #elif defined(MACHINE_testarm)
    55         machine_ops = &gxemul_machine_ops;
    5653#elif defined(MACHINE_integratorcp)
    5754        machine_ops = &icp_machine_ops;
Note: See TracChangeset for help on using the changeset viewer.