mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
bf62d6b896
Since the timer and timeout handling is part of the base library (the dynamic linker), it belongs to the base repository. Besides moving the timer and its related infrastructure (alarm, timeout libs, tests) to the base repository, this patch also moves the timer from the 'drivers' subdirectory directly to 'src' and disamibuates the timer's build locations for the various kernels. Otherwise the different timer implementations could interfere with each other when using one build directory with multiple kernels. Note that this patch changes the include paths for the former os/timer, os/alarm.h, os/duration.h, and os/timed_semaphore.h to base/. Issue #3101
111 lines
2.6 KiB
Plaintext
111 lines
2.6 KiB
Plaintext
#
|
|
# \brief Virtual-machine monitor demo
|
|
# \author Stefan Kalkowski
|
|
# \date 2015-06-25
|
|
#
|
|
|
|
assert_spec hw
|
|
assert_spec arndale
|
|
|
|
set build_components {
|
|
core init timer
|
|
drivers/platform
|
|
drivers/uart
|
|
server/vmm
|
|
}
|
|
build $build_components
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config verbose="yes">
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="IRQ"/>
|
|
<service name="IO_MEM"/>
|
|
<service name="PD"/>
|
|
<service name="RM"/>
|
|
<service name="CPU"/>
|
|
<service name="LOG"/>
|
|
<service name="VM"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service><parent/><any-child/></any-service>
|
|
</default-route>
|
|
<default caps="100"/>
|
|
<start name="platform_drv">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Regulator"/></provides>
|
|
<config/>
|
|
</start>
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Timer"/></provides>
|
|
</start>
|
|
<start name="uart_drv">
|
|
<resource name="RAM" quantum="2M"/>
|
|
<provides>
|
|
<service name="Terminal"/>
|
|
<service name="Uart"/>
|
|
</provides>
|
|
<config>
|
|
<policy label_prefix="vmm" uart="1"/>
|
|
</config>
|
|
</start>
|
|
<start name="vmm">
|
|
<resource name="RAM" quantum="256M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
|
|
#
|
|
# This test uses a Linux kernel built from unmodified vanilla kernel sources
|
|
# but using a slightly simplified kernel configuration, as well as device tree
|
|
# for a minimal Versatile Express Cortex A15 like emulated board.
|
|
#
|
|
# The used sources, including the modified device tree and configuration file
|
|
# can be found in the following git repository/branch:
|
|
#
|
|
# https://github.com/skalk/linux/tree/vexpress-vt
|
|
#
|
|
# To compile the kernel and device tree blob used in this script, do the
|
|
# following steps:
|
|
#
|
|
# ! git checkout https://github.com/skalk/linux.git
|
|
# ! cd linux
|
|
# ! git checkout origin/vexpress-vt
|
|
# ! make ARCH=arm CROSS_COMPILE=<cross_compiler_prefix> vexpress_config
|
|
# ! make ARCH=arm CROSS_COMPILE=<cross_compiler_prefix> -j8 Image
|
|
# ! make ARCH=arm CROSS_COMPILE=<cross_compiler_prefix> vexpress-v2p-ca15-tc1.dtb
|
|
#
|
|
|
|
if {![file exists bin/linux]} {
|
|
puts "Download linux kernel ..."
|
|
exec >& /dev/null wget -c -O bin/linux http://genode.org/files/release-15.02/arm_vt/linux
|
|
}
|
|
|
|
if {![file exists bin/dtb]} {
|
|
puts "Download device tree blob ..."
|
|
exec >& /dev/null wget -c -O bin/dtb http://genode.org/files/release-15.02/arm_vt/dtb
|
|
}
|
|
|
|
set boot_modules {
|
|
core ld.lib.so init
|
|
platform_drv
|
|
uart_drv
|
|
timer
|
|
vmm
|
|
linux
|
|
dtb
|
|
}
|
|
build_boot_image $boot_modules
|
|
|
|
#
|
|
# Execute test case
|
|
#
|
|
run_genode_until {.*\/ #.*} 220
|
|
set serial_id [output_spawn_id]
|
|
send -i $serial_id "ls\n"
|
|
run_genode_until "var" 30 $serial_id
|
|
exec rm bin/linux bin/dtb
|