mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +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
87 lines
1.7 KiB
Plaintext
87 lines
1.7 KiB
Plaintext
assert_spec linux
|
|
|
|
#
|
|
# Build
|
|
#
|
|
|
|
build { core init timer
|
|
server/dynamic_rom
|
|
app/rom_to_file
|
|
server/lx_fs
|
|
}
|
|
|
|
create_boot_directory
|
|
|
|
#
|
|
# Generate config
|
|
#
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="LOG"/>
|
|
<service name="RM"/>
|
|
<service name="ROM" />
|
|
<service name="CPU" />
|
|
<service name="PD" />
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Timer"/></provides>
|
|
</start>
|
|
<start name="dynamic_rom">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<provides><service name="ROM"/></provides>
|
|
<config verbose="yes">
|
|
<rom name="test">
|
|
<inline description="update"><test />
|
|
</inline>
|
|
<sleep milliseconds="1000" />
|
|
<inline description="finished"/>
|
|
</rom>
|
|
</config>
|
|
</start>
|
|
<start name="lx_fs" ld="no">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<provides> <service name="File_system" /> </provides>
|
|
<config>
|
|
<policy label_prefix="rom_to_file" root="/fs_test" writeable="yes" />
|
|
</config>
|
|
</start>
|
|
<start name="rom_to_file">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<config rom="test" />
|
|
<route>
|
|
<service name="ROM" label="test"> <child name="dynamic_rom"/> </service>
|
|
<service name="File_system"> <child name="lx_fs"/> </service>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
</start>
|
|
</config>}
|
|
|
|
#
|
|
# Boot image
|
|
#
|
|
|
|
exec mkdir -p bin/fs_test
|
|
|
|
build_boot_image { core ld.lib.so init timer
|
|
dynamic_rom
|
|
rom_to_file
|
|
lx_fs
|
|
fs_test
|
|
}
|
|
|
|
append qemu_args " -nographic "
|
|
|
|
run_genode_until "finished" 10
|
|
|
|
set output [exec cat bin/fs_test/test]
|
|
|
|
compare_output_to {<test />}
|
|
|
|
exec rm -r bin/fs_test
|