diff --git a/ChangeLog b/ChangeLog index 68075a4a2..33b71db76 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-12-04 Yoshinori K. Okuji + + * stage2/disk_io.c (set_device): If '(n' is given, add 'd' into + DEVICE. Reported by Pavel Roskin. + 2002-12-03 Yoshinori K. Okuji Change the terminal structure a bit, to turn the cursor state diff --git a/stage2/disk_io.c b/stage2/disk_io.c index 4800638bb..b48c9878c 100644 --- a/stage2/disk_io.c +++ b/stage2/disk_io.c @@ -949,9 +949,9 @@ set_device (char *device) { char ch = *device; - if (*device == 'f' || *device == 'h') + if (*device == 'f' || *device == 'h' || *device == 'n') { - /* user has given '([fh]', check for resp. add 'd' and + /* user has given '([fhn]', check for resp. add 'd' and let disk_choice handle what disks we have */ if (!*(device + 1)) {