summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-20 20:12:29 +0000
committerMatt Wilson <msw@redhat.com>1999-09-20 20:12:29 +0000
commite362533d196dbbd390ed189c71d44a53810d88aa (patch)
tree1265258fe06f5ccd5dcae14fa3fe915c24698bad
parent02f9def35b9a5ad7d9d5d749dceb0ee5f29f5ac2 (diff)
downloadanaconda-e362533d196dbbd390ed189c71d44a53810d88aa.tar.gz
anaconda-e362533d196dbbd390ed189c71d44a53810d88aa.tar.xz
anaconda-e362533d196dbbd390ed189c71d44a53810d88aa.zip
more init changes
-rw-r--r--loader/init.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/loader/init.c b/loader/init.c
index 360fc22a7..cc982ca54 100644
--- a/loader/init.c
+++ b/loader/init.c
@@ -440,14 +440,19 @@ int main(void) {
printf("Red Hat install init version %s starting\n", VERSION);
printf("mounting /proc filesystem... ");
-
if (!testing) {
if (mount("/proc", "/proc", "proc", 0, NULL))
fatal_error(1);
}
-
printf("done\n");
+ printf("mounting /dev/pts (unix89 pty) filesystem... ");
+ if (!testing) {
+ if (mount("/dev/pts", "/dev/pts", "devpts", 0, NULL))
+ fatal_error(1);
+ }
+ printf("done\n");
+
if (isSerial) {
printf("Red Hat install init version %s using a serial console\n",
VERSION);