summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-09-14 21:50:30 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-09-14 21:50:30 (GMT)
commit9501e62afa556c97c4cdc3228b6812f22b183f6a (patch)
treef9e6db0c99a7a129f26c36f140a97c0822f3c80d /arch
parent693ceb85bcc37910abac51a541c0f715f6cca82e (diff)
Further expand the architecture-specific function: add CT_KERNEL_ARCH building.
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/functions2
-rw-r--r--arch/ia64/functions4
-rw-r--r--arch/mips/functions4
-rw-r--r--arch/x86/functions5
-rw-r--r--arch/x86_64/functions4
5 files changed, 2 insertions, 17 deletions
diff --git a/arch/arm/functions b/arch/arm/functions
index b59be4f..464de42 100644
--- a/arch/arm/functions
+++ b/arch/arm/functions
@@ -11,6 +11,4 @@ CT_DoArchValues() {
uClibc,) CT_TARGET_SYS=uclibc;;
uClibc,y) CT_TARGET_SYS=uclibcgnueabi;;
esac
-
- # The endianness option default value is OK
}
diff --git a/arch/ia64/functions b/arch/ia64/functions
index 45a3d5b..76f34dd 100644
--- a/arch/ia64/functions
+++ b/arch/ia64/functions
@@ -3,8 +3,4 @@
CT_DoArchValues() {
# The architecture part of the tuple:
CT_TARGET_ARCH="${CT_ARCH}"
-
- # The system part of the tuple default value is OK.
-
- # The endianness option default value is OK.
}
diff --git a/arch/mips/functions b/arch/mips/functions
index e8bf09f..91a1d9a 100644
--- a/arch/mips/functions
+++ b/arch/mips/functions
@@ -3,8 +3,4 @@
CT_DoArchValues() {
# The architecture part of the tuple:
CT_TARGET_ARCH="${CT_ARCH}${target_endian_el}"
-
- # The system part of the tuple default value is OK.
-
- # The endianness option default value is OK.
}
diff --git a/arch/x86/functions b/arch/x86/functions
index 039c079..ae67692 100644
--- a/arch/x86/functions
+++ b/arch/x86/functions
@@ -17,7 +17,6 @@ CT_DoArchValues() {
*) CT_TARGET_ARCH=i586;;
esac
- # The system part of the tuple default value is OK.
-
- # The endianness option default value is OK.
+ # The kernel ARCH:
+ CT_KERNEL_ARCH=i386
}
diff --git a/arch/x86_64/functions b/arch/x86_64/functions
index 68610d8..2626abf 100644
--- a/arch/x86_64/functions
+++ b/arch/x86_64/functions
@@ -3,8 +3,4 @@
CT_DoArchValues() {
# The architecture part of the tuple:
CT_TARGET_ARCH="${CT_ARCH}"
-
- # The system part of the tuple default value is OK.
-
- # The endianness option default value is OK.
}