summaryrefslogtreecommitdiffstats
path: root/meta/conf/distro/include/angstrom.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/conf/distro/include/angstrom.inc')
-rw-r--r--meta/conf/distro/include/angstrom.inc48
1 files changed, 48 insertions, 0 deletions
diff --git a/meta/conf/distro/include/angstrom.inc b/meta/conf/distro/include/angstrom.inc
new file mode 100644
index 0000000000..7e765bd925
--- /dev/null
+++ b/meta/conf/distro/include/angstrom.inc
@@ -0,0 +1,48 @@
1#@TYPE: Distribution
2#@NAME: Angstrom
3#@DESCRIPTION: Distribution configuration for Angstrom
4
5DISTRO = "angstrom"
6DISTRO_NAME = "Angstrom"
7
8#Use this variable in feeds and other parts that need a URI
9ANGSTROM_URI = "http://www.angstrom-distribution.org"
10
11#Set the default maintainer to angstrom-dev
12MAINTAINER = "Angstrom Developers <angstrom-dev@linuxtogo.org>"
13
14#use ipkg package format with debian style naming
15#use multimachine buildrules
16INHERIT += "package_ipk debian multimachine"
17
18#Generate locales on the buildsystem instead of on the target. Speeds up first boot, set to "1" to enable
19PREFERRED_PROVIDER_qemu-native = "qemu-native"
20ENABLE_BINARY_LOCALE_GENERATION ?= "1"
21
22
23#Use the ARM EABI when building for an ARM cpu. We can't use overrides
24#here because this breaks all places where ":=" is used.
25#if you want to build using uclibc, specify "-uclibcgnueabi"
26TARGET_VENDOR = "-angstrom"
27TARGET_OS = "linux${@['','-gnueabi'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}"
28#uclibc (needs gcc 4.1.1 or newer)
29#TARGET_OS = "linux${@['','-uclibcgnueabi'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}"
30
31#mess with compiler flags to use -Os instead of -O2
32#Please see http://free-electrons.com/doc/embedded_linux_optimizations/img47.html for some more info
33FULL_OPTIMIZATION = "-fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os"
34BUILD_OPTIMIZATION = "-Os"
35CXXFLAGS += "-fvisibility-inlines-hidden"
36
37#ARM EABI is softfloat by default, but let's make sure :)
38TARGET_FPU_arm = "soft"
39
40#Always ship these packages
41BOOTSTRAP_EXTRA_RDEPENDS += "angstrom-version coreutils dropbear sysvinit"
42
43#Name the generated images in a sane way
44IMAGE_NAME = "${DISTRO_NAME}-${IMAGE_BASENAME}-${DISTRO_VERSION}-${MACHINE}"
45DEPLOY_DIR_IMAGE = ${DEPLOY_DIR}/images/${MACHINE}
46
47# Angstrom *always* has some form of release config, so error out if someone thinks he knows better
48DISTRO_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')}"