summaryrefslogtreecommitdiff
path: root/scripts/build/arch
diff options
context:
space:
mode:
authorharold <harold@dev.site>2009-11-14 21:03:01 (GMT)
committerharold <harold@dev.site>2009-11-14 21:03:01 (GMT)
commit2cde67ddc4f34c499428911bdb9479b0c00c546a (patch)
treeccfe6c129d27c6365d1581743d826ac4456cda22 /scripts/build/arch
parent1ebe0b246a554f4029f5be336013cc8c9b7d427e (diff)
arch: add s390 and s390x architectures and samples
Diffstat (limited to 'scripts/build/arch')
-rw-r--r--scripts/build/arch/s390.sh9
-rw-r--r--scripts/build/arch/s390x.sh8
2 files changed, 17 insertions, 0 deletions
diff --git a/scripts/build/arch/s390.sh b/scripts/build/arch/s390.sh
new file mode 100644
index 0000000..b22e9bb
--- /dev/null
+++ b/scripts/build/arch/s390.sh
@@ -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
+}
diff --git a/scripts/build/arch/s390x.sh b/scripts/build/arch/s390x.sh
new file mode 100644
index 0000000..c568629
--- /dev/null
+++ b/scripts/build/arch/s390x.sh
@@ -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"
+}