aboutsummaryrefslogtreecommitdiffstats
path: root/conf/distro
diff options
context:
space:
mode:
authorMarco Cavallini <koansoftware@gmail.com>2009-05-12 09:43:56 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2009-05-13 16:53:14 +0200
commitbd4137e5a05ce54ef12123467a61c81ec91dd226 (patch)
tree7733eea2be36c8e20eb987d1e48543eb33e094ea /conf/distro
parent6ecb6e3f1551deade11020abdf404d4dc6893495 (diff)
downloadopenembedded-bd4137e5a05ce54ef12123467a61c81ec91dd226.tar.gz
Modified conf/distro/kaeilos.conf
* added IPKG_VARIANT so postinst script can run * added Prefer bluez4 Signed-off-by: Marco Cavallini <m.cavallini@koansoftware.com> Acked-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
Diffstat (limited to 'conf/distro')
-rw-r--r--conf/distro/kaeilos.conf14
1 files changed, 13 insertions, 1 deletions
diff --git a/conf/distro/kaeilos.conf b/conf/distro/kaeilos.conf
index a65bbff2c8..36cdc0f739 100644
--- a/conf/distro/kaeilos.conf
+++ b/conf/distro/kaeilos.conf
@@ -7,7 +7,7 @@
#DISTRO_VERSION = "2008.1"
DISTRO_VERSION = "2008.1-test-${DATE}"
-DISTRO_REVISION = "1"
+DISTRO_REVISION = "2"
DISTRO_PR = ".1"
#build staging from packages
@@ -162,8 +162,20 @@ PREFERRED_PROVIDER_task-bootstrap = "task-bootstrap"
require conf/distro/include/kaeilos.inc
+# If we're using an .ipk based rootfs, we want to have opkg-nogpg installed so postinst script can run
+# We also take this opportunity to inject angstrom-version and the feed configs into the rootfs
+IPKG_VARIANT = "opkg-nogpg angstrom-version ${ANGSTROM_FEED_CONFIGS}"
+
# do some task-base stuff here
+# Prefer bluez4, it's needed for things like connman. Bluez4 is also largely backward compatible with
+# bluez 3.x
+DISTRO_BLUETOOTH_MANAGER = "\
+ blueprobe \
+ bluez4 \
+ "
+
+
# We want to ship extra debug utils in the rootfs when doing a debug build
DEBUG_APPS ?= ""
DEBUG_APPS += '${@base_conditional("DISTRO_TYPE", "release", "", "strace procps",d)}'