mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
28c25f120e
This was missing as boot_dir/hw and boot_dir/linux do not use `proc build_core_image`.
30 lines
827 B
Plaintext
30 lines
827 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 }
|
|
|
|
# Save config part of the image.elf for easy inspection
|
|
exec cp -f [run_dir]/genode/config [run_dir].config
|
|
}
|
|
|
|
|
|
##
|
|
# Base source archive within depot
|
|
#
|
|
proc base_src { } { return base-linux }
|