From fe90fce5d15f185251e27da8eae93d213ffb6116 Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Mon, 22 Aug 2005 14:23:01 +0000 Subject: [PATCH] mount /dev/pts, zo we've got PTYs (for screen) svn path=/nixu/trunk/; revision=3661 --- boot/boot.sh | 3 +++ fill-disk.sh | 1 + 2 files changed, 4 insertions(+) diff --git a/boot/boot.sh b/boot/boot.sh index 1589ba796e1..6115bd988c1 100644 --- a/boot/boot.sh +++ b/boot/boot.sh @@ -12,6 +12,9 @@ mount -n -t proc none /proc echo "mounting /sys..." mount -n -t sysfs none /sys +echo "mounting /dev/pts..." +mount -n -t devpts none /dev/pts + #echo "checking /dev/root..." #e2fsck -y /dev/root || test "$?" -le 1 diff --git a/fill-disk.sh b/fill-disk.sh index 84ace7b66d7..9e7e11e4f2c 100755 --- a/fill-disk.sh +++ b/fill-disk.sh @@ -126,6 +126,7 @@ echo creating file system hierarchy on target drive make_dir 00755 /bin make_dir 00755 /boot make_dir 00755 /dev +make_dir 00755 /dev/pts make_dir 00755 /etc # global non-constant configuration make_dir 00755 /etc-secret make_dir 00755 /home