summaryrefslogtreecommitdiff
path: root/functions.sh
diff options
context:
space:
mode:
authorKoen Kooi <koen.kooi@linaro.org>2014-01-09 09:04:31 +0100
committerKoen Kooi <koen.kooi@linaro.org>2014-01-09 09:11:32 +0100
commit39654b0de9863b436d83f1a4838fad2f5b693c9e (patch)
tree5cf4c277b039c21404d17362b4b2e2eef8e9cd1b /functions.sh
parent0c974a41692a6f5e07c43ada88004a1674ada287 (diff)
function.sh: disable SDL support in qemu-native
It introduces buildfailures and the autobuilders a) are headless b) don't use qemu helper scripts Change-Id: If131c7a5afefeb186895e6d36f672416d2555c23 Signed-off-by: Koen Kooi <koen.kooi@linaro.org>
Diffstat (limited to 'functions.sh')
-rwxr-xr-xfunctions.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/functions.sh b/functions.sh
index 5a5efe4..e0bd454 100755
--- a/functions.sh
+++ b/functions.sh
@@ -205,8 +205,11 @@ conf_jenkins()
conf_localconf()
{
# get rid of MACHINE setting from local.conf
+ # also disable SDL support in qemu-native
- sed -i -e "s/^MACHINE.*//g" conf/local.conf
+ sed -i -e "s/^MACHINE.*//g" \
+ -e "/PACKAGECONFIG_pn-qemu-native/d" \
+ conf/local.conf
}
cleanup_soft()