2008-01-05 Robert Millan <rmh@aybabtu.com>
* util/biosdisk.c (get_os_disk): Check for devfs-style IDE and SCSI discs unconditionaly, since udev and others have options to provide them.
This commit is contained in:
parent
d8b43d9b50
commit
ddf8f6add7
2 changed files with 23 additions and 20 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2008-01-05 Robert Millan <rmh@aybabtu.com>
|
||||||
|
|
||||||
|
* util/biosdisk.c (get_os_disk): Check for devfs-style IDE and SCSI
|
||||||
|
discs unconditionaly, since udev and others have options to provide
|
||||||
|
them.
|
||||||
|
|
||||||
2008-01-05 Robert Millan <rmh@aybabtu.com>
|
2008-01-05 Robert Millan <rmh@aybabtu.com>
|
||||||
|
|
||||||
* normal/completion.c (iterate_dir): Skip `.' and `..' directories.
|
* normal/completion.c (iterate_dir): Skip `.' and `..' directories.
|
||||||
|
|
|
@ -606,8 +606,6 @@ get_os_disk (const char *os_dev)
|
||||||
{
|
{
|
||||||
p = path + 5;
|
p = path + 5;
|
||||||
|
|
||||||
if (have_devfs ())
|
|
||||||
{
|
|
||||||
/* If this is an IDE disk. */
|
/* If this is an IDE disk. */
|
||||||
if (strncmp ("ide/", p, 4) == 0)
|
if (strncmp ("ide/", p, 4) == 0)
|
||||||
{
|
{
|
||||||
|
@ -627,7 +625,6 @@ get_os_disk (const char *os_dev)
|
||||||
|
|
||||||
return path;
|
return path;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/* If this is a DAC960 disk. */
|
/* If this is a DAC960 disk. */
|
||||||
if (strncmp ("rd/c", p, 4) == 0)
|
if (strncmp ("rd/c", p, 4) == 0)
|
||||||
|
|
Loading…
Reference in a new issue