/* * Copyright (c) 2013 embedded brains GmbH. All rights reserved. * * embedded brains GmbH * Dornierstr. 4 * 82178 Puchheim * Germany * * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.org/license/LICENSE. */ #include #include #include void bsp_start(void) { #if IS_DM3730 const char* type = "dm3730-based"; #endif #if IS_AM335X const char* type = "am335x-based"; #endif bsp_interrupt_initialize(); printk("\nRTEMS Beagleboard: %s\n", type); }