mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +00:00
8eec092851
This makes use of the iPXE sanboot command [1] which downloads and boots an ISO image directly via HTTP. Therefore, your RUN_OPT needs both --include image/iso and --include load/ipxe NOTE: The webserver serving the ISO image must support ranged requests, see [2]. [1] - http://ipxe.org/cmd/sanboot [2] - http://forum.ipxe.org/showthread.php?tid=7295&pid=10482#pid10482
69 lines
1.5 KiB
Plaintext
69 lines
1.5 KiB
Plaintext
##
|
|
# Load files needed by the scenario via iPXE/HTTP
|
|
#
|
|
# \param --load-ipxe-base-dir base directory of iPXE/HTTP server
|
|
# \param --load-ipxe-boot-dir boot directory relative to HTTP base
|
|
#
|
|
|
|
source [genode_dir]/tool/run/load.inc
|
|
|
|
|
|
##
|
|
# The files are loaded implicitly via iPXE/HTTP to the target machine
|
|
#
|
|
proc run_load { } {
|
|
global load_spawn_id
|
|
set load_spawn_id -1
|
|
return true
|
|
}
|
|
|
|
|
|
proc load_ipxe_base_dir { } { return [get_cmd_arg --load-ipxe-base-dir ""] }
|
|
|
|
|
|
proc load_ipxe_boot_dir { } { return [get_cmd_arg --load-ipxe-boot-dir ""] }
|
|
|
|
|
|
##
|
|
# Install files needed to boot via iPXE
|
|
#
|
|
proc install_bender_to_run_dir { } {
|
|
exec mkdir -p [run_dir]/boot
|
|
exec cp [genode_dir]/tool/boot/bender [run_dir]/boot/bender
|
|
}
|
|
|
|
|
|
##
|
|
# Create symlink for ISO image in current run directory.
|
|
#
|
|
proc create_symlink_for_iso { } {
|
|
exec ln -sfn [pwd]/[run_dir].iso [pwd]/[run_dir]/[run_name].iso
|
|
}
|
|
|
|
##
|
|
# Update iPXE boot directory to point to current run directory.
|
|
#
|
|
proc update_ipxe_boot_dir { } {
|
|
exec ln -sfn [pwd]/[run_dir] [load_ipxe_base_dir]/[load_ipxe_boot_dir]
|
|
}
|
|
|
|
##
|
|
# Create iPXE config file which directly boots an ISO file.
|
|
#
|
|
proc create_ipxe_iso_config { } {
|
|
if {[have_include "image/iso"]} {
|
|
set fh [open "[run_dir]/boot.cfg" "WRONLY CREAT TRUNC"]
|
|
puts $fh "#!ipxe"
|
|
puts $fh "sanboot [run_name].iso || goto failed"
|
|
puts $fh
|
|
puts $fh ":failed"
|
|
puts $fh "echo Booting failed, dropping to shell"
|
|
puts $fh "shell"
|
|
puts $fh "boot"
|
|
close $fh
|
|
} else {
|
|
puts "Warning, iPXE requires ISO image."
|
|
exit -1
|
|
}
|
|
}
|