mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 15:02:25 +00:00
24 lines
524 B
C
24 lines
524 B
C
/*
|
|
* \brief Configuration values expected by seL4's kernel-interface headers
|
|
* \author Norman Feske
|
|
* \date 2014-10-15
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2014 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 _INCLUDE__SEL4__AUTOCONF_H_
|
|
#define _INCLUDE__SEL4__AUTOCONF_H_
|
|
|
|
#define SEL4_DEBUG_KERNEL 1
|
|
|
|
#define DEBUG 1
|
|
|
|
#define CONFIG_MAX_NUM_BOOTINFO_UNTYPED_CAPS 800
|
|
|
|
#endif /* _INCLUDE__SEL4__AUTOCONF_H_ */
|