summaryrefslogtreecommitdiffstats
path: root/meta-oe/conf
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-05-25 16:05:04 +0200
committerKoen Kooi <koen@dominion.thruhere.net>2011-05-25 16:05:04 +0200
commitcdf65eb0520f1734baaf8cbbfad7e47fe03f0987 (patch)
tree10a2241d5b6a43fcbdfaec7dcae3410eb1b39b1d /meta-oe/conf
parent50cd038ec0ad2b57f969f1647339ec01448720c2 (diff)
downloadmeta-openembedded-cdf65eb0520f1734baaf8cbbfad7e47fe03f0987.tar.gz
machine includes: remove from layer
These should either be in oe-core or a BSP layer, but not in meta-oe Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/conf')
-rw-r--r--meta-oe/conf/machine/include/davinci.inc25
-rw-r--r--meta-oe/conf/machine/include/omap3.inc15
-rw-r--r--meta-oe/conf/machine/include/omapl138.inc1
-rw-r--r--meta-oe/conf/machine/include/tune-arm926ejs.inc7
-rw-r--r--meta-oe/conf/machine/include/tune-cortexa8.inc17
5 files changed, 0 insertions, 65 deletions
diff --git a/meta-oe/conf/machine/include/davinci.inc b/meta-oe/conf/machine/include/davinci.inc
deleted file mode 100644
index 3e48097eb..000000000
--- a/meta-oe/conf/machine/include/davinci.inc
+++ /dev/null
@@ -1,25 +0,0 @@
1require conf/machine/include/tune-arm926ejs.inc
2
3# Increase this everytime you change something in the kernel
4MACHINE_KERNEL_PR = "r50"
5
6TARGET_ARCH = "arm"
7
8KERNEL_IMAGETYPE = "uImage"
9
10PREFERRED_PROVIDER_virtual/kernel = "linux-davinci"
11
12PREFERRED_PROVIDER_virtual/bootloader = "u-boot"
13UBOOT_MACHINE = "davinci_dvevm_config"
14
15UBOOT_ENTRYPOINT = "0x80008000"
16UBOOT_LOADADDRESS = "0x80008000"
17
18EXTRA_IMAGEDEPENDS += "u-boot"
19
20SERIAL_CONSOLE ?= "115200 ttyS0"
21EXTRA_IMAGECMD_jffs2 = "--pad --little-endian --eraseblock=0x20000 -n"
22
23#ROOT_FLASH_SIZE = "29"
24
25MACHINE_FEATURES = "kernel26 serial ethernet usbhost usbgadget mmc alsa"
diff --git a/meta-oe/conf/machine/include/omap3.inc b/meta-oe/conf/machine/include/omap3.inc
deleted file mode 100644
index 15e34c650..000000000
--- a/meta-oe/conf/machine/include/omap3.inc
+++ /dev/null
@@ -1,15 +0,0 @@
1SOC_FAMILY = "omap3"
2TARGET_ARCH = "arm"
3
4require conf/machine/include/tune-cortexa8.inc
5PREFERRED_PROVIDER_virtual/kernel = "linux-omap"
6# Increase this everytime you change something in the kernel
7MACHINE_KERNEL_PR = "r99"
8
9KERNEL_IMAGETYPE = "uImage"
10
11UBOOT_ENTRYPOINT = "0x80008000"
12UBOOT_LOADADDRESS = "0x80008000"
13
14EXTRA_IMAGEDEPENDS += "u-boot x-load"
15
diff --git a/meta-oe/conf/machine/include/omapl138.inc b/meta-oe/conf/machine/include/omapl138.inc
deleted file mode 100644
index 4c222753d..000000000
--- a/meta-oe/conf/machine/include/omapl138.inc
+++ /dev/null
@@ -1 +0,0 @@
1SOC_FAMILY = "omapl138"
diff --git a/meta-oe/conf/machine/include/tune-arm926ejs.inc b/meta-oe/conf/machine/include/tune-arm926ejs.inc
deleted file mode 100644
index f41e46099..000000000
--- a/meta-oe/conf/machine/include/tune-arm926ejs.inc
+++ /dev/null
@@ -1,7 +0,0 @@
1FEED_ARCH = "armv5te"
2PACKAGE_EXTRA_ARCHS += "armv4 armv4t armv5te"
3# For gcc 3.x you need:
4#TARGET_CC_ARCH = "-march=armv5te -mtune=arm926ejs"
5# For gcc 4.x you need:
6TARGET_CC_ARCH = "-march=armv5te -mtune=arm926ej-s"
7BASE_PACKAGE_ARCH = "armv5te"
diff --git a/meta-oe/conf/machine/include/tune-cortexa8.inc b/meta-oe/conf/machine/include/tune-cortexa8.inc
deleted file mode 100644
index 2ac0ebfe4..000000000
--- a/meta-oe/conf/machine/include/tune-cortexa8.inc
+++ /dev/null
@@ -1,17 +0,0 @@
1# Instead of using -mfpu=vfp[2] we can use -mfpu=neon to make use of gcc intrinsics[1] and vectorize loops with -ftree-vectorize[3]
2# [1] http://gcc.gnu.org/onlinedocs/gcc/ARM-NEON-Intrinsics.html
3# [2] http://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html
4# [3] https://support.codesourcery.com/GNUToolchain/kbentry29
5
6# Can be 'softfp' or 'hardfp'
7ARM_FP_MODE ?= "softfp"
8
9ARM_FP_OPT = "${@['-mfloat-abi=softfp', '-mfloat-abi=hard'][bb.data.getVar('ARM_FP_MODE', d, 1) == 'hardfp']}"
10ARM_FP_PACKAGESUFFIX = "${@['', '-hardfp'][bb.data.getVar('ARM_FP_MODE', d, 1) == 'hardfp']}"
11
12TARGET_CC_ARCH = "-march=armv7-a -mtune=cortex-a8 -mfpu=neon ${ARM_FP_OPT}"
13
14FEED_ARCH = "armv7a${ARM_FP_PACKAGESUFFIX}"
15BASE_PACKAGE_ARCH = "armv7a${ARM_FP_PACKAGESUFFIX}"
16
17PACKAGE_EXTRA_ARCHS += "armv4 armv4t armv5te armv6 armv7 armv7a${ARM_FP_PACKAGESUFFIX}"