mirror of
https://review.haiku-os.org/haiku
synced 2025-02-04 04:35:57 +01:00
9020ce87e6
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37319 a95241bf-73f2-0310-859d-f6bbb57e9c96
22 lines
470 B
C
22 lines
470 B
C
/*
|
|
* Copyright 2009
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _BOARD_OVERO_BOARD_CONFIG_H
|
|
#define _BOARD_OVERO_BOARD_CONFIG_H
|
|
|
|
#define BOARD_NAME_PRETTY "Beagle Board"
|
|
|
|
#define BOARD_CPU_TYPE_OMAP 1
|
|
#define BOARD_CPU_OMAP3 1
|
|
|
|
#include <arch/arm/omap3.h>
|
|
|
|
#define BOARD_UART1_BASE OMAP_UART1_BASE
|
|
#define BOARD_UART2_BASE OMAP_UART2_BASE
|
|
#define BOARD_UART3_BASE OMAP_UART3_BASE
|
|
|
|
#define BOARD_DEBUG_UART 2
|
|
|
|
#endif /* _BOARD_OVERO_BOARD_CONFIG_H */
|