Commit Graph

148 Commits

Author SHA1 Message Date
Stefan Kalkowski
e639510af5 run: use unambigously named components and pkgs 2019-06-03 11:37:21 +02:00
Pirmin Duss
5c353771ba Port the sgdisk utilit form the gptfdisk package 2019-05-14 10:42:45 +02:00
Johannes Schlatow
8ed98b8459 remote_rom: use UDP and implement go-back-N ARQ 2019-05-07 10:14:34 +02:00
Edgard Schmidt
c137c595c8 remote_rom: improvements and refactoring
Avoid a runtime warning message since our backend does not provide
such constructor functions yet. If a backend requires them, it should
initiate their execution by itself within the backend init functions.

In coherence with the size_guard idea, the remote_rom packets are are
separated into a simple layer packet and a data packet. While basically
only managing common control informations, the layer packet may carry
any payload. The data packet, instead, manages the transmission of the
actual ROM payload and can be attached to the layer packet. This
simplifies the management of the notification packets UPDATE and SIGNAL
since they do not contain fields like 'offset' or 'payload_size'
anymore.

Now, a single thread manages all incoming RPC calls, signals and (thus)
network packets. This will hopefully make further synchronization
enhancements a lot easier.

Further changes:
* Following data packets are identified as such by their offset instead
  of their packet type field. This simplifies the protocol.
* reduced redundancy in the packet building code
* rewrap lines with >79 columns
* fix compiler warnings
* split backend code
* Remove a few unnecessary include and using directives.
* In order to avoid global variables across modules, 'verbose' is a
  member variable now. Later, its value may be set via constructor.
* The nested Rx class is merged with Backend_base. This way, we avoid
  unnecessary maintenance as long as we don't have a clear design for
  ROM multiplexing which may require the management of multiple IP
  addresses etc.
* The HANDLER template argument is removed since client and server
  inherit from Backend_base anyway. The receive method is virtual now.
* The signals packet_avail and ready_to_ack are directly passed to the
  same signal handler now.
* Remove unnecessarily public/protected visibility from some members.
* Remove and add unnecessary and, due to inclusion order, secretly
  missing include directives, respectively.
2019-05-07 10:14:34 +02:00
Johannes Schlatow
5627797e77 log_udp: receive LOG messages via UDP 2019-05-07 10:14:34 +02:00
Johannes Schlatow
c87b2f2eb9 udp_log: send LOG as UDP packets 2019-05-07 10:14:34 +02:00
Norman Feske
7ea7cb2bd2 nitpicker_app.inc: adjust wm -> focus label
This patch adjusts the label of the wm's focus session to the explicitly
named label as introduced in the wm pkgs in Genode 19.02.
2019-03-14 12:18:07 +01:00
Alexander Senier
70c44f934b Port libsparkcrypto test cases 2019-03-05 11:16:51 +01:00
Emery Hemingway
a3444e5aff Package Grafx2 2019-02-28 16:46:49 +01:00
Emery Hemingway
1de91edfe8 Remove XML editor 2019-02-22 17:01:48 +01:00
Emery Hemingway
9fe7643285 Remove rom_fallback server 2019-02-22 17:01:48 +01:00
Norman Feske
92bc4f3a83 python3: remove uninitialized variable (build fix)
This patch also prevents the dynamic loading of the rtc_drv when
executed on Linux, which is needed because this version of the rtc_drv
is a hybrid Linux/Genode program.
2019-02-22 15:49:18 +01:00
Sebastian Sumpf
65e7ccc662 jdk: boot to Java demo
issue #136
2019-02-22 15:15:54 +01:00
Sebastian Sumpf
2f73680071 jdk: use depot for 'java.run'
Build JVM using packets.

issue #136
2019-02-22 15:15:08 +01:00
Emery Hemingway
6c27b9ad77 Fixup Tox DHT bootstrap 2019-02-21 13:29:41 +01:00
Emery Hemingway
c9124f3a80 Update julia_fractal for -Werror=suggest-override 2019-02-21 13:29:39 +01:00
Sebastian Sumpf
e675075ee3 jdk: C1 compiler for x86_64 and arm
JIT compiler version of OpenJDK 9

issue #136
2019-02-21 10:30:54 +01:00
Emery Hemingway
a6de6457d2 Convert SDL to a Nitpicker client library
Fixes #138
2019-02-20 11:25:10 +01:00
Christian Helmuth
693a1f7f8c Adapt run scripts to nic_bridge default policy 2019-02-19 11:49:04 +01:00
Alexander Senier
ff9dc178d9 Port aunit unit test library 2019-02-18 16:45:48 +01:00
Alexander Senier
e0a0d07cb3 Port libc-based "fat" Ada runtime 2019-02-18 16:42:41 +01:00
Emery Hemingway
eea19f8386 Feed RDRAND into jitter_sponge 2019-02-12 10:23:08 +01:00
Emery Hemingway
6628d03126 Port of OCaml bytecode runtime
A minimal runtime for executing portable OCaml bytecode.
A bytecode standard library is not yet provided.
2019-01-21 14:24:28 +01:00
Norman Feske
ffc8c453e2 Adaptation to changed timer location
Related to genodelabs/genode#3101
2019-01-14 12:36:10 +01:00
Emery Hemingway
c042419226 Port of the c-toxcore Tox library
Port of the C reference implementation of the Tox chat protocol.
Includes a native DHT bootstrap node, see run/tox_dht_bootstrap.

https://tox.chat/
2019-01-10 16:44:30 +01:00
Josef Söntgen
fd713e737d Add FUSE implementation and dependencies
Imported from the genode repository.

Fixes #129.

Issue genodelabs/genode#3104.
2019-01-04 14:31:29 +01:00
Norman Feske
4ab0ad26ca Add libav, avplay, and qt_avplay
Imported from the genode repository.

Issue genodelabs/genode#3103
2019-01-04 12:06:30 +01:00
Norman Feske
c3ba011794 Port of libsdl, mixer, image, net, ttf
Imported from genode repository

Issue genodelabs/genode#3100
2019-01-03 16:22:58 +01:00
Norman Feske
c698269e5c Port of Dosbox
Imported from the genode repository

Issue genodelabs/genode#3099
2019-01-03 15:34:39 +01:00
Sebastian Sumpf
c5cebdd192 jdk: OpenJDK for Genode
OpenJDK version 9 for Genode, contains the interpreter/compiler version
of the HotSpot virtual machine for x86_64 and ARM.

fixes #123
2018-11-27 14:39:49 +01:00
Josef Söntgen
6a33ecac84 lwext4_fs: add Ext2/3/4 fs server using lwext4
Fixes #124.
2018-11-27 14:36:44 +01:00
Norman Feske
44cdb1aaca Adaptation to renamed wm pkg
The 'wm' pkg is now called 'motif_wm'.

https://github.com/genodelabs/genode/issues/3024
2018-11-20 09:04:10 +01:00
Emery Hemingway
a07707f08d Entropy visualizer for Nitpicker 2018-11-12 15:09:32 +01:00
Josef Söntgen
1a29597d57 Port of umurmur 0.2.17
Fixes #118.
2018-09-29 11:10:37 +02:00
Emery Hemingway
6dbbba4603 Use new lwIP netif facility for tftp_rom
LwIP can be used without libc or its plugin libraries.

Fix #36
2018-09-03 11:47:17 +02:00
Emery Hemingway
d123c74e76 Remove fetchurl
Fetchurl has been moved to the libports repository.
2018-08-30 13:40:27 +02:00
Norman Feske
dd3a8b9e7e Adaptation to removed support for static binaries
Related to https://github.com/genodelabs/genode/issues/2866
2018-08-09 21:02:02 +02:00
Emery Hemingway
5fff9d4b5b SSH terminal client
A client of the Terminal service that connects to a shell on a remote
SSH server.

It is configured with a "host" file found in its root directory with the
following format:
<host name="sdf-eu.org" port="22" user="root" pass="foo" known="yes"/>

The port, pass, and known attributes are optional. The client will first
try to authenticate with a keypair found in the root directory with a
fallback to password authentication. The client will automatically
disconnect from hosts that are not found in "/known_hosts", unless the
"known" attribute is set to the negative in the host file.
2018-08-07 17:24:13 +02:00
Emery Hemingway
2ba33d38a9 Post-quantum signing utilities
A trio of utilities for generating SPHINCS⁺-SHAKE256-192f signatures.
This is a post-quantum, hash-based signature scheme with 194-bit
security.

It is also a test for using the Nimble package manager for managing Nim
target dependencies.
2018-07-09 13:40:52 +02:00
Johannes Schlatow
a67a5de5ef python3 package for sculpt
Provides recipes for deploying python3 on sculpt.
Also adds the feature of triggering the execution of python scripts
on ROM updates (see python3.run).
2018-07-03 15:23:09 +02:00
Norman Feske
a5d06a5ce8 julia_fractal.run: fetch components from depot
With this patch, the run script can be executed on platforms other than
Linux.

Issue #109
2018-06-27 10:56:07 +02:00
Johannes Schlatow
ea789fda0c python3: base-nova compatibility
The vfs is now populated with the python libs using a tar file system.
This is necessary because providing the zip from the rom did not work on NOVA.
The issue here is that python's zipimporter uses fseek with SEEK_END to
find the zip header. Unfortunately, the file size cannot be correctly
determined from the ROM session (see #1920) so that the fseek fails.
2018-06-27 09:03:37 +02:00
Daniel Collins
e6ee017e18 added a program that displays julia fractals
Issue #109
2018-06-26 16:45:42 +02:00
Sebastian Sumpf
62de16158d run: rename 'check_installed' to 'installed_command'
issue genodelabs/genode#2853
2018-06-22 15:58:46 +02:00
Johannes Schlatow
2e3f012eca ports: python3
Fixes #108
2018-06-20 11:22:06 +02:00
Johannes Schlatow
fb4833f972 ports: minor changes in glucose, lemon and keynote
- automatically set CC_CXX_WARN_STRICT if libs are imported
- set default cap quota

Issue #106
2018-06-15 10:44:14 +02:00
Johannes Schlatow
3ffdcfe96e fix ports/glucose
Issue #106
2018-06-15 10:43:53 +02:00
Emery Hemingway
509489c473 Remove synergy client
Synergy client was not tested and used outdated Genode libraries and
APIs.
2018-06-02 21:21:16 +02:00
Emery Hemingway
444fc3c1db Depot recipe for Abuse 2018-06-02 20:45:57 +02:00
Emery Hemingway
1f5a59a3f2 VFS and LwIP library updates 2018-06-02 20:45:56 +02:00