diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-20 20:12:29 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-20 20:12:29 +0000 |
commit | e362533d196dbbd390ed189c71d44a53810d88aa (patch) | |
tree | 1265258fe06f5ccd5dcae14fa3fe915c24698bad /loader | |
parent | 02f9def35b9a5ad7d9d5d749dceb0ee5f29f5ac2 (diff) | |
download | anaconda-e362533d196dbbd390ed189c71d44a53810d88aa.tar.gz anaconda-e362533d196dbbd390ed189c71d44a53810d88aa.tar.xz anaconda-e362533d196dbbd390ed189c71d44a53810d88aa.zip |
more init changes
Diffstat (limited to 'loader')
-rw-r--r-- | loader/init.c | 9 |
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); |