diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-09-25 17:38:35 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-25 17:38:35 +0000 |
commit | fd8ab851f647f58265fbee3a5d06096d6599f1ca (patch) | |
tree | d6f47e649813ab0a3462e82de9c46b8d5707d192 /conf | |
parent | 4b6427accc44cc5f8b49935d7cd19a4b7dd4d2f8 (diff) |
distro configurations: revert unversioned distro configurations back to standard names and add a warning if they're chosen
Diffstat (limited to 'conf')
-rw-r--r-- | conf/distro/familiar.conf (renamed from conf/distro/familiar-distro.conf) | 2 | ||||
-rw-r--r-- | conf/distro/opensimpad.conf | 5 | ||||
-rw-r--r-- | conf/distro/openzaurus.conf (renamed from conf/distro/openzaurus.inc) | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/conf/distro/familiar-distro.conf b/conf/distro/familiar.conf index 497ba6a89c..32dd8f9d11 100644 --- a/conf/distro/familiar-distro.conf +++ b/conf/distro/familiar.conf @@ -6,6 +6,6 @@ INHERIT += "package_ipk debian" TARGET_OS = "linux" 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')}" diff --git a/conf/distro/opensimpad.conf b/conf/distro/opensimpad.conf index f49a97576d..f6f8c18976 100644 --- a/conf/distro/opensimpad.conf +++ b/conf/distro/opensimpad.conf @@ -5,3 +5,8 @@ INHERIT += " package_ipk debian" TARGET_OS ?= "linux" TARGET_FPU ?= "soft" + +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')}" diff --git a/conf/distro/openzaurus.inc b/conf/distro/openzaurus.conf index 9208aeda09..9020d55217 100644 --- a/conf/distro/openzaurus.inc +++ b/conf/distro/openzaurus.conf @@ -9,4 +9,6 @@ TARGET_OS = "linux" TARGET_FPU = "soft" 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')}" |