mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-02 12:06:44 +00:00
015d319fa7
This way, files copied from the depot are incorporated in addition to the files explicitly specified as boot modules. The patch also adds an automatic check for the validity of the XML syntax of boot modules ending with '.config'. Issue #2339
189 lines
5.6 KiB
Plaintext
189 lines
5.6 KiB
Plaintext
proc binary_name_ld_lib_so { } { return "ld-hw.lib.so" }
|
|
proc binary_name_core_o { } { return "core-hw.o" }
|
|
proc binary_name_timer { } { return "hw_timer_drv" }
|
|
|
|
|
|
proc run_boot_string { } { return "\nkernel initialized" }
|
|
|
|
proc bootstrap_link_address { } {
|
|
if {[have_spec "odroid_xu"]} { return "0x80000000" }
|
|
if {[have_spec "pbxa9"]} { return "0x70000000" }
|
|
if {[have_spec "usb_armory"]} { return "0x72000000" }
|
|
if {[have_spec "x86_64"]} { return "0x00200000" }
|
|
if {[have_spec "wand_quad"]} { return "0x10001000" }
|
|
if {[have_spec "imx53_qsb"]} { return "0x70010000" }
|
|
if {[have_spec "arndale"]} { return "0x80000000" }
|
|
if {[have_spec "panda"]} { return "0x81000000" }
|
|
if {[have_spec "zynq"]} { return "0x00100000" }
|
|
if {[have_spec "riscv"]} { return "0x00000200" }
|
|
if {[have_spec "rpi"]} { return "0x00800000" }
|
|
|
|
puts "unknown platform no linker address known"
|
|
exit -1
|
|
}
|
|
|
|
proc core_link_address { } {
|
|
if {[have_spec "riscv"]} { return "0x1000000" }
|
|
scan [bootstrap_link_address] 0x%x link_address
|
|
return [format 0x%08x [expr {$link_address + 0x10000000}]]
|
|
}
|
|
|
|
|
|
##
|
|
# Populate boot directory with binaries on hw
|
|
#
|
|
proc run_boot_dir {binaries} {
|
|
|
|
# generate static ACPI report for platform driver on Muen
|
|
if {[have_spec "muen"]} {
|
|
set fh [open "bin/acpi" "WRONLY CREAT TRUNC"]
|
|
puts $fh "<acpi><bdf start=\"0\" count=\"16384\" base=\"0xf8000000\"/></acpi>"
|
|
close $fh
|
|
}
|
|
|
|
#
|
|
# Build bootstrap, the core object, and the dynamic linker on demand
|
|
#
|
|
# If those parts were imported from the depot, the build step is skipped.
|
|
#
|
|
set bootstrap_arg ""
|
|
set core_arg ""
|
|
set ld_arg ""
|
|
|
|
if {![file exists [run_dir]/genode/ld.lib.so]} { set ld_arg lib/ld/hw }
|
|
if {![file exists [run_dir]/genode/core-hw.o]} { set core_arg core/hw }
|
|
if {![file exists [run_dir]/genode/bootstrap-hw.o]} { set bootstrap_arg bootstrap/hw }
|
|
|
|
set build_args "$bootstrap_arg $core_arg $ld_arg"
|
|
if {[llength $build_args]} { build $build_args }
|
|
|
|
if {$ld_arg != ""} { file copy -force bin/ld-hw.lib.so [run_dir]/genode/ld.lib.so }
|
|
if {$core_arg != ""} { file copy -force bin/core-hw.o [run_dir]/genode/core-hw.o }
|
|
if {$bootstrap_arg != ""} { file copy -force bin/bootstrap-hw.o [run_dir]/genode/bootstrap-hw.o }
|
|
|
|
#
|
|
# Copy specified modules to the run directory, excluding core.
|
|
#
|
|
set idx [lsearch $binaries "core"]
|
|
set modules [lreplace $binaries $idx $idx]
|
|
copy_genode_binaries_to_run_dir $modules
|
|
|
|
puts "core link address is [core_link_address]"
|
|
|
|
set core_obj core-hw.o
|
|
set bootstrap_obj bootstrap-hw.o
|
|
|
|
# create core and bootstrap binary without modules for debugging
|
|
build_core [run_dir]/genode/$core_obj {} [run_dir].core [core_link_address]
|
|
build_core [run_dir]/genode/$bootstrap_obj {} [run_dir].bootstrap [bootstrap_link_address]
|
|
|
|
# determine modules to be incorporated into the core image
|
|
set modules [glob -tails -directory [run_dir]/genode/ *]
|
|
set excluded_modules {}
|
|
lappend excluded_modules $core_obj $bootstrap_obj
|
|
foreach excluded $excluded_modules {
|
|
set modules [lsearch -inline -not -all $modules $excluded] }
|
|
|
|
# check syntax of all boot modules named *.config
|
|
foreach file [glob -nocomplain [run_dir]/genode/*.config] {
|
|
check_xml_syntax $file }
|
|
|
|
# create core binary containing the boot modules
|
|
build_core [run_dir]/genode/$core_obj $modules [run_dir]/genode/core.elf [core_link_address]
|
|
exec [cross_dev_prefix]strip [run_dir]/genode/core.elf
|
|
build_core [run_dir]/genode/$bootstrap_obj { core.elf } [run_dir]/image.elf [bootstrap_link_address]
|
|
exec rm -fr [run_dir]/genode
|
|
exec [cross_dev_prefix]strip [run_dir]/image.elf
|
|
|
|
if {[have_include "image/iso"] || [have_include "image/disk"]} {
|
|
#
|
|
# Install isolinux/GRUB files and bender
|
|
#
|
|
install_iso_bootloader_to_run_dir
|
|
|
|
#
|
|
# Generate GRUB config file
|
|
#
|
|
set fh [open "[run_dir]/boot/grub/menu.lst" "WRONLY CREAT TRUNC"]
|
|
puts $fh "timeout 0"
|
|
puts $fh "default 0"
|
|
|
|
if {[have_spec "muen"]} {
|
|
puts $fh "\ntitle Genode on base-hw/Muen SK"
|
|
puts $fh " kernel /image.bin"
|
|
} else {
|
|
puts $fh "\ntitle Genode on base-hw"
|
|
puts $fh " kernel /boot/bender"
|
|
puts $fh " module /image.elf"
|
|
}
|
|
close $fh
|
|
}
|
|
|
|
run_image [run_dir]/image.elf
|
|
|
|
# set symbolic link to image.elf file in TFTP directory for PXE boot
|
|
if {[have_spec arm] && [have_include "load/tftp"]} {
|
|
exec ln -sf [run_dir]/image.elf [load_tftp_base_dir][load_tftp_offset_dir]
|
|
|
|
if {[have_include "image/uboot"]} {
|
|
exec ln -sf [pwd]/[run_dir]/uImage [load_tftp_base_dir][load_tftp_offset_dir]
|
|
}
|
|
}
|
|
|
|
if {[have_spec x86] && [have_include "load/tftp"]} {
|
|
#
|
|
# Install PXE bootloader pulsar
|
|
#
|
|
install_pxe_bootloader_to_run_dir
|
|
|
|
#
|
|
# Generate pulsar config file
|
|
#
|
|
set fh [open "[run_dir]/config-52-54-00-12-34-56" "WRONLY CREAT TRUNC"]
|
|
if {[have_spec "muen"]} {
|
|
exec gzip [run_dir]/image.bin
|
|
puts $fh " exec /boot/unzip"
|
|
puts $fh " load /image.bin.gz"
|
|
} else {
|
|
puts $fh " exec /boot/bender"
|
|
puts $fh " load /image.elf"
|
|
}
|
|
close $fh
|
|
|
|
generate_tftp_config
|
|
}
|
|
|
|
if {[have_spec x86] && [have_include "load/ipxe"]} {
|
|
#
|
|
# Generate iPXE config file
|
|
#
|
|
set fh [open "[run_dir]/boot.cfg" "WRONLY CREAT TRUNC"]
|
|
puts $fh "#!ipxe"
|
|
|
|
if {[have_spec "muen"]} {
|
|
puts $fh "kernel image.bin"
|
|
} else {
|
|
install_pxe_bootloader_to_run_dir
|
|
puts $fh "kernel boot/bender"
|
|
puts $fh "module image.elf"
|
|
}
|
|
puts $fh "boot"
|
|
close $fh
|
|
|
|
update_ipxe_boot_dir
|
|
}
|
|
}
|
|
|
|
|
|
##
|
|
# Base source archive within depot
|
|
#
|
|
proc base_src { } {
|
|
|
|
if {[have_spec x86_64]} { return base-hw-pc }
|
|
if {[have_spec pbxa9]} { return base-hw-pbxa9 }
|
|
|
|
puts stderr "base-hw kernel does not support this build configuration"
|
|
exit 1
|
|
}
|