genode/base/mk
Alexander Boettcher ae6257dce1 Use NOVA microkernel from github, add 64bit
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
2012-06-20 19:44:07 +02:00
..
README Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
base-libs.mk Unify policy name for Native_capability_tpl. 2012-03-10 15:52:13 +01:00
dep_lib.mk Add 'select_from_repositories' in 'dep_lib.mk' 2012-03-06 17:09:54 +01:00
dep_prg.mk Support for building all libs via 'make lib' 2012-01-24 18:56:35 +01:00
generic.mk Merge final fixes from internal repositories 2011-12-23 14:04:29 +01:00
global.mk Enable Noux for ARM 2012-06-20 10:17:23 +02:00
lib.mk Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
prg.mk Merge final fixes from internal repositories 2011-12-23 14:04:29 +01:00
spec-32bit.mk Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
spec-64bit.mk Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
spec-arm.mk Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
spec-arm_v5.mk Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
spec-arm_v7a.mk Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
spec-experimental.mk Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
spec-host.mk Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
spec-platform_panda.mk Fiasco.OC: basic support for pandaboard 2012-05-29 13:55:00 +02:00
spec-platform_pbxa9.mk Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
spec-platform_vea9x4.mk Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
spec-platform_vpb926.mk Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
spec-release.mk Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
spec-x86_32.mk Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
spec-x86_64.mk Use NOVA microkernel from github, add 64bit 2012-06-20 19:44:07 +02:00

README

This directory contains the build system. In consists mainly of makefile
templates for different directory roles.

:'global.mk': This file contains global variables, for example the
  definitions of the tools to use.

:'generic.mk': Generic rules for creating file types from others.

:'prg.mk': This file represents the target binary role of a directory.
  It must be included by all makefiles that build programs.

:'lib.mk': This file represents a library role. It is never used from
  within the 'src/' directory but only from the <libname>.mk files
  in 'lib/mk/'.