set use_net 0 set use_usb_qemu 0 set use_serial 1 set use_top 1 set use_vbox5_nova 0 # use_gui starts two VMs set use_gui 0 set build_components { drivers/framebuffer server/report_rom } append build_components virtualbox5 set virtualbox_binary "virtualbox5" if {$use_vbox5_nova} { set virtualbox_binary "virtualbox5-nova" } create_boot_directory import_from_depot [depot_user]/src/[base_src] \ [depot_user]/src/init \ [depot_user]/src/jpeg \ [depot_user]/src/libc \ [depot_user]/src/nitpicker \ [depot_user]/src/stdcxx \ [depot_user]/src/vfs \ [depot_user]/src/vfs_pipe \ [depot_user]/pkg/[drivers_interactive_pkg] \ [depot_user]/pkg/themed_wm lappend_if [expr $use_top] build_components app/top lappend_if [expr $use_serial] build_components server/log_terminal lappend_if [have_spec x86] build_components drivers/rtc lappend_if [expr $use_net] build_components drivers/nic lappend_if [expr $use_net] build_components server/nic_router build $build_components set config { } append_if [expr $use_top] config { } append config { } append_if [expr $use_top] config { } append config { } append_if [expr $use_net] config { } append_if [expr $use_serial] config { } append config { } append config { } append_if [expr $use_gui] config { } append_if [expr $use_gui && $use_serial] config { } append_if [expr $use_gui] config { } append config { } append_if [expr $use_serial] config { } append config { } install_config $config exec cp ${genode_dir}/repos/ports/run/test.vbox bin/. set boot_modules { test.iso test.vbox } append boot_modules $virtualbox_binary # platform-specific modules lappend_if [have_spec x86] boot_modules rtc_drv lappend_if [expr $use_top] boot_modules top lappend_if [expr $use_gui] boot_modules report_rom append boot_modules { libiconv.lib.so qemu-usb.lib.so libyuv.lib.so } append_if [expr $use_net] boot_modules { pc_nic_drv } append_if [expr $use_net] boot_modules { nic_router } append_if [expr $use_serial] boot_modules { log_terminal } build_boot_image $boot_modules if {[have_include "power_on/qemu"]} { if {[expr $use_gui]} { append qemu_args " -m 2048 " } else { append qemu_args " -m 1024 " } append qemu_args " -cpu EPYC " if {[expr $use_usb_qemu]} { append qemu_args " -usbdevice mouse -usbdevice keyboard" } } run_genode_until forever