genode/tool/run/image/iso

25 lines
873 B
Plaintext
Raw Normal View History

2015-01-08 22:08:48 +01:00
source [genode_dir]/tool/run/iso.inc
##
# Create ISO image with the content of the run directory
#
proc run_image { {unused ""} } {
requires_installation_of xorriso
2015-01-08 22:08:48 +01:00
puts "creating ISO image..."
exec rm -f "[run_dir].iso"
set grub2_path [get_grub2_dir]
2015-01-08 22:08:48 +01:00
#
# 'xorriso' writes diagnostics to stderr, which are interpreted as
2015-01-08 22:08:48 +01:00
# execution failure by expect unless '-ignorestderr' is set on 'exec'.
#
if {[catch {exec -ignorestderr xorriso -out_charset utf-8 -report_about HINT -as mkisofs -f -l -R -hide-rr-moved -graft-points --modification-date=2017101816570300 -b boot/grub/i386-pc/eltorito.img -no-emul-boot -boot-load-size 4 -boot-info-table --embedded-boot $grub2_path/boot/grub2/embedded.img --protective-msdos-label -o [run_dir].iso -r [run_dir] --sort-weight 0 / --sort-weight 1 /boot} ]} {
2015-01-08 22:08:48 +01:00
puts stderr "Error: ISO image creation failed"
exit -5
}
}