diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2006-08-27 21:29:41 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2006-08-27 21:29:41 +0000 |
commit | 08793d9b0ed1ea32c5548152e23c252fa3f1aecd (patch) | |
tree | 7254ade63e73485b2878b4a8b9c24cb3eb47bd09 | |
parent | e75954d06cc21565451c14de8f3d3c31d7d0293a (diff) |
Add DISTRO_FEATURES to angstrom, familar and openzaurus. At this moment this maintains status quo but distro maintainers are free to adjust it to their needs
-rw-r--r-- | conf/distro/include/angstrom.inc | 3 | ||||
-rw-r--r-- | conf/distro/include/familiar.inc | 3 | ||||
-rw-r--r-- | conf/distro/include/openzaurus.inc | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/conf/distro/include/angstrom.inc b/conf/distro/include/angstrom.inc index 7e765bd925..5ff9e1c942 100644 --- a/conf/distro/include/angstrom.inc +++ b/conf/distro/include/angstrom.inc @@ -46,3 +46,6 @@ 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')}" + +# We want images supporting the following features (for task-base) +DISTO_FEATURES = "nfs smbfs ipsec wifi ppp alsa bluetooth ext2 irda pcmcia usbgadget usbhost" diff --git a/conf/distro/include/familiar.inc b/conf/distro/include/familiar.inc index 2646fe78a6..c7f2a05177 100644 --- a/conf/distro/include/familiar.inc +++ b/conf/distro/include/familiar.inc @@ -15,3 +15,6 @@ PARALLEL_INSTALL_MODULES = "1" UDEV_DEVFS_RULES = "1" 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')}" + +# We want images supporting the following features (for task-base) +DISTO_FEATURES = "nfs smbfs ipsec wifi ppp alsa bluetooth ext2 irda pcmcia usbgadget usbhost" diff --git a/conf/distro/include/openzaurus.inc b/conf/distro/include/openzaurus.inc index 264cceecfd..01877956ed 100644 --- a/conf/distro/include/openzaurus.inc +++ b/conf/distro/include/openzaurus.inc @@ -20,3 +20,6 @@ DISTRO_CHECK := "${@bb.data.getVar("DISTRO_VERSION",d,1) or bb.fatal('Remove thi # Set minimal version of BitBake needed BB_MIN_VERSION = "1.4.4" INHERIT += "sanity" + +# We want images supporting the following features (for task-base) +DISTO_FEATURES = "nfs smbfs ipsec wifi ppp alsa bluetooth ext2 irda pcmcia usbgadget usbhost" |