diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 02:41:22 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 02:41:22 +0000 |
commit | 8c14d0dd811aaef1445bdbdc4a91bceebd5e08f2 (patch) | |
tree | 62b7f4349433c8429d027a6e7570e6484bcbb1cf | |
parent | 9ec72d760f6840fe718aa79b7946c3fd52cd90ed (diff) |
(bootdevice): Initialize to hard-coded `sd0a' instead of
DEFAULT_BOOTDEVICE.
-rw-r--r-- | boot/boot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/boot.c b/boot/boot.c index e2e6ef83..b93879c2 100644 --- a/boot/boot.c +++ b/boot/boot.c @@ -76,7 +76,7 @@ void init_termstate (); char *fsname; char *bootstrap_args; -char *bootdevice = DEFAULT_BOOTDEVICE; +char *bootdevice = "sd0a"; /* We can't include <unistd.h> for this, because that will fight witho our definitions of syscalls below. */ |