Aquileo | Recent changes to bugshttps://sourceforge.net/p/mpio/bugs/2025-12-09T12:17:58.542000ZRecent changes to bugsAquileo | Build broken and code repository2025-12-09T12:17:58.542000Z2025-12-09T12:17:58.542000Zboucedhttps://sourceforge.net/u/cboudy/https://sourceforge.net7f121acc2f176a1d70001139db5daac1e2fa7ea5<div class="markdown_content"><p>Hello<br/>
Sourceforge dropped CVS support so one has to download the repo and create a local repo. Is it possible to switch to svn or git?<br/>
I managed to compile the project with debian 13 but I had to do some minor corrections. How should I sent the patch?<br/>
Bests<br/>
cboudy</p></div>Aquileo | #11 configure broken2020-03-30T14:13:55.350000Z2020-03-30T14:13:55.350000ZMarkus Germeierhttps://sourceforge.net/u/germeier/https://sourceforge.neta97033631df7d402db38fed7b039699dfdbd0d47<div class="markdown_content"><p>The latest source code is available via: <a href="https://sourceforge.net/p/mpio/code/">https://sourceforge.net/p/mpio/code/</a></p>
<ul>
<li>checkout source code</li>
<li>autogen.sh</li>
<li>configure</li>
<li>make</li>
</ul></div>Aquileo | #11 configure broken2020-03-29T19:15:34.637000Z2020-03-29T19:15:34.637000ZMarkus Germeierhttps://sourceforge.net/u/germeier/https://sourceforge.nete1c59c0b0e475d4786671057c60e2d12958c3c77<div class="markdown_content"><p>This was fixed in the source code in january 2006 after the latest pre release:</p>
<div class="codehilite"><pre><span></span><span class="o">-></span><span class="nv">tail</span> <span class="o">-</span><span class="mi">144</span> <span class="nv">configure</span>.<span class="nv">in</span> <span class="o">|</span> <span class="nv">head</span> <span class="o">-</span><span class="mi">11</span>
<span class="nv">dnl</span> <span class="o">---</span> <span class="nv">blacklist</span> <span class="nv">the</span> <span class="nv">too</span> <span class="nv">old</span> <span class="nv">versions</span>
<span class="nv">case</span> <span class="s2">"</span><span class="s">$LIBUSB_VER</span><span class="s2">"</span> <span class="nv">in</span>
<span class="mi">0</span>.<span class="mi">1</span>.[[<span class="mi">0123456</span>]]<span class="o">|</span><span class="mi">0</span>.<span class="mi">1</span>.[[<span class="mi">36</span>]][[<span class="nv">ab</span>]]<span class="ss">)</span>
<span class="nv">AC_MSG_WARN</span><span class="ss">(</span>[
<span class="o">***</span> <span class="nv">You</span> <span class="nv">need</span> <span class="nv">at</span> <span class="nv">least</span> <span class="nv">version</span> <span class="mi">0</span>.<span class="mi">1</span>.<span class="mi">7</span> <span class="nv">of</span> <span class="nv">the</span> <span class="nv">libusb</span> <span class="nv">library</span> <span class="k">for</span> <span class="nv">USB</span> <span class="nv">support</span>
<span class="o">***</span> <span class="nv">http</span>:<span class="o">//</span><span class="nv">sourceforge</span>.<span class="nv">net</span><span class="o">/</span><span class="nv">projects</span><span class="o">/</span><span class="nv">libusb</span><span class="o">/</span>
<span class="o">***</span> <span class="k">If</span> <span class="nv">you</span> <span class="nv">cannot</span> <span class="nv">find</span> <span class="nv">the</span> <span class="nv">appropriate</span> <span class="nv">version</span>, <span class="nv">try</span> <span class="nv">CVS</span>
]<span class="ss">)</span>
<span class="k">exit</span> <span class="mi">1</span> <span class="c1">;;</span>
<span class="o">*</span><span class="ss">)</span><span class="c1">;;</span>
<span class="nv">esac</span>
</pre></div>
</div>Aquileo | configure broken2020-03-29T18:36:31.746000Z2020-03-29T18:36:31.746000ZDaniela Mantovanihttps://sourceforge.net/u/dzmanto/https://sourceforge.net6263fe137d8d99d296935f6093996c03d9f61446<div class="markdown_content"><p>As of 29 March 2020, the configure script is broken. The comparison between version of libusb in line 200002:<br/>
<code>if test "$LIBUSB_VER" \< "0.1.7"; then</code><br/>
fails to deliver a correct result when comparing to version 0.12.1.<br/>
I recommend replacing the above line with:</p>
<div class="codehilite"><pre><span></span><span class="nv">LIBUSB_VER</span><span class="o">=</span>$<span class="ss">(</span><span class="nv">printf</span> <span class="s1">'</span><span class="s">%s</span><span class="se">\n</span><span class="s">2</span><span class="s1">'</span> <span class="s2">"</span><span class="s">0.1.7</span><span class="s2">"</span> <span class="o">|</span> <span class="nv">sort</span> <span class="o">-</span><span class="nv">V</span> <span class="o">|</span> <span class="nv">head</span> <span class="o">-</span><span class="mi">1</span><span class="ss">)</span>
<span class="k">if</span> <span class="nv">test</span> <span class="s2">"</span><span class="s">$LIBUSB_VER</span><span class="s2">"</span> <span class="o">!=</span> <span class="s2">"</span><span class="s">0.1.7</span><span class="s2">"</span> <span class="c1">; then</span>
</pre></div>
<p>Cheers, Daniela</p></div>Aquileo | KMPIO segmentation fault AMD642006-12-30T07:15:56Z2006-12-30T07:15:56ZGoweropolishttps://sourceforge.net/u/goweropolis/https://sourceforge.net0fbf32ded00e6dd5128137ca93337739109db23c<div class="markdown_content"><p>Hi,</p>
<p>I compiled KMPIO 0.7.0 for my Debian AMD64 Etch system. Compilation appears to work OK. And running KMPIO works fine. When I click on the check mark button to connect to my MPIO, I see a progress bar for the reading of my MPIO's memory. When it is complete the program crashes with a segmentation fault. (See backtrace below.)</p>
<p>Can anyone offer any suggestion for getting KMPIO to work under AMD64. (MPIOSH works fine but it'd be nice to have the GUI!)</p>
<p>Thanks for reading.</p>
<p>Here is the backtrace from GDB:</p>
<p>andy@homer:~$ gdb kmpio<br />
GNU gdb 6.4.90-debian<br />
Copyright (C) 2006 Free Software Foundation, Inc.<br />
GDB is free software, covered by the GNU General Public License, and you are<br />
welcome to change it and/or distribute copies of it under certain conditions.<br />
Type "show copying" to see the conditions.<br />
There is absolutely no warranty for GDB. Type "show warranty" for details.<br />
This GDB was configured as "x86_64-linux-gnu"...(no debugging symbols found)<br />
Using host libthread_db library "/lib/libthread_db.so.1".</p>
<p>(gdb) run<br />
Starting program: /usr/local/bin/kmpio <br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
[Thread debugging using libthread_db enabled]<br />
[New Thread 47205141231936 (LWP 24242)]<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
---Type <return> to continue, or q <return> to quit---<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
Qt: gdb: -nograb added to command-line options.<br />
Use the -dograb option to enforce grabbing.<br />
(no debugging symbols found)<br />
(no debugging symbols found)<br />
(no debugging symbols found)</p>
<p>Program received signal SIGSEGV, Segmentation fault.<br />
[Switching to Thread 47205141231936 (LWP 24242)]<br />
0x00002aeecafe2510 in QShared::deref () from /usr/lib/libqt-mt.so.3<br />
(gdb) quit<br />
The program is running. Exit anyway? (y or n) y<br />
andy@homer:~$ </p></div>Aquileo | DMK 2562006-02-20T17:41:14Z2006-02-20T17:41:14ZAnonymoushttps://sourceforge.net/u/userid-None/https://sourceforge.net51612be1dbc9e185c56db4a56089e985d558f2af<div class="markdown_content"><p>hello,<br />
I have DMK 256Mb player ant it not supports well ... <br />
I've tryed versions 0.7 and 0.7.1-pre2 but they not <br />
works at all, now with 0.7.1-pre3 it works a little, <br />
actualy player recognises and it's possible to read <br />
files from tham, but formatting and uploading not <br />
works ....</p></div>Aquileo | Killed my fl100!!2005-02-24T03:33:08Z2005-02-24T03:33:08ZAnonymoushttps://sourceforge.net/u/userid-None/https://sourceforge.net7db14bb4221e0d0442c951a33a44fd3ba57b1b5d<div class="markdown_content"><p>I was using mpiosh to transfer songs to my fl100 internal memory <br />
card when mpiosh quit with a segmentation fault. Then the <br />
computer stopped responding to the fl100 and when I unplugged it <br />
from USB it froze up. Now I can't turn it on :(</p>
<p>I think I must have klobbered something important from the <br />
internal memory card but I can't turn it on so I can't communicate <br />
with it from my computer.</p>
<p>It's a real shame because up till that moment the mpiosh had <br />
worked fine with no glitches whatsoever</p></div>Aquileo | Failed to read Block.(nread=0xffffffac)2004-12-14T16:58:18Z2004-12-14T16:58:18ZFederico Ponce de Leonhttps://sourceforge.net/u/userid-131470/https://sourceforge.netdf07f479fc170daee65bea42501186a333d8e7eb<div class="markdown_content"><p>I use Debian unstable, kernel kernel 2.6.8-1-k7 and<br />
hotplug support. Packages mpio libmpio libmpio-dev<br />
libusb-dev kmpio where installed from<br />
<a href="http://www.le-seb.org/unofficial-debs/" rel="nofollow">http://www.le-seb.org/unofficial-debs/</a></p>
<p>a) I can start mpiosh or kmpio.</p>
<p>b) I get this error because I haven't connected the<br />
device (obviously, but necessary for troubleshooting)<br />
ERROR: Could not open /dev/usb/mpio<br />
Verify that the mpio module is loaded and your MPIO is<br />
connected and powered up.<br />
could not find MPIO player.<br />
mpio <i></p>
<p>c) When I connect the FL100 to the usb bus, I get this<br />
message on /var/log/messages. It seems like the device<br />
is connected (ok)<br />
usb 2-1.2: new full speed USB device using address 6<br />
usb.agent[4145]: libmpio: loaded successfully</p>
<p>d) Then I type "open" in the mpiosh commandline and get<br />
this error:<br />
mpio <i> open<br />
mpio: src/mpio.c(378): mpio_init: FL100 found:<br />
External memory is ignored, because we don't know how<br />
to support it at the moment (MultiMediaCards instead of<br />
SmartMedia)<br />
mpio: src/io.c(755): mpio_io_read: libusb returned<br />
error: (ffffffac) "error reading from bulk endpoint<br />
0x83: Invalid or incomplete multibyte or wide character"<br />
mpio: src/io.c(1118): mpio_io_megablock_read:<br />
Failed to read (sub-)block.(nread=0xffffffac)<br />
mpio: src/io.c(755): mpio_io_read: libusb returned<br />
error: (ffffffac) "error reading from bulk endpoint<br />
0x83: Invalid or incomplete multibyte or wide character"<br />
mpio: src/io.c(1268): mpio_io_spare_read:<br />
Failed to read Block.(nread=0xffffffac)<br />
connection to MPIO player is opened<br />
mpio <i><br />
e) /var/log/messages displays this errors:<br />
sb 2-1.2: usbfs: USBDEVFS_BULK failed ep 0x83 len 4096<br />
ret -84<br />
sb 2-1.2: usbfs: USBDEVFS_BULK failed ep 0x83 len 64<br />
ret -84</p>
<p>I think this problem may be related with some<br />
libraries, byt I'm not sure, so I followed step #5 on<br />
FAQ <a href="http://mpio.sourceforge.net/faq.html">http://mpio.sourceforge.net/faq.html</a> and I got this<br />
debug logfile:<br />
--- Debug logfile (start)<br />
mpio: src/io.c(524): mpio_device_open: trying libusb<br />
mpio: src/io.c(554): mpio_device_open: claimed interface 0<br />
mpio: src/io.c(563): mpio_device_open: USB endpoint #0<br />
(Addr=0x03, Attr=0x02)<br />
mpio: src/io.c(569): mpio_device_open: FOUND outgoing<br />
USB endpoint (0x03)<br />
mpio: src/io.c(563): mpio_device_open: USB endpoint #1<br />
(Addr=0x83, Attr=0x02)<br />
mpio: src/io.c(566): mpio_device_open: FOUND incoming<br />
USB endpoint (0x83)<br />
mpio: src/io.c(563): mpio_device_open: USB endpoint #2<br />
(Addr=0x81, Attr=0x03)<br />
mpio: src/io.c(580): mpio_device_open: using libusb<br />
mpio: src/io.c(788): mpio_io_version_read: >>> MPIO<br />
mpio: src/io.c(789): mpio_io_version_read:<br />
data=0xbffff990 len=64<br />
mpio: 0000: 01 00 00 00 00 00 00 00 00 00 00 00 00<br />
00 00 00 ................<br />
mpio: 0010: 00 00 00 00 00 00 00 00 00 00 00 00 00<br />
00 00 00 ................<br />
mpio: 0020: 00 00 00 00 00 00 00 00 00 00 00 00 00<br />
00 00 00 ................<br />
mpio: 0030: 00 00 00 00 00 00 00 00 00 00 00 6a 79<br />
6b 69 6d ...........jykim<br />
mpio: src/io.c(810): mpio_io_version_read: <<< MPIO<br />
mpio: src/io.c(811): mpio_io_version_read:<br />
data=0xbffff950 len=64<br />
mpio: 0000: 46 4c 31 30 30 00 00 00 00 00 00 00 20<br />
31 33 32 FL100....... 132<br />
mpio: 0010: 32 30 30 33 30 39 32 39 ec f1 ec f1 ff<br />
ff ff ff 20030929........<br />
mpio: 0020: ff ff ff ff ff ff 00 00 00 00 00 00 00<br />
00 00 00 ................<br />
mpio: 0030: 00 00 00 00 00 00 00 00 01 00 00 00 79<br />
00 02 6d ............y..m<br />
mpio: src/mpio.c(378): mpio_init: FL100 found: External<br />
memory is ignored, because we don't know how to support<br />
it at the moment (MultiMediaCards instead of SmartMedia)<br />
mpio: src/mpio.c(199): mpio_init_internal: found 2<br />
chip(s) with 128 MB => 256 MB internal mem<br />
mpio: src/mpio.c(210): mpio_init_internal: max_cluster:<br />
2048<br />
mpio: src/mpio.c(214): mpio_init_internal: fat_size: 8000<br />
mpio: src/io.c(1097): mpio_io_megablock_read:<br />
>>> MPIO<br />
mpio: src/io.c(1098): mpio_io_megablock_read:<br />
data=0xbfffae70 len=64<br />
mpio: 0000: 02 01 00 00 00 00 00 00 00 00 00 00 00<br />
00 00 00 ................<br />
mpio: 0010: 00 00 00 00 00 00 00 00 00 00 00 00 00<br />
00 00 00 ................<br />
mpio: 0020: 00 00 00 00 00 00 00 00 00 00 00 00 00<br />
00 00 00 ................<br />
mpio: 0030: 00 00 00 00 00 00 00 00 00 00 00 6a 79<br />
6b 69 6d ...........jykim<br />
mpio: src/io.c(755): mpio_io_read: libusb returned<br />
error: (ffffffac) "error reading from bulk endpoint<br />
0x83: Invalid or incomplete multibyte or wide character"<br />
mpio: src/io.c(1118): mpio_io_megablock_read:<br />
Failed to read (sub-)block.(nread=0xffffffac)<br />
mpio: src/io.c(1242): mpio_io_spare_read:<br />
>>> MPIO<br />
mpio: src/io.c(1243): mpio_io_spare_read:<br />
data=0xbffff740 len=64<br />
mpio: 0000: 07 01 00 00 00 00 00 00 00 00 00 00 00<br />
00 00 00 ................<br />
mpio: 0010: 00 00 00 00 00 00 00 00 00 00 00 00 00<br />
00 00 00 ................<br />
mpio: 0020: 00 00 00 00 00 00 00 00 00 00 00 00 00<br />
00 00 00 ................<br />
mpio: 0030: 00 00 00 00 00 00 00 00 00 00 00 6a 79<br />
6b 69 6d ...........jykim<br />
mpio: src/io.c(755): mpio_io_read: libusb returned<br />
error: (ffffffac) "error reading from bulk endpoint<br />
0x83: Invalid or incomplete multibyte or wide character"<br />
mpio: src/io.c(1268): mpio_io_spare_read:<br />
Failed to read Block.(nread=0xffffffac)<br />
--- Debug logfile (end)</p></div>Aquileo | dirver for MPIO FL2002004-11-03T05:11:19Z2004-11-03T05:11:19ZXu,Luohttps://sourceforge.net/u/visualbluoxu/https://sourceforge.net278a58767ec251ae6a717bb887d2bc10d39a163f<div class="markdown_content"><p>New Work,<br />
I wanna driver for MPIO FL200. When could it be<br />
available? anyway I can work-around for now?</p>
<p>Error Log when plug-in my FL200<br />
Nov 3 12:13:49 localhost kernel: mpio.c: USB MPIO<br />
support registered.<br />
Nov 3 12:13:49 localhost kernel: mpio.c: 0.0.3:USB<br />
MPIO driver<br />
Nov 3 12:13:54 localhost kernel: hub.c:<br />
connect-debounce failed, port 7 disabled<br />
Nov 3 12:13:55 localhost kernel: hub.c: new USB device<br />
00:1d.3-1, assigned address 12<br />
Nov 3 12:13:55 localhost kernel: usb-uhci.c:<br />
interrupt, status 2, frame# 1110<br />
Nov 3 12:13:55 localhost kernel: usb.c: unable to get<br />
descriptor<br />
Nov 3 12:13:55 localhost kernel: usb.c: unable to get<br />
device 12 configuration (error=-75)<br />
Nov 3 12:13:55 localhost kernel: hub.c: new USB device<br />
00:1d.3-1, assigned address 13<br />
Nov 3 12:13:55 localhost kernel: usb.c: unable to get<br />
descriptor<br />
Nov 3 12:13:55 localhost kernel: usb.c: unable to get<br />
device 13 configuration (error=-75)</p></div>Aquileo | where is mkmpiodev? 2004-05-24T15:28:38Z2004-05-24T15:28:38ZChoses Curieuseshttps://sourceforge.net/u/chosescurieuses/https://sourceforge.net4952be41d9df60c2e28d8e283a3e36f89b7e1d2d<div class="markdown_content"><p>I ran configure<br />
make and<br />
make install as root.</p>
<p>Following the README file included in the TAR, I try to <br />
run the /usr/local/sbin/mkmpiodev program but I discover <br />
it is nowhere to be seen. When is this program built or <br />
where is the script?</p>
<p>Thanks in advance</p></div>