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 /conf/machine/ipaq-pxa270.conf | |
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.
Diffstat (limited to 'conf/machine/ipaq-pxa270.conf')
-rw-r--r-- | conf/machine/ipaq-pxa270.conf | 2 |
1 files changed, 1 insertions, 1 deletions
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" |