Move OMAP4 support to world

Fix #202
This commit is contained in:
Stefan Kalkowski
2020-03-23 14:49:22 +01:00
committed by Norman Feske
parent 0ed545e55a
commit 0489c3edf4
27 changed files with 2903 additions and 0 deletions

24
tool/run/boot_dir/hw Normal file
View File

@@ -0,0 +1,24 @@
source [genode_dir]/tool/run/boot_dir/hw
proc bootstrap_link_address { } {
if {[have_spec "panda"]} { return "0x88000000" }
puts "unknown platform no linker address known"
exit -1
}
##
# Base source archive within depot
#
proc base_src { } {
if {[have_spec panda]} { return base-hw-panda }
global specs
puts stderr "Test requires base-hw kernel archive, which is missing for this build configuration"
puts stderr " SPECS=\"$specs\""
exit 0
}