conf/machine/h3900.conf:
authorHolger Freyther <zecke@selfish.org>
Thu, 21 Jul 2005 18:29:32 +0000 (18:29 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Thu, 21 Jul 2005 18:29:32 +0000 (18:29 +0000)
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.

conf/machine/h3900.conf
conf/machine/ipaq-pxa270.conf

index a095f15..37dd0a5 100644 (file)
@@ -5,7 +5,7 @@
 KERNEL ?= "kernel24"
 #KERNEL ?= "kernel26"
 
-OVERRIDES_prepend = "${KERNEL}:"
+OVERRIDES := "${KERNEL}:${OVERRIDES}"
 
 TARGET_ARCH = "arm"
 IPKG_ARCHS = "all arm ipaqpxa h3900"
index c860ea4..9470fe0 100644 (file)
@@ -5,7 +5,7 @@
 KERNEL ?= "kernel24"
 #KERNEL ?= "kernel26"
 
-OVERRIDES_prepend = "${KERNEL}:"
+OVERRIDES := "${KERNEL}:${OVERRIDES}"
 
 TARGET_ARCH = "arm"
 IPKG_ARCHS = "all arm ipaqpxa h3900"