genode/repos/base-foc/doc/foc.txt

79 lines
2.4 KiB
Plaintext
Raw Permalink Normal View History

2011-12-22 16:19:25 +01:00
===================================
Genode on the Fiasco.OC microkernel
===================================
Stefan Kalkowski
Fiasco.OC is a microkernel originally developed by the OS group of the
TU-Dresden. Nowadays, it is primarily maintained and developed by
the company Kernkonzept. It's an object-oriented capability-based system
for x86, ARM, PowerPC and MIPS platforms.
2011-12-22 16:19:25 +01:00
This document provides brief instructions about downloading, building and
booting the Fiasco.OC version of Genode.
Prerequisites
#############
You need certain tools to use the Fiasco.OC build system. On Debian/Ubuntu
systems you have to install the following packages:
! apt-get install make gawk g++ binutils pkg-config g++-multilib subversion
2011-12-22 16:19:25 +01:00
Moreover, you need to download and install the tool-chain used by Genode. Have
a look at this page:
:[http://genode.org/download/tool-chain]:
Genode tool-chain
Building the Fiasco.OC version of Genode
########################################
The current version of Genode is available at the public Github repository:
2011-12-22 16:19:25 +01:00
:http://github.com/genodelabs/genode:
Github repository of Genode
2011-12-22 16:19:25 +01:00
After you've fetched the Genode source tree from the git repository, or
2011-12-22 16:19:25 +01:00
downloaded the latest release tar archive, you need the Fiasco.OC source code,
its kernel-bindings, additional bootstrap tools etc. To simplify that step,
you can use the 'prepare_port' tool:
2011-12-22 16:19:25 +01:00
! ./tool/ports/prepare_port foc
2011-12-22 16:19:25 +01:00
This will install all necessary third-party source code in the 'contrib' folder.
Now, go to a directory where you want the Genode/Fiasco.OC build directory to
remain. Use the helper script in the 'tool' directory of the Genode
source tree to create the initial build environment. You need to state the
build directory you want to create, and the hardware architecture to run
Fiasco.OC/Genode on. Choose 'x86_32', 'x86_64', or one of the available ARM
boards.
2011-12-22 16:19:25 +01:00
! <genode-dir>/tool/create_builddir x86_64
2011-12-22 16:19:25 +01:00
Now, go to the newly created build directory and type make:
! cd build/x86_64
! make KERNEL=foc
2011-12-22 16:19:25 +01:00
This will build the Fiasco.OC kernel, its bootstrap code, and every Genode component,
that runs on top of Fiasco.OC.
If you just want to give Genode/Fiasco.OC a try, you can call e.g.: the demo run-script
instead of building everything:
! make run/demo KERNEL=foc
2011-12-22 16:19:25 +01:00
Further Information
###################
:[https://l4re.org/fiasco/]:
2011-12-22 16:19:25 +01:00
Official website for the Fiasco.OC microkernel.