mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
ca971bbfd8
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
#
|
|
# \brief Noux environment for building the Genode/Fiasco.OC demo scenario on Genode/Fiasco.OC
|
|
# \author Christian Prochaska
|
|
# \date 2012-11-26
|
|
#
|
|
|
|
if {![have_spec foc_x86_32]} {
|
|
puts "\nThis run script is currently only supported on the 'foc_x86_32' target platform\n"
|
|
exit 0
|
|
}
|
|
|
|
# create a tar archive containing the l4 header files
|
|
build core
|
|
exec tar cfv bin/l4.tar -h --exclude=std_tmpl include l4
|
|
|
|
if {[have_spec x86_32]} {
|
|
set platform "foc_x86_32"
|
|
}
|
|
|
|
if {[have_spec x86_64]} {
|
|
set platform "foc_x86_64"
|
|
}
|
|
|
|
set platform_base_dir "base-foc"
|
|
set platform_pkgs "l4"
|
|
set platform_cmds {
|
|
ln -s /platform/l4/include include
|
|
ln -s /platform/l4/l4 l4
|
|
mkdir -p var/libcache/platform/libvcpu
|
|
touch var/libcache/platform/libvcpu/include.tag
|
|
touch var/libcache/platform/l4sys.tag
|
|
touch var/libcache/platform/ldscripts.tag
|
|
touch var/libcache/platform/libgcc-pure.tag
|
|
touch var/libcache/platform/libgcc.tag
|
|
touch var/libcache/platform/libsigma0.tag
|
|
}
|
|
|
|
source ${genode_dir}/repos/ports/run/noux_tool_chain.inc
|
|
|
|
append qemu_args " -m 768 "
|
|
|
|
run_genode_until forever
|