mirror of
https://github.com/genodelabs/genode.git
synced 2025-03-12 23:44:47 +00:00
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
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>