diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2005-10-16 07:57:02 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2005-10-16 07:57:02 +0000 |
commit | cf29f291e6c5b5ffb3146c4b2ab31ff3044dc28e (patch) | |
tree | cd33a534842744b04a1d8834c8dbec7d820e39f2 /sbin | |
parent | rename ovz mount util (diff) | |
download | baselayout-vserver-cf29f291e6c5b5ffb3146c4b2ab31ff3044dc28e.tar.gz baselayout-vserver-cf29f291e6c5b5ffb3146c4b2ab31ff3044dc28e.tar.bz2 baselayout-vserver-cf29f291e6c5b5ffb3146c4b2ab31ff3044dc28e.zip |
fix ovz nodes
svn path=/baselayout-vserver/trunk/; revision=61
Diffstat (limited to 'sbin')
-rwxr-xr-x | sbin/MAKEDEV | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/MAKEDEV b/sbin/MAKEDEV index 832965d..dfcae19 100755 --- a/sbin/MAKEDEV +++ b/sbin/MAKEDEV @@ -570,10 +570,10 @@ do makedev urandom c 1 9 $readable makedev tty c 5 0 $tty - # MAKEDEV is stupid when it comes to ptyp + # generate only a few ptys for i in `seq 0 5`; do makedev ptyp$i c 2 $i $tty - makedev ttyP$i c 57 $i $tty + makedev ttyp$i c 3 $i $tty done $0 $opts fd $0 $opts ptmx |