From: Holger Freyther Date: Thu, 21 Jul 2005 18:29:32 +0000 (+0000) Subject: conf/machine/h3900.conf: X-Git-Tag: Release-2010-05/1~9453^2~4097^2^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04cc8baaa88236f7c642f6ab2f0e9ee39e255b28;p=openembedded.git conf/machine/h3900.conf: conf/machine/ipaq-pxa270.conf: On irc it was discussed if OVERRIDES_prepend is a legal statement and if OERRIDES should be applied here too. With runtime performance in mind (bb.data.update_data being called until no change happens) we have declared the above statement as illegal. Change O_prepend to use direct assignment to prepend kernel to the overrides string. --- diff --git a/conf/machine/h3900.conf b/conf/machine/h3900.conf index a095f15cdf..37dd0a52f2 100644 --- a/conf/machine/h3900.conf +++ b/conf/machine/h3900.conf @@ -5,7 +5,7 @@ KERNEL ?= "kernel24" #KERNEL ?= "kernel26" -OVERRIDES_prepend = "${KERNEL}:" +OVERRIDES := "${KERNEL}:${OVERRIDES}" TARGET_ARCH = "arm" IPKG_ARCHS = "all arm ipaqpxa h3900" diff --git a/conf/machine/ipaq-pxa270.conf b/conf/machine/ipaq-pxa270.conf index c860ea414d..9470fe009c 100644 --- a/conf/machine/ipaq-pxa270.conf +++ b/conf/machine/ipaq-pxa270.conf @@ -5,7 +5,7 @@ KERNEL ?= "kernel24" #KERNEL ?= "kernel26" -OVERRIDES_prepend = "${KERNEL}:" +OVERRIDES := "${KERNEL}:${OVERRIDES}" TARGET_ARCH = "arm" IPKG_ARCHS = "all arm ipaqpxa h3900"