From: Ben Gras Date: Thu, 11 Dec 2008 16:50:11 +0000 (+0000) Subject: DEV_BOOT is obsolete. X-Git-Tag: v3.1.4~177 X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=73e3431dfdc2fb45a703a1651d196cda268832ca;p=minix.git DEV_BOOT is obsolete. --- diff --git a/boot/boot.c b/boot/boot.c index 3c9d7040c..bd0b7754e 100755 --- a/boot/boot.c +++ b/boot/boot.c @@ -1088,9 +1088,6 @@ dev_t name2dev(char *name) if (strcmp(n, "ram") == 0) { dev= DEV_RAM; } else - if (strcmp(n, "boot") == 0) { - dev= DEV_BOOT; - } else if (n[0] == 'f' && n[1] == 'd' && numeric(n+2)) { /* Floppy. */ tmpdev.device= a2l(n+2);