aboutsummaryrefslogtreecommitdiffstats
path: root/conf/distro/minimal.conf
diff options
context:
space:
mode:
authorMichael 'Mickey' Lauer <mickey@vanille-media.de>2009-03-02 19:28:55 +0100
committerMichael 'Mickey' Lauer <mickey@vanille-media.de>2009-03-02 19:28:55 +0100
commitbf2fe8b5bd6092ed73a02692f6537ab0ef3d5e8e (patch)
tree422d654ed12579143fe688da7b8815dbbe6a198b /conf/distro/minimal.conf
parentbe3462b5028cd6ad2734ecb2dc82f409b3468f89 (diff)
downloadopenembedded-bf2fe8b5bd6092ed73a02692f6537ab0ef3d5e8e.tar.gz
minimal.conf: don't build ext2fs; remove irda; use packaged staging
Diffstat (limited to 'conf/distro/minimal.conf')
-rw-r--r--conf/distro/minimal.conf18
1 files changed, 14 insertions, 4 deletions
diff --git a/conf/distro/minimal.conf b/conf/distro/minimal.conf
index 65378b8c3d..47da6e6ad7 100644
--- a/conf/distro/minimal.conf
+++ b/conf/distro/minimal.conf
@@ -8,7 +8,7 @@
#############################################################################
#############################################################################
-# NAME AND VERSION
+# NAME and VERSION
#############################################################################
DISTRO_NAME = "minimal"
DISTRO_VERSION = ".dev-snapshot-${SRCDATE}"
@@ -18,8 +18,13 @@ DISTRO_TYPE = "debug"
# Ensure 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")
+#############################################################################
+# FEATURE SELECTION
+#############################################################################
+# Use bluetooth 4.0
+DISTRO_BLUETOOTH_MANAGER = "bluez4"
# We want images supporting the following features (for task-base)
-DISTRO_FEATURES = "nfs smbfs wifi ppp alsa bluetooth ext2 vfat irda pcmcia usbgadget usbhost pci"
+DISTRO_FEATURES = "nfs smbfs wifi ppp alsa bluetooth ext2 vfat pcmcia usbgadget usbhost pci"
#############################################################################
# LIBRARY NAMES
@@ -27,16 +32,21 @@ DISTRO_FEATURES = "nfs smbfs wifi ppp alsa bluetooth ext2 vfat irda pcmcia usbga
INHERIT += "debian"
#############################################################################
+# STAGING AREA
+#############################################################################
+INHERIT += "packaged-staging"
+
+#############################################################################
# PACKAGING
#############################################################################
INHERIT += "package_ipk"
-IMAGE_FSTYPES ?= "tar.gz ext2.gz jffs2"
+IMAGE_FSTYPES = "tar.gz jffs2"
#############################################################################
# IMAGES
#############################################################################
# Name the generated images in a sane way
-IMAGE_NAME = "${DISTRO_NAME}-${IMAGE_BASENAME}-${PREFERRED_LIBC}-${ANGSTROM_PKG_FORMAT}-${DISTRO_VERSION}-${MACHINE}"
+IMAGE_NAME = "${DISTRO_NAME}-${IMAGE_BASENAME}-${PREFERRED_LIBC}-${PREFERRED_PKG_FORMAT}-${DISTRO_VERSION}-${MACHINE}"
DEPLOY_DIR_IMAGE = "${DEPLOY_DIR}/images/${MACHINE}"
#############################################################################