this repo has no description
1opam-version: "2.0"
2maintainer: "anil@recoil.org"
3homepage: "https://github.com/mirage/mirage-console"
4bug-reports: "https://github.com/mirage/mirage-console/issues"
5dev-repo: "git+https://github.com/mirage/mirage-console.git"
6doc: "https://mirage.github.io/mirage-console/"
7authors: [ "Anil Madhavapeddy" "David Scott"]
8tags: [ "org:mirage" "org:xapi-project"]
9license: "ISC"
10
11build: [
12 ["jbuilder" "subst" "-p" name] {dev}
13 [ "jbuilder" "build" "-p" name "-j" jobs ]
14]
15
16depends: [
17 "ocaml" {>= "4.03.0"}
18 "jbuilder" {>= "1.0+beta9"}
19 "mirage-console" {>= "2.2.0" & < "3.0.0"}
20 "lwt"
21 "cstruct" {>= "1.9.0"}
22 "cstruct-lwt"
23]
24synopsis: "Implementations of Mirage consoles, for Unix and Xen"
25description: """
26The Unix version of the console currently uses standard output. The code is in
27
28 unix/console.{ml,mli}
29
30The Xen kernel version of the console uses the primary PV console ring. The
31code is in
32
33 xen/console.{ml,mli}
34
35There is also a Unix userspace utility which creates and services Xen consoles
36("console backends"):
37
38Connect a console to a VM like this:
39
40```
41[root@st30 ~]# ./mirage-console connect trusty
42Operating on VM domain id: 19
43Creating device 1 (linux device /dev/tty1)
44{ ref = 128; event_channel = 13 }
45```
46
47Then inside the guest:
48
49```
50[root@trusty ~]# cat > /dev/hvc1
51hello
52there
53```
54
55And observe in dom0:
56
57```
58hello
59there
60```
61
62Then hit Control+C and it all cleans up."""
63url {
64 src:
65 "https://github.com/mirage/mirage-console/releases/download/v2.3.4/mirage-console-2.3.4.tbz"
66 checksum: [
67 "sha256=b0147914003d74a736e95233285f529dc8ebfc31af461e37a508331c6a4adcbf"
68 "md5=b81bd7033517c1e41527a2055ce0d22f"
69 ]
70}
71flags: deprecated
72post-messages: [ "mirage-console-lwt is deprecated, and has been folded into mirage-console" ]