- default floppy device under Linux is now /dev/fd?u1440 because /dev/fd?H1440

is deprecated
This commit is contained in:
cebix 2002-02-22 17:48:31 +00:00
parent b7e0269519
commit 5ac532edfd
2 changed files with 5 additions and 5 deletions

View File

@ -685,10 +685,10 @@ static void sigint_handler(...)
#ifdef HAVE_PTHREADS
/*
* Pthread configuration
* Pthread configuration
*/
void
Set_pthread_attr(pthread_attr_t *attr, int priority)
void Set_pthread_attr(pthread_attr_t *attr, int priority)
{
pthread_attr_init(attr);
#if defined(_POSIX_THREAD_PRIORITY_SCHEDULING)

View File

@ -120,8 +120,8 @@ void SysMountFirstFloppy(void)
void SysAddFloppyPrefs(void)
{
#if defined(__linux__)
PrefsAddString("floppy", "/dev/fd0H1440");
PrefsAddString("floppy", "/dev/fd1H1440");
PrefsAddString("floppy", "/dev/fd0u1440");
PrefsAddString("floppy", "/dev/fd1u1440");
#elif defined(__NetBSD__)
PrefsAddString("floppy", "/dev/fd0a");
PrefsAddString("floppy", "/dev/fd1a");