diff options
author | phk <phk@FreeBSD.org> | 2002-10-22 15:25:19 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2002-10-22 15:25:19 +0000 |
commit | 81502b2227e9fce2fb30eedfc59004dca8c440bb (patch) | |
tree | fc206a77e26a2202b9b5335b2f2ec9785f83a629 /usr.sbin/sysinstall/install.c | |
parent | f3f6ee7e03add8206301d077e46f610356ec0c39 (diff) | |
download | FreeBSD-src-81502b2227e9fce2fb30eedfc59004dca8c440bb.zip FreeBSD-src-81502b2227e9fce2fb30eedfc59004dca8c440bb.tar.gz |
Remove more private MAKEDEV kludges.
Diffstat (limited to 'usr.sbin/sysinstall/install.c')
-rw-r--r-- | usr.sbin/sysinstall/install.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c index 731ade0..40dd302 100644 --- a/usr.sbin/sysinstall/install.c +++ b/usr.sbin/sysinstall/install.c @@ -939,8 +939,8 @@ installFilesystems(dialogMenuItem *self) if (swapdev && RunningAsInit) { /* As the very first thing, try to get ourselves some swap space */ sprintf(dname, "/dev/%s", swapdev->name); - if (!Fake && (!MakeDevChunk(swapdev, "/dev") || !file_readable(dname))) { - msgConfirm("Unable to make device node for %s in /dev!\n" + if (!Fake && !file_readable(dname)) { + msgConfirm("Unable to find device node for %s in /dev!\n" "The creation of filesystems will be aborted.", dname); return DITEM_FAILURE; } @@ -961,7 +961,7 @@ installFilesystems(dialogMenuItem *self) if (rootdev && RunningAsInit) { /* Next, create and/or mount the root device */ sprintf(dname, "/dev/%s", rootdev->name); - if (!Fake && (!MakeDevChunk(rootdev, "/dev") || !file_readable(dname))) { + if (!Fake && !file_readable(dname)) { msgConfirm("Unable to make device node for %s in /dev!\n" "The creation of filesystems will be aborted.", dname); return DITEM_FAILURE | DITEM_RESTORE; |