From df6872cd0ec02f485a79f832327d164d6f69e9b5 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Wed, 23 Sep 2015 11:16:49 -0400 Subject: [PATCH] Mount httpfs to /http with custom flags, as caching the whole pk3 file won't work (hangs, don't know why). --- sys_sdl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys_sdl.c b/sys_sdl.c index 9d261de4..2ba791b6 100644 --- a/sys_sdl.c +++ b/sys_sdl.c @@ -208,6 +208,7 @@ static void NaCl_Init(void) mount("", "/dev", "dev", 0, ""); mount("", "/.config", "html5fs", 0, "type=PERSISTENT,expected_size=8388608"); mount("", "/.cache", "html5fs", 0, "type=TEMPORARY,expected_size=1073741824"); + mount("", "/http", "httpfs", 0, "cache_stat=true,cache_content=false"); int fd = open("/dev/console0", O_WRONLY, 0644); outfd = fd; } -- 2.39.2