diff options
author | dfr <dfr@FreeBSD.org> | 2001-10-06 16:06:48 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 2001-10-06 16:06:48 +0000 |
commit | 9c40c48b35e106f89d0df657780deb8b385e23b3 (patch) | |
tree | 0913bde8a55e12774e6cf0669b3499c27fe6cd0d | |
parent | bfef499fd2d182aa6ede7aaffdb0c4b472b37197 (diff) | |
download | FreeBSD-src-9c40c48b35e106f89d0df657780deb8b385e23b3.zip FreeBSD-src-9c40c48b35e106f89d0df657780deb8b385e23b3.tar.gz |
Move console probes until after we set boothowto so that 'boot -h' works.
-rw-r--r-- | sys/ia64/ia64/machdep.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/ia64/ia64/machdep.c b/sys/ia64/ia64/machdep.c index 7bcde7c..8f48bd8 100644 --- a/sys/ia64/ia64/machdep.c +++ b/sys/ia64/ia64/machdep.c @@ -563,13 +563,6 @@ ia64_init(u_int64_t arg1, u_int64_t arg2) } /* - * Initialize the console before we print anything out. - */ - cninit(); - - /* OUTPUT NOW ALLOWED */ - - /* * Look at arguments passed to us and compute boothowto. */ boothowto = bootinfo.bi_boothowto; @@ -590,6 +583,13 @@ ia64_init(u_int64_t arg1, u_int64_t arg2) bootverbose = 1; /* + * Initialize the console before we print anything out. + */ + cninit(); + + /* OUTPUT NOW ALLOWED */ + + /* * Wire things up so we can call the firmware. */ map_pal_code(); |