depot: support for ARM 64-bit for base-foc on rpi3

issue #3407
This commit is contained in:
Sebastian Sumpf
2019-05-21 14:01:26 +02:00
committed by Christian Helmuth
parent 90d07741aa
commit e337b844e5
9 changed files with 18 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ proc core_link_address { } {
if {[have_spec x86 ]} { return "0x01100000" }
if {[have_spec arndale ]} { return "0x80100000" }
if {[have_spec rpi ]} { return "0x00800000" }
if {[have_spec rpi3 ]} { return "0x00800000" }
if {[have_spec rpi3 ]} { return "0x02000000" }
if {[have_spec panda ]} { return "0xa0000000" }
if {[have_spec pbxa9 ]} { return "0x76000000" }
if {[have_spec odroid_x2]} { return "0x80100000" }
@@ -227,6 +227,7 @@ proc base_src { } {
if {[have_spec x86]} { return base-foc-pc }
if {[have_spec pbxa9]} { return base-foc-pbxa9 }
if {[have_spec arndale]} { return base-foc-arndale }
if {[have_spec rpi3]} { return base-foc-rpi3 }
if {[have_spec imx6q_sabrelite]} { return base-foc-imx6q_sabrelite }
if {[have_spec imx7d_sabre]} { return base-foc-imx7d_sabre }

View File

@@ -23,6 +23,7 @@ proc depot_spec { } {
if {[have_spec x86_64]} { return "x86_64" }
if {[have_spec arm_v6]} { return "arm_v6" }
if {[have_spec arm_v7a]} { return "arm_v7a" }
if {[have_spec arm_v8a]} { return "arm_v8a" }
}