2
0
Fork 0

WiP! rsync: use genode.shells

This commit is contained in:
Ehmry - 2020-11-13 14:29:25 +01:00
parent ea764cf4b3
commit 29dd6cf10d
1 changed files with 6 additions and 59 deletions

View File

@ -16,64 +16,11 @@
};
client = { pkgs, ... }: {
imports = [ ../nixos-modules/hardware.nix ];
networking.interfaces.eth1.genode.stack = "lwip";
genode.init.children.rsync = {
inputs = with pkgs; [ rsync ];
configFile = pkgs.writeText "rsync-client.dhall" ''
let Genode = env:DHALL_GENODE
let Init = Genode.Init
let Child = Init.Child
in Child.flat
Child.Attributes::{
, binary = "rsync"
, exitPropagate = True
, resources = Genode.Init.Resources::{
, caps = 500
, ram = Genode.units.MiB 16
}
, routes =
[ Init.ServiceRoute.child "File_system" "eth1.sockets" ]
, config = Init.Config::{
, content =
let XML = Genode.Prelude.XML
let VFS = Genode.VFS
in [ XML.leaf
{ name = "libc"
, attributes = toMap
{ stdin = "/dev/null"
, stdout = "/dev/log"
, stderr = "/dev/log"
, socket = "/dev/sockets"
}
}
, VFS.vfs
[ VFS.dir
"dev"
[ VFS.leaf "log"
, VFS.leaf "null"
, VFS.dir
"sockets"
[ VFS.fs VFS.FS::{ label = "eth1.sockets" } ]
]
]
]
# Genode.Prelude.List.map
Text
XML.Type
( λ(x : Text)
XML.leaf
{ name = "arg", attributes = toMap { value = x } }
)
[ "rsync", "-rvvv", "192.168.1.2::" ]
}
}
'';
imports = [ ../nixos-modules/hardware.nix ../nixos-modules/shell.nix ];
genode.shells.rsync = {
environmentVariables.PATH = with pkgs; [ "${rsync}/bin" ];
nic = "eth1";
script = "rsync -rvvv 192.168.1.2::";
};
};
@ -83,6 +30,6 @@
server.start()
server.wait_until_serial_output('lwIP Nic interface up address=192.168.1.2')
client.start()
client.wait_until_serial_output('child "rsync" exited')
client.wait_until_serial_output('child "rsync.shell" exited')
'';
}