mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
c1a46c29b0
The relative path results in dangling symlinks if the run script is located in a subdirectory below run/ Fixes #2478
27 lines
716 B
Plaintext
27 lines
716 B
Plaintext
proc binary_name_ld_lib_so { } { return "ld-linux.lib.so" }
|
|
proc binary_name_core { } { return "core-linux" }
|
|
proc binary_name_timer { } { return "linux_timer_drv" }
|
|
|
|
|
|
##
|
|
# Populate boot directory with binaries on Linux
|
|
#
|
|
proc run_boot_dir {binaries} {
|
|
|
|
if {![file exists [run_dir]/genode/ld.lib.so]} { build { lib/ld/linux } }
|
|
|
|
foreach binary $binaries {
|
|
set src_binary_path "[pwd]/bin/[kernel_specific_binary $binary]"
|
|
exec ln -sf $src_binary_path [run_dir]/genode/$binary }
|
|
|
|
# check syntax of all boot modules named *.config
|
|
foreach file [glob -nocomplain [run_dir]/genode/*.config] {
|
|
check_xml_syntax $file }
|
|
}
|
|
|
|
|
|
##
|
|
# Base source archive within depot
|
|
#
|
|
proc base_src { } { return base-linux }
|