From 0dd5ac8eefd3a69fb30fcc202047f1753a480c48 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Sun, 19 Mar 2006 18:16:14 +0000 Subject: angstrom-2006.9: specify extra machine specific installs * See? It can be done without polluting conf/machine/ --- conf/distro/angstrom-2006.9.conf | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'conf') diff --git a/conf/distro/angstrom-2006.9.conf b/conf/distro/angstrom-2006.9.conf index 9c9f751bff..2771df6e61 100644 --- a/conf/distro/angstrom-2006.9.conf +++ b/conf/distro/angstrom-2006.9.conf @@ -63,3 +63,21 @@ PREFERRED_VERSION_orinoco-modules_h3600 = "0.13e" PREFERRED_VERSION_orinoco-modules_h3900 = "0.13e" PREFERRED_VERSION_dbus = "0.61" + +#Down here we put stuff we want to install into machines without polluting conf/machine/ with distro stuff + +#### GPE section ### + +#Install libgtkinput in devices without a keyboard +GPE_EXTRA_INSTALL_append_ipaq-pxa270 = "libgtkinput" +GPE_EXTRA_INSTALL_append_h2200 = "libgtkinput" +GPE_EXTRA_INSTALL_append_simpad = "libgtkinput" +GPE_EXTRA_INSTALL_append_nokia770 = "libgtkinput" +#As soon as a kill switch is in place we can add it to devices with a keyboard +#GPE_EXTRA_INSTALL_append_c7x0 = "libgtkinput" +#GPE_EXTRA_INSTALL_append_tosa = "libgtkinput" +#GPE_EXTRA_INSTALL_append_akita = "libgtkinput" +#GPE_EXTRA_INSTALL_append_spitz = "libgtkinput" +#GPE_EXTRA_INSTALL_append_borzoi = "libgtkinput" + + -- cgit v1.2.3 From 0e411760a86e6bf483cc75af5d0962d5770422a4 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Sun, 19 Mar 2006 18:21:55 +0000 Subject: angstrom-2006.9: _append needs a leading space --- conf/distro/angstrom-2006.9.conf | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'conf') diff --git a/conf/distro/angstrom-2006.9.conf b/conf/distro/angstrom-2006.9.conf index 2771df6e61..b0147aad55 100644 --- a/conf/distro/angstrom-2006.9.conf +++ b/conf/distro/angstrom-2006.9.conf @@ -69,15 +69,15 @@ PREFERRED_VERSION_dbus = "0.61" #### GPE section ### #Install libgtkinput in devices without a keyboard -GPE_EXTRA_INSTALL_append_ipaq-pxa270 = "libgtkinput" -GPE_EXTRA_INSTALL_append_h2200 = "libgtkinput" -GPE_EXTRA_INSTALL_append_simpad = "libgtkinput" -GPE_EXTRA_INSTALL_append_nokia770 = "libgtkinput" +GPE_EXTRA_INSTALL_append_ipaq-pxa270 = " libgtkinput" +GPE_EXTRA_INSTALL_append_h2200 = " libgtkinput" +GPE_EXTRA_INSTALL_append_simpad = " libgtkinput" +GPE_EXTRA_INSTALL_append_nokia770 = " libgtkinput" #As soon as a kill switch is in place we can add it to devices with a keyboard -#GPE_EXTRA_INSTALL_append_c7x0 = "libgtkinput" -#GPE_EXTRA_INSTALL_append_tosa = "libgtkinput" -#GPE_EXTRA_INSTALL_append_akita = "libgtkinput" -#GPE_EXTRA_INSTALL_append_spitz = "libgtkinput" -#GPE_EXTRA_INSTALL_append_borzoi = "libgtkinput" +#GPE_EXTRA_INSTALL_append_c7x0 = " libgtkinput" +#GPE_EXTRA_INSTALL_append_tosa = " libgtkinput" +#GPE_EXTRA_INSTALL_append_akita = " libgtkinput" +#GPE_EXTRA_INSTALL_append_spitz = " libgtkinput" +#GPE_EXTRA_INSTALL_append_borzoi = " libgtkinput" -- cgit v1.2.3 From 63e9b71a88c9cebec1bff318c7854d64bc7d41d4 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 19 Mar 2006 18:34:37 +0000 Subject: Add sanity.conf/sanity.bbclass. This checks for common user misconfigurations and gives helpful information about fixing them. The checks can be expanded over time. It can be disabled by following the slightly cryptic instructions in sanity.conf. --- conf/bitbake.conf | 1 + conf/sanity.conf | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 conf/sanity.conf (limited to 'conf') diff --git a/conf/bitbake.conf b/conf/bitbake.conf index a2ba5e6382..cd435a9cad 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -394,3 +394,4 @@ include conf/target/${TARGET_SYS}.conf include conf/machine/${MACHINE}.conf include conf/distro/${DISTRO}.conf include conf/documentation.conf +require conf/sanity.conf diff --git a/conf/sanity.conf b/conf/sanity.conf new file mode 100644 index 0000000000..df2ec3e82a --- /dev/null +++ b/conf/sanity.conf @@ -0,0 +1,8 @@ +# Sanity checks for common user misconfigurations +# +# See sanity.bbclass +# +# Expert users can confirm their sanity with "touch conf/sanity.conf" + +INHERIT += "sanity" + -- cgit v1.2.3