mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
7617833365
Handle boot errors like the old run tool did by checking a kernel specific string on boot up and start the run script timeout afterwards. Issue #1395.
160 lines
4.2 KiB
Plaintext
160 lines
4.2 KiB
Plaintext
##
|
|
# Ensure that the next Genode build includes no target specific boot modules
|
|
#
|
|
proc clean_boot_modules { } {
|
|
exec rm -rf boot_modules.s var/libcache/boot_modules/boot_modules.o }
|
|
|
|
|
|
proc run_boot_dir_hook { } {
|
|
clean_boot_modules
|
|
}
|
|
|
|
|
|
proc run_boot_string { } {
|
|
return "kernel initialized"
|
|
}
|
|
|
|
|
|
##
|
|
# Populate boot directory with binaries on hw
|
|
#
|
|
proc run_boot_dir {binaries {core_type core}} {
|
|
if {$core_type == "test"} {
|
|
set core_bin "test-[run_name]"
|
|
set core_target "test/[run_name]"
|
|
} elseif {$core_type == "core"} {
|
|
set core_bin "core"
|
|
set core_target "core"
|
|
} else {
|
|
puts stderr "Error: Unknown core type '$core_type'"
|
|
exit -1
|
|
}
|
|
|
|
global run_target
|
|
|
|
# strip binaries
|
|
copy_and_strip_genode_binaries_to_run_dir $binaries
|
|
|
|
# append init config
|
|
if {[file exists "[run_dir]/genode/config"] == 1} {
|
|
append binaries " config"
|
|
}
|
|
|
|
#
|
|
# Compose a platform specific assembly file 'boot_modules.s', that
|
|
# enables the creation of a single boot image. The file rawly includes
|
|
# all binaries given in 'binaries', minus 'core', if given, plus 'config',
|
|
# if available. It also provides a simple file system, that enables Genode
|
|
# to access these BLOBs. To build a single image this file is simply
|
|
# linked against core. To build core stand-alone this file is substituted
|
|
# by a dummy version. 'boot_modules.s' must be composed on demand, because
|
|
# it depends on the individual run scenario.
|
|
#
|
|
set boot_modules "[run_dir]/boot_modules.s"
|
|
|
|
# introduce boot module headers
|
|
exec echo -e \
|
|
"/**" \
|
|
"\n * This file was automatically generated by the procedure" \
|
|
"\n * 'run_boot_dir' in 'base-hw/run/env'." \
|
|
"\n */" \
|
|
"\n" \
|
|
"\n /* core includes */" \
|
|
"\n.include \"macros.s\"" \
|
|
"\n" \
|
|
"\n.section .data" \
|
|
"\n" \
|
|
"\n.p2align DATA_ACCESS_ALIGNM_LOG2" \
|
|
"\n.global _boot_modules_headers_begin" \
|
|
"\n_boot_modules_headers_begin:" > $boot_modules
|
|
|
|
# generate header for each boot module except core
|
|
set i 1
|
|
foreach binary $binaries {
|
|
if {$binary == $core_bin} { continue }
|
|
exec echo -e \
|
|
"\n.long _boot_module_${i}_name" \
|
|
"\n.long _boot_module_${i}_begin" \
|
|
"\n.long _boot_module_${i}_end - _boot_module_${i}_begin" \
|
|
>> $boot_modules
|
|
incr i
|
|
}
|
|
|
|
# end boot module headers
|
|
exec echo -e \
|
|
"\n.global _boot_modules_headers_end" \
|
|
"\n_boot_modules_headers_end:" >> $boot_modules
|
|
|
|
# generate name string for each module except core
|
|
set i 1
|
|
foreach binary $binaries {
|
|
if {$binary == $core_bin} { continue }
|
|
exec echo -e \
|
|
"\n.p2align DATA_ACCESS_ALIGNM_LOG2" \
|
|
"\n_boot_module_${i}_name:" \
|
|
"\n.string \"${binary}\"" \
|
|
"\n.byte 0" >> $boot_modules
|
|
incr i
|
|
}
|
|
|
|
exec echo -e \
|
|
"\n.section .data.boot_modules_binaries" \
|
|
"\n" \
|
|
"\n.global _boot_modules_binaries_begin" \
|
|
"\n_boot_modules_binaries_begin:" >> $boot_modules
|
|
|
|
# include raw data of modules consecutively but page aligned
|
|
set i 1
|
|
foreach binary $binaries {
|
|
if {$binary == $core_bin} { continue }
|
|
exec echo -e \
|
|
"\n.p2align MIN_PAGE_SIZE_LOG2" \
|
|
"\n_boot_module_${i}_begin:" \
|
|
"\n.incbin \"[run_dir]/genode/${binary}\"" \
|
|
"\n_boot_module_${i}_end:" >> $boot_modules
|
|
incr i
|
|
}
|
|
|
|
# finish boot modules file
|
|
exec echo -e \
|
|
"\n.global _boot_modules_binaries_end" \
|
|
"\n_boot_modules_binaries_end:" >> $boot_modules
|
|
|
|
clean_boot_modules
|
|
exec ln -s $boot_modules boot_modules.s
|
|
|
|
# recompile core with boot modules
|
|
exec cp -L bin/$core_bin $core_target/$core_bin.standalone
|
|
exec find . -type f -name $core_bin -delete
|
|
set timeout 10000
|
|
set pid [eval "spawn make $core_target"]
|
|
expect { eof { } }
|
|
if {[lindex [wait $pid] end] != 0} {
|
|
clean_boot_modules
|
|
puts stderr "Error: Genode build failed"
|
|
exit -1
|
|
}
|
|
clean_boot_modules
|
|
exec rm -rf "[run_dir]/genode"
|
|
|
|
# offer ELF image
|
|
set elf_img "[run_dir]/image.elf"
|
|
exec cp -L bin/$core_bin $elf_img
|
|
exec [cross_dev_prefix]strip $elf_img
|
|
|
|
run_image $elf_img
|
|
|
|
# set symbolic link to image.elf file in TFTP directory for PXE boot
|
|
if {[have_include "load/tftp"]} {
|
|
exec ln -sf [pwd]/$elf_img [load_tftp_base_dir][load_tftp_offset_dir]
|
|
|
|
if {[have_include "image/uboot"]} {
|
|
exec ln -sf [pwd]/[run_dir]/uImage [load_tftp_base_dir][load_tftp_offset_dir]
|
|
}
|
|
}
|
|
|
|
# retrieve stand-alone core
|
|
exec cp $core_target/$core_bin.standalone bin/$core_bin
|
|
exec rm $core_target/$core_bin.standalone
|
|
}
|