depot: enable package building for armv6

* Allow depot_autopilot to be run on top of arm_v6 too (Ref #3027)
This commit is contained in:
Stefan Kalkowski 2018-11-30 11:18:24 +01:00 committed by Norman Feske
parent 42c5f2e91e
commit 6fb9c802d3
3 changed files with 3 additions and 0 deletions

View File

@ -572,6 +572,7 @@ proc prepare_to_run_genode { } {
# Check platform support
#
if {[expr ![have_spec x86] && \
![have_spec arm_v6] && \
![have_spec arm_v7a] ]} \
{
puts "\n Run script is not supported on this platform. \n";

View File

@ -8,6 +8,7 @@
<xs:restriction base="xs:string">
<xs:enumeration value="x86_64" />
<xs:enumeration value="x86_32" />
<xs:enumeration value="arm_v6" />
<xs:enumeration value="arm_v7a" />
</xs:restriction>
</xs:simpleType><!-- Architecture -->

View File

@ -21,6 +21,7 @@ proc depot_dir { } {
proc depot_spec { } {
if {[have_spec x86_32]} { return "x86_32" }
if {[have_spec x86_64]} { return "x86_64" }
if {[have_spec arm_v6]} { return "arm_v6" }
if {[have_spec arm_v7a]} { return "arm_v7a" }
}