29 lines
694 B
Plaintext
29 lines
694 B
Plaintext
source [genode_dir]/tool/run/boot_dir/hw
|
|
|
|
|
|
proc bootstrap_link_address { } {
|
|
if {[have_spec "arndale"]} { return "0x88000000" }
|
|
if {[have_spec "odroid_xu"]} { return "0x88000000" }
|
|
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 arndale]} { return base-hw-arndale }
|
|
if {[have_spec odroid_xu]} { return base-hw-odroid_xu }
|
|
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
|
|
}
|