Skip to content

Commit

Permalink
Fix in lighttpd.run, move timer service in config
Browse files Browse the repository at this point in the history
  • Loading branch information
Joerg Boehme committed Jul 23, 2017
1 parent 5e3e807 commit 8522e1b
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions repos/ports/run/lighttpd.run
Expand Up @@ -30,20 +30,23 @@ append config {
<service name="IO_PORT"/>
<service name="IO_MEM"/>
</parent-provides>
<default caps="100"/>
<default-route>
<any-service> <parent/> <any-child/> </any-service>
</default-route>
<start name="timer">
<resource name="RAM" quantum="1M"/>
<provides><service name="Timer"/></provides>
</start>}
</default-route>}

append_platform_drv_config

append config {

<start name="timer">
<resource name="RAM" quantum="1M"/>
<provides><service name="Timer"/></provides>
</start>

<start name="nic_drv">
<binary name="} [nic_drv_binary] {"/>
<resource name="RAM" quantum="4M"/>
<resource name="RAM" quantum="8M"/>
<provides><service name="Nic"/></provides>
</start>
<start name="lighttpd">
Expand All @@ -66,6 +69,7 @@ server.port = 80
server.document-root = "/website"
server.event-handler = "select"
server.network-backend = "write"
debug.log-request-header = "enable"
index-file.names = (
"index.xhtml", "index.html", "index.htm"
)
Expand Down Expand Up @@ -122,5 +126,6 @@ append_if [have_spec lan9118] qemu_args " -net nic,model=lan9118 "

append qemu_args " -net user -redir tcp:5555::80 "
append qemu_args " -nographic -serial mon:stdio "
append qemu_args " -m 3G "

run_genode_until forever

0 comments on commit 8522e1b

Please sign in to comment.