summaryrefslogtreecommitdiff
path: root/meta/conf/distro/angstrom.conf
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-08-27 16:13:31 +0000
committerRichard Purdie <richard@openedhand.com>2006-08-27 16:13:31 +0000
commit72906f5da46e7f53070fba999457b9affb76e696 (patch)
treea8f3a6f376c94ce9763e1afd9c222c81d8cbcfe1 /meta/conf/distro/angstrom.conf
parent93a8d0662ed361c76defe75a5cd84f203fdb1af1 (diff)
downloadopenembedded-core-72906f5da46e7f53070fba999457b9affb76e696.tar.gz
openembedded-core-72906f5da46e7f53070fba999457b9affb76e696.tar.bz2
openembedded-core-72906f5da46e7f53070fba999457b9affb76e696.tar.xz
openembedded-core-72906f5da46e7f53070fba999457b9affb76e696.zip
conf/distro: Sync with OE
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@652 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/conf/distro/angstrom.conf')
-rw-r--r--meta/conf/distro/angstrom.conf45
1 files changed, 0 insertions, 45 deletions
diff --git a/meta/conf/distro/angstrom.conf b/meta/conf/distro/angstrom.conf
deleted file mode 100644
index 100017410..000000000
--- a/meta/conf/distro/angstrom.conf
+++ /dev/null
@@ -1,45 +0,0 @@
-#@TYPE: Distribution
-#@NAME: Angstrom
-#@DESCRIPTION: Distribution configuration for Angstrom
-
-DISTRO = "angstrom"
-DISTRO_NAME = "Angstrom"
-
-#Use this variable in feeds and other parts that need a URI
-ANGSTROM_URI = "http://www.angstrom-distribution.org/"
-
-#Set the default maintainer to angstrom-dev
-MAINTAINER = "Angstrom Developers <angstrom-dev@handhelds.org>"
-
-#use ipkg package format with debian style naming
-#use multimachine buildrules
-INHERIT += "package_ipk debian multimachine"
-
-#Generate locales on the buildsystem instead of on the target. Speeds up first boot, set to "1" to enable
-PREFERRED_PROVIDER_qemu-native = "qemu-qop-nogfx-native"
-ENABLE_BINARY_LOCALE_GENERATION ?= ""
-
-
-#Use the ARM EABI when building for an ARM cpu. We can't use overrides
-#here because this breaks all places where ":=" is used.
-TARGET_VENDOR = "${@['','-angstrom'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}"
-TARGET_OS = "linux${@['','-gnueabi'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}"
-
-#mess with compiler flags to use -Os instead of -O2
-#Please see http://free-electrons.com/doc/embedded_linux_optimizations/img47.html for some more info
-FULL_OPTIMIZATION = "-fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os"
-BUILD_OPTIMIZATION = "-Os"
-
-#ARM EABI is softfloat by default, but let's make sure :)
-TARGET_FPU_arm = "soft"
-
-#Always ship these packages
-BOOTSTRAP_EXTRA_DEPENDS += "angstrom-version coreutils dropbear sysvinit"
-BOOTSTRAP_EXTRA_RDEPENDS += "angstrom-version coreutils dropbear sysvinit"
-
-#Name the generated images in a sane way
-IMAGE_NAME = "${DISTRO_NAME}-${IMAGE_BASENAME}-${DISTRO_VERSION}-${MACHINE}"
-DEPLOY_DIR_IMAGE = ${DEPLOY_DIR}/images/${MACHINE}
-
-# Angstrom *always* has some form of release config, so error out if someone thinks he knows better
-DISTRO_CHECK := "${@bb.data.getVar("DISTRO_VERSION",d,1) or bb.fatal('Remove this line or set a dummy DISTRO_VERSION if you really want to build an unversioned distro')}"