mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
39 lines
691 B
Plaintext
39 lines
691 B
Plaintext
#
|
|
# \brief Simple cache benchmark
|
|
# \author Johannes Schlatow
|
|
#
|
|
|
|
|
|
set build_components { core init test/cache }
|
|
|
|
build $build_components
|
|
|
|
create_boot_directory
|
|
|
|
set config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="LOG"/>
|
|
<service name="CPU"/>
|
|
<service name="PD"/>
|
|
<service name="ROM"/>
|
|
<service name="IO_MEM"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> </any-service>
|
|
</default-route>
|
|
<default caps="100"/>
|
|
|
|
<start name="test-cache">
|
|
<resource name="RAM" quantum="64M"/>
|
|
</start>
|
|
</config> }
|
|
|
|
install_config $config
|
|
|
|
set boot_modules { core ld.lib.so init test-cache }
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
run_genode_until "done.*\n" 300
|