genode/repos/gems/src/server/http_blk
Norman Feske 366bba0227 Exclude higher-level repos from strict warnings
This is a follow-up commit to "Increase default warning level", which
overrides Genode's new default warning level for targets contained in
higher-level repositories. By explicitly whitelisting all those targets,
we can selectively adjust them to the new strictness over time - by
looking out for 'CC_CXX_WARN_STRICT' in the target description files.

Issue #465
2018-01-17 12:14:36 +01:00
..
README Move repositories to 'repos/' subdirectory 2014-05-14 16:08:00 +02:00
http.cc Adjust file headers to refer to the AGPLv3 2017-02-28 12:59:29 +01:00
http.h Adjust file headers to refer to the AGPLv3 2017-02-28 12:59:29 +01:00
main.cc default ahci_drv and part_blk Block sessions to read-only 2017-08-28 16:49:51 +02:00
target.mk Exclude higher-level repos from strict warnings 2018-01-17 12:14:36 +01:00

README

This directory contains a HTTP client that implements Genode's block session
interface as a front-end. This way you can incorporate arbitrary files via.
HTTP requests and export them as a block device within Genode.


Usage
-----

Config file snippet:

!<start name="http_blk">
!  <resource name="RAM" quantum="1M" />
!  <provides><service name="Block"/></provides> <!-- Mandatory -->
!  <config uri="http://kc86.genode.labs:80/file.iso" block_size=2048/>
!</start>