base-hw: conform pc board header

Normally, the board header can be found for each supported board under
'src/core/board/<BOARD>/board.h'. This was not the case for the board 'pc'
that was located under 'src/core/spec/x86_64/board.h'. The commit fixes this.

Ref #4217
This commit is contained in:
Martin Stein 2021-07-21 13:36:01 +02:00 committed by Norman Feske
parent a9563bfd4c
commit 9de43a48b6
2 changed files with 7 additions and 3 deletions

View File

@ -6,6 +6,7 @@
#
# add include paths
REP_INC_DIR += src/core/board/pc
REP_INC_DIR += src/core/spec/x86_64
LIBS += syscall-hw

View File

@ -11,10 +11,13 @@
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef _CORE__SPEC__X86_64__BOARD_H_
#define _CORE__SPEC__X86_64__BOARD_H_
#ifndef _BOARD_H_
#define _BOARD_H_
/* base-hw internal includes */
#include <hw/spec/x86_64/pc_board.h>
/* base-hw internal includes */
#include <spec/x86_64/pic.h>
#include <spec/x86_64/pit.h>
@ -30,4 +33,4 @@ namespace Board {
};
}
#endif /* _CORE__SPEC__X86_64__BOARD_H_ */
#endif /* _BOARD_H_ */