runit-void: update to 20200720.
This commit is contained in:
parent
121b353b59
commit
6a959b1367
2 changed files with 3 additions and 102 deletions
|
@ -1,99 +0,0 @@
|
||||||
From 7082410e3381937f5b42a609884666c44a63d269 Mon Sep 17 00:00:00 2001
|
|
||||||
From: q66 <daniel@octaforge.org>
|
|
||||||
Date: Sun, 20 Oct 2019 22:27:01 +0200
|
|
||||||
Subject: [PATCH] services: add agetty services for hvc0 and hvsi0
|
|
||||||
|
|
||||||
These are used for virtual terminal/serial console on some
|
|
||||||
hypervisors (Xen) as well as many POWER based machines (the
|
|
||||||
OPAL firmware emulates these for serial as the OS has no
|
|
||||||
physical access to that).
|
|
||||||
---
|
|
||||||
services/agetty-hvc0/conf | 3 +++
|
|
||||||
services/agetty-hvc0/finish | 1 +
|
|
||||||
services/agetty-hvc0/run | 1 +
|
|
||||||
services/agetty-hvc0/supervise | 1 +
|
|
||||||
services/agetty-hvsi0/conf | 8 ++++++++
|
|
||||||
services/agetty-hvsi0/finish | 1 +
|
|
||||||
services/agetty-hvsi0/run | 1 +
|
|
||||||
services/agetty-hvsi0/supervise | 1 +
|
|
||||||
8 files changed, 17 insertions(+)
|
|
||||||
create mode 100644 services/agetty-hvc0/conf
|
|
||||||
create mode 120000 services/agetty-hvc0/finish
|
|
||||||
create mode 120000 services/agetty-hvc0/run
|
|
||||||
create mode 120000 services/agetty-hvc0/supervise
|
|
||||||
create mode 100644 services/agetty-hvsi0/conf
|
|
||||||
create mode 120000 services/agetty-hvsi0/finish
|
|
||||||
create mode 120000 services/agetty-hvsi0/run
|
|
||||||
create mode 120000 services/agetty-hvsi0/supervise
|
|
||||||
|
|
||||||
diff --git a/services/agetty-hvc0/conf b/services/agetty-hvc0/conf
|
|
||||||
new file mode 100644
|
|
||||||
index 0000000..ecf4f1e
|
|
||||||
--- /dev/null
|
|
||||||
+++ services/agetty-hvc0/conf
|
|
||||||
@@ -0,0 +1,3 @@
|
|
||||||
+GETTY_ARGS="-L"
|
|
||||||
+BAUD_RATE=9600
|
|
||||||
+TERM_NAME=vt100
|
|
||||||
diff --git a/services/agetty-hvc0/finish b/services/agetty-hvc0/finish
|
|
||||||
new file mode 120000
|
|
||||||
index 0000000..ad464cb
|
|
||||||
--- /dev/null
|
|
||||||
+++ services/agetty-hvc0/finish
|
|
||||||
@@ -0,0 +1 @@
|
|
||||||
+../agetty-generic/finish
|
|
||||||
\ No newline at end of file
|
|
||||||
diff --git a/services/agetty-hvc0/run b/services/agetty-hvc0/run
|
|
||||||
new file mode 120000
|
|
||||||
index 0000000..ffa62a5
|
|
||||||
--- /dev/null
|
|
||||||
+++ services/agetty-hvc0/run
|
|
||||||
@@ -0,0 +1 @@
|
|
||||||
+../agetty-serial/run
|
|
||||||
\ No newline at end of file
|
|
||||||
diff --git a/services/agetty-hvc0/supervise b/services/agetty-hvc0/supervise
|
|
||||||
new file mode 120000
|
|
||||||
index 0000000..665ccf0
|
|
||||||
--- /dev/null
|
|
||||||
+++ services/agetty-hvc0/supervise
|
|
||||||
@@ -0,0 +1 @@
|
|
||||||
+/run/runit/supervise.agetty-hvc0
|
|
||||||
\ No newline at end of file
|
|
||||||
diff --git a/services/agetty-hvsi0/conf b/services/agetty-hvsi0/conf
|
|
||||||
new file mode 100644
|
|
||||||
index 0000000..ec61b5f
|
|
||||||
--- /dev/null
|
|
||||||
+++ services/agetty-hvsi0/conf
|
|
||||||
@@ -0,0 +1,8 @@
|
|
||||||
+GETTY_ARGS="-L"
|
|
||||||
+if [ -x /sbin/agetty -o -x /bin/agetty ]; then
|
|
||||||
+ # util-linux specific settings
|
|
||||||
+ GETTY_ARGS="${GETTY_ARGS} -8"
|
|
||||||
+fi
|
|
||||||
+
|
|
||||||
+BAUD_RATE=19200
|
|
||||||
+TERM_NAME=vt100
|
|
||||||
diff --git a/services/agetty-hvsi0/finish b/services/agetty-hvsi0/finish
|
|
||||||
new file mode 120000
|
|
||||||
index 0000000..ad464cb
|
|
||||||
--- /dev/null
|
|
||||||
+++ services/agetty-hvsi0/finish
|
|
||||||
@@ -0,0 +1 @@
|
|
||||||
+../agetty-generic/finish
|
|
||||||
\ No newline at end of file
|
|
||||||
diff --git a/services/agetty-hvsi0/run b/services/agetty-hvsi0/run
|
|
||||||
new file mode 120000
|
|
||||||
index 0000000..ffa62a5
|
|
||||||
--- /dev/null
|
|
||||||
+++ services/agetty-hvsi0/run
|
|
||||||
@@ -0,0 +1 @@
|
|
||||||
+../agetty-serial/run
|
|
||||||
\ No newline at end of file
|
|
||||||
diff --git a/services/agetty-hvsi0/supervise b/services/agetty-hvsi0/supervise
|
|
||||||
new file mode 120000
|
|
||||||
index 0000000..7dd4fb6
|
|
||||||
--- /dev/null
|
|
||||||
+++ services/agetty-hvsi0/supervise
|
|
||||||
@@ -0,0 +1 @@
|
|
||||||
+/run/runit/supervise.agetty-hvsi0
|
|
||||||
\ No newline at end of file
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'runit-void'
|
# Template file for 'runit-void'
|
||||||
pkgname=runit-void
|
pkgname=runit-void
|
||||||
version=20190906
|
version=20200720
|
||||||
revision=3
|
revision=1
|
||||||
wrksrc="void-runit-${version}"
|
wrksrc="void-runit-${version}"
|
||||||
build_style=gnu-makefile
|
build_style=gnu-makefile
|
||||||
short_desc="Void Linux runit scripts"
|
short_desc="Void Linux runit scripts"
|
||||||
|
@ -9,7 +9,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
|
||||||
license="CC0-1.0"
|
license="CC0-1.0"
|
||||||
homepage="https://github.com/void-linux/void-runit"
|
homepage="https://github.com/void-linux/void-runit"
|
||||||
distfiles="https://github.com/void-linux/void-runit/archive/${version}.tar.gz"
|
distfiles="https://github.com/void-linux/void-runit/archive/${version}.tar.gz"
|
||||||
checksum=9e1027c07124ff4efad63bef74b9f1ae0659e43f9d4e7cfde996be271706570c
|
checksum=706ed491315bd75b4b4ca07bc04af97369f8ef8820e9fa1931dae6939ea2e2db
|
||||||
|
|
||||||
depends="virtual?awk procps-ng runit"
|
depends="virtual?awk procps-ng runit"
|
||||||
conf_files="
|
conf_files="
|
||||||
|
|
Loading…
Reference in a new issue