From 15317caafee2313921df7b0ab8e2a5366a50eca5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sat, 8 Aug 2009 00:35:48 +0000 Subject: [PATCH] [ARM] - moved board/ folder around again, it probably belongs only to kernel stuff, - added board_config.h templates for gumstix boards. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32197 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../kernel/arch/arm/board/overo/board_config.h | 12 ++++++++++++ .../kernel/arch/arm/board/verdex/board_config.h | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 headers/private/kernel/arch/arm/board/overo/board_config.h create mode 100644 headers/private/kernel/arch/arm/board/verdex/board_config.h diff --git a/headers/private/kernel/arch/arm/board/overo/board_config.h b/headers/private/kernel/arch/arm/board/overo/board_config.h new file mode 100644 index 0000000000..7155e1f575 --- /dev/null +++ b/headers/private/kernel/arch/arm/board/overo/board_config.h @@ -0,0 +1,12 @@ +/* + * 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 "Gumstix Overo" + +#include + +#endif /* _BOARD_OVERO_BOARD_CONFIG_H */ diff --git a/headers/private/kernel/arch/arm/board/verdex/board_config.h b/headers/private/kernel/arch/arm/board/verdex/board_config.h new file mode 100644 index 0000000000..f8fd7efda2 --- /dev/null +++ b/headers/private/kernel/arch/arm/board/verdex/board_config.h @@ -0,0 +1,12 @@ +/* + * 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" + +#include + +#endif /* _BOARD_VERDEX_BOARD_CONFIG_H */