2011-12-22 15:19:25 +00:00
|
|
|
#
|
|
|
|
# \brief NOVA-specific test-environment supplements
|
|
|
|
# \author Norman Feske
|
|
|
|
# \date 2010-08-31
|
|
|
|
#
|
|
|
|
# This file is meant to be used as '--include' argument for 'tool/run'.
|
|
|
|
#
|
|
|
|
|
2012-06-06 08:19:48 +00:00
|
|
|
##
|
|
|
|
# Install files needed to boot via PXE
|
|
|
|
#
|
|
|
|
proc install_pxe_bootloader_to_run_dir { } {
|
2013-01-16 10:04:01 +00:00
|
|
|
exec cp [genode_dir]/tool/boot/pulsar [run_dir]/boot/pulsar
|
|
|
|
exec cp [genode_dir]/tool/boot/bender [run_dir]/boot/bender
|
2012-06-06 08:19:48 +00:00
|
|
|
}
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
##
|
2012-11-20 09:07:45 +00:00
|
|
|
# Read the location of the NOVA kernel directory from 'etc/nova.conf'
|
2011-12-22 15:19:25 +00:00
|
|
|
#
|
|
|
|
proc nova_kernel { } {
|
|
|
|
global _nova_kernel
|
|
|
|
|
|
|
|
if {![info exists _nova_kernel]} {
|
|
|
|
if {[file exists etc/nova.conf]} {
|
|
|
|
set _nova_kernel [exec sed -n "/^NOVA_KERNEL/s/^.*=\\s*//p" etc/nova.conf]
|
|
|
|
} else {
|
2012-06-06 08:19:48 +00:00
|
|
|
set _nova_kernel "[pwd]/kernel/hypervisor"
|
2011-12-22 15:19:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $_nova_kernel
|
|
|
|
}
|
|
|
|
|
|
|
|
##
|
|
|
|
# Return whether nova is provided from the outside
|
|
|
|
#
|
|
|
|
proc nova_external { } {
|
|
|
|
if {[nova_kernel] == "[pwd]/kernel/hypervisor"} { return 0 }
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
##################################
|
|
|
|
## Test framework API functions ##
|
|
|
|
##################################
|
|
|
|
|
|
|
|
proc create_boot_directory { } {
|
|
|
|
exec rm -rf [run_dir]
|
|
|
|
exec mkdir -p [run_dir]/genode
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
proc build_boot_image {binaries} {
|
|
|
|
|
|
|
|
#
|
|
|
|
# Collect contents of the ISO image
|
|
|
|
#
|
|
|
|
copy_and_strip_genode_binaries_to_run_dir $binaries
|
|
|
|
|
|
|
|
if {![nova_external] && ![file exists [nova_kernel]]} { build { kernel } }
|
|
|
|
|
|
|
|
puts "using NOVA kernel at [nova_kernel]"
|
2012-06-21 13:10:51 +00:00
|
|
|
exec objcopy -O elf32-i386 [nova_kernel] [run_dir]/hypervisor
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
install_iso_bootloader_to_run_dir
|
|
|
|
|
|
|
|
#
|
|
|
|
# The core binary is part of the 'binaries' list but it must
|
|
|
|
# appear right after 'sigma0' as boot module. Hence the special case.
|
|
|
|
#
|
2012-06-06 08:19:48 +00:00
|
|
|
# Generate grub config file
|
|
|
|
#
|
2011-12-22 15:19:25 +00:00
|
|
|
set fh [open "[run_dir]/boot/grub/menu.lst" "WRONLY CREAT TRUNC"]
|
|
|
|
puts $fh "timeout 0"
|
|
|
|
puts $fh "default 0"
|
|
|
|
puts $fh "\ntitle Genode on NOVA"
|
2013-01-16 10:04:01 +00:00
|
|
|
puts $fh " kernel /boot/bender"
|
|
|
|
puts $fh " module /hypervisor iommu serial"
|
2011-12-22 15:19:25 +00:00
|
|
|
puts $fh " module /genode/core"
|
|
|
|
puts $fh " module /genode/config"
|
|
|
|
foreach binary $binaries {
|
|
|
|
if {$binary != "core"} {
|
|
|
|
puts $fh " module /genode/$binary" } }
|
|
|
|
close $fh
|
|
|
|
|
2013-01-16 10:04:01 +00:00
|
|
|
install_pxe_bootloader_to_run_dir
|
2011-12-22 15:19:25 +00:00
|
|
|
create_iso_image_from_run_dir
|
2012-06-06 08:19:48 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Generate pulsar config file
|
|
|
|
#
|
|
|
|
set fh [open "[run_dir]/config-52-54-00-12-34-56" "WRONLY CREAT TRUNC"]
|
2012-11-20 09:07:45 +00:00
|
|
|
puts $fh " exec /boot/bender"
|
2013-01-30 15:39:18 +00:00
|
|
|
puts $fh " load /hypervisor iommu serial"
|
2012-06-06 08:19:48 +00:00
|
|
|
puts $fh " load /genode/core"
|
|
|
|
puts $fh " load /genode/config"
|
|
|
|
foreach binary $binaries {
|
|
|
|
if {$binary != "core"} {
|
|
|
|
puts $fh " load /genode/$binary" } }
|
|
|
|
close $fh
|
2011-12-22 15:19:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
proc run_genode_until {{wait_for_re forever} {timeout_value 0}} {
|
|
|
|
spawn_qemu $wait_for_re $timeout_value }
|
|
|
|
|