assert_spec foc assert_spec 32bit # # Build # set build_components { core init drivers/timer drivers/uart drivers/framebuffer l4linux } set use_usb_driver [expr [have_spec omap4] || [have_spec exynos5]] set use_nic_driver [expr !$use_usb_driver && [expr [have_spec lan9118] || [have_spec x86]]] set use_platform_drv [expr [have_spec platform_arndale] || [have_spec platform_imx53]] lappend_if $use_usb_driver build_components drivers/usb lappend_if $use_nic_driver build_components drivers/nic lappend_if [have_spec pci] build_components drivers/pci lappend_if [have_spec acpi] build_components drivers/acpi lappend_if [have_spec ps2] build_components drivers/input/ps2 lappend_if $use_platform_drv build_components drivers/platform lappend_if [have_spec gpio] build_components drivers/gpio build $build_components create_boot_directory # # Config # set config { } append_if [have_spec acpi] config { } append_if [expr ![have_spec acpi] && [have_spec pci]] config { } append_if [have_spec framebuffer] config { } append_if [have_spec ps2] config { } append_if $use_platform_drv config { } append_if [have_spec gpio] config { } append_if $use_usb_driver config { } append_if $use_nic_driver config { } append config { } append_if [have_spec x86] config { } append_if [have_spec arm] config { } append config { } install_config $config # # Boot modules # set boot_modules { core init timer kdb_uart_drv l4linux initrd.gz } lappend_if [have_spec pci] boot_modules pci_drv lappend_if [have_spec acpi] boot_modules acpi_drv lappend_if [have_spec ps2] boot_modules ps2_drv lappend_if [have_spec framebuffer] boot_modules fb_drv lappend_if $use_nic_driver boot_modules nic_drv lappend_if $use_usb_driver boot_modules usb_drv lappend_if $use_platform_drv boot_modules platform_drv lappend_if [have_spec gpio] boot_modules gpio_drv if {[have_spec x86]} { set uri "http://genode.org/files/release-11.11/l4lx/initrd-ia32.gz" } elseif {[have_spec arm]} { set uri "http://genode.org/files/release-11.11/l4lx/initrd-arm.gz" } if {![file exists bin/initrd.gz]} { puts "Download initramfs ..." exec >& /dev/null wget -c -O bin/initrd.gz $uri } exec >& /dev/null wget -O bin/initrd.gz.md5 $uri.md5 cd bin exec md5sum -c initrd.gz.md5 cd .. build_boot_image [join $boot_modules " "] # # Qemu # append qemu_args " -m 128 -nographic " append qemu_args " -serial mon:stdio " append_if [have_spec x86] qemu_args " -smp 2,cores=2 " append_if [have_spec x86] qemu_args " -net nic,model=e1000 -net user " append_if [have_spec lan9118] qemu_args " -net nic,model=lan9118 -net user " # # Execute test case # run_genode_until {.*\/ #.*} 220 # Wait for network to settle down send "sleep 5\n" send "wget http://genode.org/\n" expect { -re "Connecting to genode.org.*index.html.*\/ #.*" { } timeout { puts stderr "Error: Test execution timed out"; exit -2 } } puts "Test succeeded" exec rm bin/initrd.gz bin/initrd.gz.md5