arch: add s390 and s390x architectures and samples

This commit is contained in:
harold
2009-11-14 15:03:01 -06:00
parent 1ebe0b246a
commit 2cde67ddc4
8 changed files with 796 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# Compute s390-specific values
CT_DoArchTupleValues() {
# The architecture part of the tuple:
# Explicit settings not required for the default value "s390"
#CT_TARGET_ARCH="s390"
#CT_KERNEL_ARCH="s390"
return 0
}

View File

@ -0,0 +1,8 @@
# Compute s390x-specific values
CT_DoArchTupleValues() {
# The architecture part of the tuple:
# Explicit settings not required for the default value "s390x"
#CT_TARGET_ARCH="s390x"
CT_KERNEL_ARCH="s390"
}