mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
054b8de67b
Ref #2526
21 lines
415 B
PHP
21 lines
415 B
PHP
##
|
|
# Determine GRUB2 directory
|
|
#
|
|
proc get_grub2_dir { } {
|
|
set ::env(MAKEFLAGS) s
|
|
set grub2_path [exec [genode_dir]/tool/ports/current grub2]
|
|
|
|
if {![file exists $grub2_path]} {
|
|
puts ""
|
|
puts "Port not prepared or outdated:"
|
|
puts " grub2"
|
|
puts ""
|
|
puts "You can prepare respectively update it as follows:"
|
|
puts " [genode_dir]/tool/ports/prepare_port grub2"
|
|
puts ""
|
|
exit 1
|
|
}
|
|
|
|
return $grub2_path
|
|
}
|