2014-09-12 18:34:49 +00:00
|
|
|
#
|
|
|
|
# Build
|
|
|
|
#
|
|
|
|
if {![have_spec linux]} {
|
|
|
|
puts "Runs on Linux only"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
|
|
|
set build_components {
|
2015-09-30 09:30:02 +00:00
|
|
|
core init drivers/timer drivers/framebuffer
|
2014-09-12 18:34:49 +00:00
|
|
|
server/dynamic_rom server/nitpicker
|
|
|
|
app/pointer app/menu_view
|
|
|
|
app/scout
|
|
|
|
}
|
|
|
|
|
|
|
|
build $build_components
|
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
#
|
|
|
|
# Generate config
|
|
|
|
#
|
|
|
|
|
|
|
|
append config {
|
|
|
|
<config>
|
|
|
|
<parent-provides>
|
|
|
|
<service name="ROM"/>
|
|
|
|
<service name="RAM"/>
|
|
|
|
<service name="RM"/>
|
|
|
|
<service name="LOG"/>
|
|
|
|
<service name="IRQ"/>
|
|
|
|
<service name="IO_MEM"/>
|
|
|
|
<service name="IO_PORT"/>
|
|
|
|
</parent-provides>
|
|
|
|
<default-route>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</default-route>
|
|
|
|
<start name="fb_sdl">
|
|
|
|
<resource name="RAM" quantum="4M"/>
|
|
|
|
<provides>
|
|
|
|
<service name="Input"/>
|
|
|
|
<service name="Framebuffer"/>
|
|
|
|
</provides>
|
|
|
|
</start>
|
|
|
|
<start name="timer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Timer"/></provides>
|
|
|
|
</start>
|
|
|
|
<start name="nitpicker">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Nitpicker"/></provides>
|
|
|
|
<config>
|
2015-09-30 09:30:02 +00:00
|
|
|
<domain name="pointer" layer="1" content="client" label="no" origin="pointer" />
|
2015-11-18 11:17:32 +00:00
|
|
|
<domain name="default" layer="3" content="client" label="no" hover="always" />
|
2014-09-12 18:34:49 +00:00
|
|
|
|
2016-11-24 14:28:32 +00:00
|
|
|
<policy label_prefix="pointer" domain="pointer"/>
|
2016-03-09 14:32:23 +00:00
|
|
|
<default-policy domain="default"/>
|
2014-09-12 18:34:49 +00:00
|
|
|
</config>
|
|
|
|
</start>
|
|
|
|
<start name="pointer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<route>
|
|
|
|
<service name="Nitpicker"> <child name="nitpicker" /> </service>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</route>
|
|
|
|
</start>
|
|
|
|
<start name="dynamic_rom">
|
|
|
|
<resource name="RAM" quantum="4M"/>
|
|
|
|
<provides><service name="ROM"/></provides>
|
|
|
|
<config verbose="yes">
|
|
|
|
<rom name="dialog">
|
|
|
|
<inline description="example menu">
|
|
|
|
<dialog>
|
|
|
|
<frame>
|
|
|
|
<vbox>
|
|
|
|
<button name="virtualbox">
|
|
|
|
<label text="VirtualBox"/>
|
|
|
|
</button>
|
|
|
|
<button name="toolchain" hovered="yes">
|
|
|
|
<label text="Tool chain"/>
|
|
|
|
</button>
|
|
|
|
<button name="log" hovered="yes" selected="yes">
|
|
|
|
<label text="Log window"/>
|
|
|
|
</button>
|
|
|
|
<button name="config" selected="yes">
|
|
|
|
<label text="Configuration"/>
|
|
|
|
</button>
|
|
|
|
</vbox>
|
|
|
|
</frame>
|
|
|
|
</dialog>
|
|
|
|
</inline>
|
|
|
|
<sleep milliseconds="2000" />
|
|
|
|
<inline description="example menu">
|
|
|
|
<dialog>
|
|
|
|
<frame>
|
|
|
|
<vbox>
|
|
|
|
<button name="virtualbox" hovered="yes">
|
|
|
|
<label text="VirtualBox"/>
|
|
|
|
</button>
|
|
|
|
<button name="toolchain">
|
|
|
|
<label text="Tool chain"/>
|
|
|
|
</button>
|
|
|
|
<button name="log" selected="yes">
|
|
|
|
<label text="Log window"/>
|
|
|
|
</button>
|
|
|
|
<button name="config" selected="yes" hovered="yes">
|
|
|
|
<label text="Configuration"/>
|
|
|
|
</button>
|
|
|
|
</vbox>
|
|
|
|
</frame>
|
|
|
|
</dialog>
|
|
|
|
</inline>
|
|
|
|
<sleep milliseconds="2000" />
|
|
|
|
</rom>
|
|
|
|
</config>
|
|
|
|
</start>
|
|
|
|
<start name="menu_view">
|
|
|
|
<resource name="RAM" quantum="5M"/>
|
|
|
|
<config xpos="200" ypos="100">
|
|
|
|
<libc>
|
|
|
|
<vfs>
|
|
|
|
<tar name="menu_view_styles.tar" />
|
|
|
|
</vfs>
|
|
|
|
</libc>
|
|
|
|
</config>
|
|
|
|
<route>
|
|
|
|
<service name="ROM"> <if-arg key="label" value="dialog"/>
|
|
|
|
<child name="dynamic_rom" />
|
|
|
|
</service>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</route>
|
|
|
|
</start>
|
|
|
|
<start name="scout">
|
|
|
|
<resource name="RAM" quantum="64M" />
|
|
|
|
</start>
|
|
|
|
</config>}
|
|
|
|
|
|
|
|
install_config $config
|
|
|
|
|
|
|
|
#
|
|
|
|
# Boot modules
|
|
|
|
#
|
|
|
|
|
|
|
|
# generic modules
|
|
|
|
set boot_modules {
|
2016-12-01 18:00:11 +00:00
|
|
|
core ld.lib.so init timer dynamic_rom fb_sdl nitpicker pointer menu_view
|
|
|
|
libpng.lib.so libc.lib.so libm.lib.so zlib.lib.so
|
2014-09-12 18:34:49 +00:00
|
|
|
menu_view_styles.tar
|
|
|
|
scout
|
|
|
|
}
|
|
|
|
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
|
|
|
|
run_genode_until forever
|