From 04cc8baaa88236f7c642f6ab2f0e9ee39e255b28 Mon Sep 17 00:00:00 2001 From: Holger Freyther Date: Thu, 21 Jul 2005 18:29:32 +0000 Subject: 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. --- conf/machine/h3900.conf | 2 +- conf/machine/ipaq-pxa270.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'conf') 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" -- cgit 1.2.3-korg