# # \brief Test for using the libc_ffat plugin # \author Christian Prochaska # \date 2011-05-27 # if {[have_spec hw_odroid_xu]} { puts "Run script does not support this platform." exit 0 } # use SD on ARM set use_sd_card_drv [expr [have_spec omap4] || [have_spec platform_arndale] || [have_spec pl180]] # use AHCI on x86 set use_ahci [have_spec x86] if {[catch { exec which $mkfs_cmd } ]} { puts stderr "Error: $mkfs_cmd not installed, aborting test"; exit } if {[have_spec linux]} { puts "Run script does not support this platform"; exit } if {![have_include "power_on/qemu"]} { puts "\nPlease setup your native sd or hard drive. Remove this fail stop"; puts "check when you have prepared your native environment.\n"; exit 0 } # # Build # set build_components { core init drivers/timer test/libc_block } lappend build_components test/libc_$filesystem lappend_if [have_spec pci] build_components drivers/pci lappend_if [have_spec acpi] build_components drivers/acpi lappend_if $use_ahci build_components drivers/ahci lappend_if $use_sd_card_drv build_components drivers/sd_card build $build_components create_boot_directory # # Generate config # set config { } append config " " append config { } append config $libc_dev_blkdev append config { } append_if [have_spec acpi] config { } append_if [expr ![have_spec acpi] && [have_spec pci]] config { } append_if $use_ahci config { } append_if [expr $use_ahci && [have_spec acpi]] config { } append_if $use_ahci config { } append_if $use_sd_card_drv config { } append config { } install_config $config # # Boot modules # # generic modules set boot_modules { core init timer ld.lib.so libc.lib.so } append boot_modules test-libc_$filesystem append boot_modules " " append boot_modules libc_$filesystem.lib.so lappend_if [have_spec pci] boot_modules pci_drv lappend_if [have_spec acpi] boot_modules acpi_drv lappend_if $use_ahci boot_modules ahci lappend_if $use_sd_card_drv boot_modules sd_card_drv build_boot_image $boot_modules # # Execute test case # set disk_image "bin/test.hda" set cmd "dd if=/dev/zero of=$disk_image bs=1024 count=65536" puts "creating disk image: $cmd" catch { exec sh -c $cmd } set cmd "$mkfs_cmd $mkfs_opts $disk_image" puts "formating disk: $cmd" catch { exec sh -c $cmd } # # Qemu # append qemu_args " -m 128 -nographic " append_if $use_ahci qemu_args " -drive id=disk,file=$disk_image,if=none -device ahci,id=ahci -device ide-drive,drive=disk,bus=ahci.0 -boot d" append_if $use_sd_card_drv qemu_args " -drive file=$disk_image,if=sd,cache=writeback " run_genode_until ".*child \"test-libc_$filesystem\" exited with exit value 0.*" 60 exec rm -f $disk_image # vi: set ft=tcl :