# # Build # if {[have_spec hw_odroid_xu]} { puts "Run script not supported on this platform."; exit 0 } set build_components { core init drivers/timer server/wm app/decorator app/floating_window_layouter server/nitpicker app/pointer server/report_rom drivers/framebuffer drivers/input test/nitpicker app/backdrop app/launchpad server/nit_fb } lappend_if [have_spec usb] build_components drivers/usb lappend_if [have_spec gpio] build_components drivers/gpio source ${genode_dir}/repos/base/run/platform_drv.inc append_platform_drv_build_components build $build_components create_boot_directory # # Generate config # append config { } append_if [have_spec sdl] config { } append_platform_drv_config append_if [have_spec framebuffer] config { } append_if [have_spec gpio] config { } append_if [have_spec imx53] config { } append_if [have_spec ps2] config { } append_if [expr ![have_spec ps2] && [have_spec usb]] config { } append config { </controls> </config> <route> <any-service> <child name="wm"/> <child name="report_rom"/> <parent/> <any-child/> </any-service> </route> </start> <start name="launchpad" priority="-1"> <resource name="RAM" quantum="20M"/> <config> <launcher name="nit_fb" ram_quota="7M"> <config width="500" height="400" /> </launcher> <launcher name="nitpicker" ram_quota="1M" > <config> <domain name="default" layer="2" /> <default-policy domain="default"/> </config> </launcher> <launcher name="testnit" ram_quota="768K" /> </config> <route> <any-service> <child name="wm"/> <parent/> <any-child/> </any-service> </route> </start> <start name="backdrop" priority="-1"> <resource name="RAM" quantum="4M"/> <config> <libc> <vfs> <rom name="genode_logo.png"/> <rom name="grid.png"/> </vfs> </libc> <fill color="#224433" /> <image png="grid.png" tiled="yes" alpha="200" /> <image png="genode_logo.png" anchor="bottom_right" alpha="150" xpos="-20" ypos="-20" /> </config> <route> <any-service> <child name="nitpicker"/> <parent/> <any-child/> </any-service> </route> </start> <start name="wm_backdrop" priority="-1"> <binary name="backdrop" /> <resource name="RAM" quantum="4M"/> <config> <libc> <vfs> <rom name="genode_logo.png"/> </vfs> </libc> <fill color="#664455" /> <image png="genode_logo.png" scale="zoom" alpha="150" /> <image png="genode_logo.png" scale="fit" alpha="150" tiled="yes" /> <image png="genode_logo.png" /> </config> <route> <any-service> <child name="wm"/> <parent/> <any-child/> </any-service> </route> </start> </config>} install_config $config # copy backdrop PNG images to bin directory foreach file { genode_logo.png grid.png } { file copy -force [genode_dir]/repos/gems/src/app/backdrop/$file bin/ } # # Boot modules # # generic modules set boot_modules { core init timer wm decorator floating_window_layouter nitpicker pointer report_rom backdrop testnit launchpad nit_fb ld.lib.so libpng.lib.so libc.lib.so libm.lib.so zlib.lib.so genode_logo.png grid.png } # platform-specific modules append_platform_drv_boot_modules lappend_if [have_spec linux] boot_modules fb_sdl lappend_if [have_spec ps2] boot_modules ps2_drv lappend_if [have_spec framebuffer] boot_modules fb_drv lappend_if [have_spec usb] boot_modules usb_drv lappend_if [have_spec gpio] boot_modules gpio_drv lappend_if [have_spec imx53] boot_modules input_drv build_boot_image $boot_modules append qemu_args " -m 256 " run_genode_until forever