mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-08 03:45:24 +00:00
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:
parent
42c5f2e91e
commit
6fb9c802d3
@ -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";
|
||||
|
@ -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 -->
|
||||
|
@ -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" }
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user