diff options
author | Holger Freyther <zecke@selfish.org> | 2005-07-21 18:29:32 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-21 18:29:32 +0000 |
commit | 04cc8baaa88236f7c642f6ab2f0e9ee39e255b28 (patch) | |
tree | f60c8b7501977777c15811ef60619a654f3b4408 | |
parent | e40c5b40e67325fd054d160367f0d52c4bfc91b9 (diff) |
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.
-rw-r--r-- | conf/machine/h3900.conf | 2 | ||||
-rw-r--r-- | conf/machine/ipaq-pxa270.conf | 2 |
2 files changed, 2 insertions, 2 deletions
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" |