From 96f71be5a622a6677ce21d7784853441a4153659 Mon Sep 17 00:00:00 2001 From: Kees Jongenburger Date: Tue, 17 Dec 2013 14:42:06 +0100 Subject: [PATCH] arm:disable filemmap. We currently have a few of the POSIX tests failing because filemmap is enabled by default. The working assumption is that these program pass a pointer to the file server that points to a not yet loaded data segment. When the file server tries to access that data it therefore generates a pagefault and a call to itself it can not handle because it is unable to first return the current call. Change-Id: Ic1a2d9cd0a542bd950e2b08accb61cfe2855c5a3 --- releasetools/gen_uEnv.txt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releasetools/gen_uEnv.txt.sh b/releasetools/gen_uEnv.txt.sh index 6b09133f1..e2a8b79d4 100755 --- a/releasetools/gen_uEnv.txt.sh +++ b/releasetools/gen_uEnv.txt.sh @@ -76,7 +76,7 @@ fill_cmd() { echo "# Set the command to be executed" echo "uenvcmd=run $BOOT" -echo "bootargs=console=$CONSOLE rootdevname=c0d0p1 verbose=$VERBOSE hz=$HZ" +echo "bootargs=console=$CONSOLE rootdevname=c0d0p1 verbose=$VERBOSE hz=$HZ filemap=0" echo echo 'bootminix=setenv bootargs \$bootargs board_name=\$board_name ; echo \$bootargs; go 0x80200000 \\\"$bootargs\\\"' echo