diff options
Diffstat (limited to 'conf/distro/minimal.conf')
-rw-r--r-- | conf/distro/minimal.conf | 18 |
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}" ############################################################################# |