summaryrefslogtreecommitdiff
path: root/scripts/build/arch
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build/arch')
-rw-r--r--scripts/build/arch/s390.sh7
-rw-r--r--scripts/build/arch/s390x.sh4
2 files changed, 3 insertions, 8 deletions
diff --git a/scripts/build/arch/s390.sh b/scripts/build/arch/s390.sh
index b22e9bb..4ffcf25 100644
--- a/scripts/build/arch/s390.sh
+++ b/scripts/build/arch/s390.sh
@@ -1,9 +1,6 @@
# 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
+ # Defaults are all OK for s390
+ :
}
diff --git a/scripts/build/arch/s390x.sh b/scripts/build/arch/s390x.sh
index c568629..ef052d6 100644
--- a/scripts/build/arch/s390x.sh
+++ b/scripts/build/arch/s390x.sh
@@ -1,8 +1,6 @@
# 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"
+ # The kernel architecture is the same name as for the 32-bit version:
CT_KERNEL_ARCH="s390"
}