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 "lwt" {>= "2.4.7"} 20 "cstruct" {>= "3.0.0" & < "6.1.0"} 21 "cstruct-lwt" 22 "mirage-console-lwt" {>= "2.2.0"} 23 "mirage-unix" {>= "1.1.0"} 24] 25synopsis: "Implementations of Mirage consoles, for Unix and Xen" 26description: """ 27The Unix version of the console currently uses standard output. The code is in 28 29 unix/console.{ml,mli} 30 31The Xen kernel version of the console uses the primary PV console ring. The 32code is in 33 34 xen/console.{ml,mli} 35 36There is also a Unix userspace utility which creates and services Xen consoles 37("console backends"): 38 39Connect a console to a VM like this: 40 41``` 42[root@st30 ~]# ./mirage-console connect trusty 43Operating on VM domain id: 19 44Creating device 1 (linux device /dev/tty1) 45{ ref = 128; event_channel = 13 } 46``` 47 48Then inside the guest: 49 50``` 51[root@trusty ~]# cat > /dev/hvc1 52hello 53there 54``` 55 56And observe in dom0: 57 58``` 59hello 60there 61``` 62 63Then hit Control+C and it all cleans up.""" 64url { 65 src: 66 "https://github.com/mirage/mirage-console/releases/download/v2.3.3/mirage-console-2.3.3.tbz" 67 checksum: [ 68 "sha256=cea9913045018dbda194e8c94a5d85b84206934e93bb50c082a0854cd08d5dbb" 69 "md5=5333550e819614a59547a3ee98cf33ef" 70 ] 71} 72flags: deprecated