arora.run: use VFS server for socket file system

Using the lxip VFS plugin locally can cause a deadlock in the browser
(see issue #2635).

Fixes #2977
This commit is contained in:
Christian Prochaska 2018-09-11 18:13:39 +02:00 committed by Christian Helmuth
parent 2300feaf9d
commit 1d1942f48a

View File

@ -96,6 +96,18 @@ append config {
</route> </route>
</start> </start>
<start name="vfs" caps="250">
<resource name="RAM" quantum="32M"/>
<provides> <service name="File_system"/> </provides>
<config>
<vfs>
<dir name="socket"> <lxip dhcp="yes"/> </dir>
</vfs>
<default-policy writeable="yes" root="/"/>
</config>
</start>
<start name="arora" caps="2000"> <start name="arora" caps="2000">
<resource name="RAM" quantum="2G"/> <resource name="RAM" quantum="2G"/>
<config clipboard="yes"> <config clipboard="yes">
@ -105,7 +117,7 @@ append config {
<jitterentropy name="random"/> <jitterentropy name="random"/>
<inline name="rtc">2018-01-01 00:01</inline> <inline name="rtc">2018-01-01 00:01</inline>
</dir> </dir>
<dir name="socket"> <lxip dhcp="yes"/> </dir> <fs/>
<tar name="qt5_dejavusans.tar"/> <tar name="qt5_dejavusans.tar"/>
</vfs> </vfs>
<libc stdout="/dev/log" stderr="/dev/log" rtc="/dev/rtc" socket="/socket"/> <libc stdout="/dev/log" stderr="/dev/log" rtc="/dev/rtc" socket="/socket"/>