Disable orbital by default

This commit is contained in:
Jeremy Soller 2016-10-13 21:19:02 -06:00
parent c907222657
commit 4985e1b720
2 changed files with 2 additions and 4 deletions

View file

@ -8,4 +8,4 @@ file:bin/ipd
file:bin/tcpd
file:bin/udpd
file:bin/getty display:1
file:bin/orbital display:2
#file:bin/orbital display:2

View file

@ -8,10 +8,8 @@ pub fn resource() -> Result<Vec<u8>> {
let schemes = scheme::schemes();
for (name, _scheme_lock) in schemes.iter_name() {
if ! data.is_empty() {
data.push(b'\n');
}
data.extend_from_slice(name);
data.push(b'\n');
}
Ok(data)