mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +00:00
ae6257dce1
Use git to get recent kernels from github. Adjust NOVA patch to compile with recent github version. Patch and use makefile of NOVA microkernel to avoid duplicated (and outdated) makefile in Genode Furthermore, this patch adds support for using NOVA on x86_64. The generic part of the syscall bindings has been moved to 'base-nova/include/nova/syscall-generic.h'. The 32/64-bit specific parts are located at 'base-nova/include/32bit/nova/syscalls.h' and 'base-nova/include/64bit/nova/syscalls.h' respectively. On x86_64, the run environment boots qemu using the Pulsar boot loader because GRUB legacy does not support booting 64bit ELF executables. In addition to the NOVA-specific changes in base-nova, this patch rectifies compile-time warnings or build errors in the 'ports' and 'libports' repositories that are related to NOVA x86_64 (i.e., Vancouver builds for 32bit only and needed an adaptation to NOVAs changed bindings) Fixes #233, fixes #234
29 lines
648 B
C++
29 lines
648 B
C++
/*
|
|
* \brief Integer type definitions used by NOVA syscall bindings
|
|
* \author Norman Feske
|
|
* \date 2010-01-15
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2010-2012 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 _PLATFORM__NOVA_STDINT_H_
|
|
#define _PLATFORM__NOVA_STDINT_H_
|
|
|
|
#include <base/fixed_stdint.h>
|
|
|
|
namespace Nova {
|
|
|
|
typedef unsigned long mword_t;
|
|
typedef unsigned char uint8_t;
|
|
typedef Genode::uint16_t uint16_t;
|
|
typedef Genode::uint32_t uint32_t;
|
|
typedef Genode::uint64_t uint64_t;
|
|
}
|
|
|
|
#endif /* _PLATFORM__NOVA_STDINT_H_ */
|