Okay. I had a problem finding my iPod 5 with the iPodLinux Manager...
I just took a look in the iPodLinux Manager.bat and found the problem:
My iPod had drive S:/ the batch file scans up to M:/...
i easily changed this
Code:
::Searching for iPod...
IF EXIST D:\iPod_Control SET sys=D
IF NOT "%sys%"=="" GOTO HwName
IF EXIST E:\iPod_Control SET sys=E
IF NOT "%sys%"=="" GOTO HwName
IF EXIST F:\iPod_Control SET sys=F
IF NOT "%sys%"=="" GOTO HwName
IF EXIST G:\iPod_Control SET sys=G
IF NOT "%sys%"=="" GOTO HwName
IF EXIST H:\iPod_Control SET sys=H
IF NOT "%sys%"=="" GOTO HwName
IF EXIST I:\iPod_Control SET sys=I
IF NOT "%sys%"=="" GOTO HwName
IF EXIST J:\iPod_Control SET sys=J
IF NOT "%sys%"=="" GOTO HwName
IF EXIST K:\iPod_Control SET sys=K
IF NOT "%sys%"=="" GOTO HwName
IF EXIST L:\iPod_Control SET sys=L
IF NOT "%sys%"=="" GOTO HwName
IF EXIST S:\iPod_Control SET sys=S
IF NOT "%sys%"=="" GOTO HwName
in detail: I overwrote the M:/iPod... with S:/... and changed sys=M to sys=S (had to use forward slash becaus the board displays \ as a smiley
And the batch file found my ipod...
sry if someone already wrote this
