/* * \brief Board driver * \author Stefan Kalkowski * \author Martin Stein * \date 2014-02-25 */ /* * Copyright (C) 2014-2015 Genode Labs GmbH * * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU General Public License version 2. */ #ifndef _BOARD_H_ #define _BOARD_H_ /* core includes */ #include #include namespace Genode { /** * Board driver */ class Board : public Imx::Board, public Cortex_a9::Board { public: void init() { Imx::Board::init(); Cortex_a9::Board::init(); } }; } #endif /* _BOARD_H_ */