Remove Ipod Video 64MB handling.

Since the builds for the Ipod Video 32MB and 64MB are now unified there
is no need to handle them separately in Rockbox Utility anymore.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27966 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2010-09-01 17:47:33 +00:00
parent 21c7b9debb
commit 0110e558de
3 changed files with 3 additions and 25 deletions

View file

@ -98,12 +98,6 @@ bool Autodetection::detect()
if(m_device.isEmpty())
{
m_device = info.target();
// special case for video64mb. This is a workaround, and
// should get replaced when autodetection is reworked.
if(m_device == "ipodvideo" && info.ram() == 64)
{
m_device = "ipodvideo64mb";
}
}
m_mountpoint = mounts.at(i);
qDebug() << "[Autodetect] rockbox-info.txt detected:"
@ -267,7 +261,7 @@ QStringList Autodetection::mountpoints()
endmntent(mn);
#else
#error Unknown Plattform
#error Unknown Platform
#endif
return tempList;
}