From: deraadt Date: Tue, 14 Nov 1995 13:26:25 +0000 (+0000) Subject: show "fdeject" as a valid root filesystem choice X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=a5bd4b62fd2fb111fd86afa870e98c0409933e93;p=openbsd show "fdeject" as a valid root filesystem choice --- diff --git a/sys/arch/sparc/sparc/autoconf.c b/sys/arch/sparc/sparc/autoconf.c index e78beb204bd..63a03f2309c 100644 --- a/sys/arch/sparc/sparc/autoconf.c +++ b/sys/arch/sparc/sparc/autoconf.c @@ -1437,6 +1437,10 @@ getdisk(str, len, defpart, devp) printf(" %s", dv->dv_xname); #endif } +#if NFD > 0 + if (devpart == 0) + printf(" fdeject"); +#endif /* NFD */ printf("\n"); } return (dv); @@ -1516,9 +1520,8 @@ setroot() for (;;) { printf("root device "); if (bootdv != NULL) - printf("(default %s%c)", - bootdv->dv_xname, - bootdv->dv_class == DV_DISK?'a':' '); + printf("(default %s%s)", bootdv->dv_xname, + bootdv->dv_class == DV_DISK?"a":""); printf(": "); len = getstr(buf, sizeof(buf)); #if NFD > 0 @@ -1565,9 +1568,8 @@ setroot() for (;;) { printf("swap device "); if (bootdv != NULL) - printf("(default %s%c)", - bootdv->dv_xname, - bootdv->dv_class == DV_DISK?'b':' '); + printf("(default %s%s)", bootdv->dv_xname, + bootdv->dv_class == DV_DISK?"b":""); printf(": "); len = getstr(buf, sizeof(buf)); if (len == 0 && bootdv != NULL) {