mirror of
https://review.haiku-os.org/haiku
synced 2025-01-31 18:56:49 +01:00
8a07056253
Identify cpus more precisely. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32315 a95241bf-73f2-0310-859d-f6bbb57e9c96
22 lines
464 B
C
22 lines
464 B
C
/*
|
|
* Copyright 2009
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _BOARD_VERDEX_BOARD_CONFIG_H
|
|
#define _BOARD_VERDEX_BOARD_CONFIG_H
|
|
|
|
#define BOARD_NAME_PRETTY "Gumstix Verdex"
|
|
|
|
#define BOARD_CPU_TYPE_PXA 1
|
|
#define BOARD_CPU_PXA270 1
|
|
|
|
#include <arch/arm/pxa270.h>
|
|
|
|
#define BOARD_UART1_BASE FFUART_BASE
|
|
#define BOARD_UART2_BASE BTUART_BASE
|
|
#define BOARD_UART3_BASE STUART_BASE
|
|
|
|
#define BOARD_DEBUG_UART 0
|
|
|
|
#endif /* _BOARD_VERDEX_BOARD_CONFIG_H */
|