mirror of
https://github.com/genodelabs/genode.git
synced 2025-03-10 22:44:30 +00:00
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
98 lines
1.9 KiB
Plaintext
98 lines
1.9 KiB
Plaintext
if {[have_spec arm]} {
|
|
assert_spec arm_v7
|
|
}
|
|
|
|
#
|
|
# Check used commands
|
|
#
|
|
set mkfs [installed_command mkfs.vfat]
|
|
set dd [installed_command dd]
|
|
|
|
#
|
|
# Build
|
|
#
|
|
set build_components {
|
|
core init timer
|
|
server/ram_blk
|
|
server/rump_fs
|
|
test/libc_vfs
|
|
}
|
|
|
|
build $build_components
|
|
|
|
#
|
|
# Build FAT-file-system image
|
|
#
|
|
catch { exec $dd if=/dev/zero of=bin/fs.raw bs=1M count=16 }
|
|
catch { exec $mkfs -F16 bin/fs.raw }
|
|
|
|
create_boot_directory
|
|
|
|
#
|
|
# Generate config
|
|
#
|
|
append config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="IRQ"/>
|
|
<service name="IO_MEM"/>
|
|
<service name="IO_PORT"/>
|
|
<service name="PD"/>
|
|
<service name="RM"/>
|
|
<service name="CPU"/>
|
|
<service name="LOG"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<default caps="100"/>
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Timer"/></provides>
|
|
</start>
|
|
<start name="ram_blk">
|
|
<resource name="RAM" quantum="20M"/>
|
|
<provides><service name="Block"/></provides>
|
|
<config file="fs.raw" block_size="512"/>
|
|
</start>
|
|
<start name="rump_fs" caps="200">
|
|
<resource name="RAM" quantum="10M" />
|
|
<provides><service name="File_system"/></provides>
|
|
<config fs="msdos"><default-policy root="/" writeable="yes"/></config>
|
|
</start>
|
|
<start name="test-libc_vfs">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<config>
|
|
<libc stdout="/dev/log">
|
|
<vfs>
|
|
<dir name="dev"> <log/> </dir>
|
|
<fs/>
|
|
</vfs>
|
|
</libc>
|
|
</config>
|
|
</start>
|
|
</config>}
|
|
|
|
install_config $config
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
# generic modules
|
|
set boot_modules {
|
|
core ld.lib.so init timer test-libc_vfs ram_blk
|
|
rump.lib.so rump_fs.lib.so rump_fs
|
|
fs.raw libc.lib.so vfs.lib.so
|
|
}
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
append qemu_args " -nographic "
|
|
|
|
run_genode_until {.*child "test-libc_vfs" exited with exit value 0.*} 60
|
|
|
|
exec rm -f bin/fs.raw
|
|
puts "\nTest succeeded\n"
|