genode/tool/run/iso.inc

22 lines
598 B
PHP
Raw Normal View History

2015-01-08 22:08:48 +01:00
##
# Install files needed to create a bootable ISO image
#
# The ISO boot concept uses GRUB2 and xorriso to boot from ISO and USB stick.
2015-01-08 22:08:48 +01:00
#
source [genode_dir]/tool/run/grub2.inc
2015-01-08 22:08:48 +01:00
proc install_iso_bootloader_to_run_dir { } {
puts "install bootloader"
set grub2_path [get_grub2_dir]
2015-01-08 22:08:48 +01:00
exec mkdir -p [run_dir]/boot/grub/i386-pc
exec cp $grub2_path/boot/grub2/eltorito.img [run_dir]/boot/grub/i386-pc/.
foreach file [glob -nocomplain $grub2_path/boot/grub2/\*.mod] {
exec cp $file [run_dir]/boot/grub/i386-pc/[file tail $file]
}
2015-01-08 22:08:48 +01:00
exec cp [genode_dir]/tool/boot/bender [run_dir]/boot/bender
}