summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-05-30 09:37:35 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-05-30 09:37:35 +0000
commit186322730aa9b7b1dd126071d0b5afdcf70a1297 (patch)
tree789ee46b19e5046588cf5afefbdbd6894418a941
parentf345fe14aab7ab69dfed45a4d8f8e477d66959f5 (diff)
use kbd command on /etc/kbdtype if applicable
-rw-r--r--etc/rc6
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/rc b/etc/rc
index 53e715fd73c..89be570b82d 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,4 +1,4 @@
-# $OpenBSD: rc,v 1.11 1996/05/26 10:25:27 deraadt Exp $
+# $OpenBSD: rc,v 1.12 1996/05/30 09:37:34 deraadt Exp $
# System startup script run by init on autoboot
# or after single-user.
@@ -270,5 +270,9 @@ echo '.'
. /etc/rc.local
+if [ -f /sbin/kbd -a -f /etc/kbdtype ]; then
+ kbd `cat /etc/kbdtype`
+fi
+
date
exit 0