Welcome to the Rockbox Technical Forums!
$ git clone git clone http://gerrit.rockbox.org/rockbox$ cd rockbox$ git checkout v3.14$ git fetch http://gerrit.rockbox.org/rockbox refs/changes/69/469/1 && git format-patch -1 --stdout FETCH_HEAD > msata.patch$ git apply msata.patch
$ git clone http://gerrit.rockbox.org/rockbox$ cd rockbox$ git checkout v3.14
$ wget https://gist.githubusercontent.com/anonymous/5f3bcab69a01fdfa9f47bac73b74cf10/raw/ea12373570d0cb0e78286c64112927162b77c2e6/ipod5g_msata_mod.patch$ git apply -3 ipod5g_msata_mod.patch
<<<<<<< ours#ifdef STORAGE_WANTS_ALIGN /* align start and length for DMA */ STORAGE_ALIGN_BUFFER(audiobuf, audiobuflen);#else /* align start and length to 32 bit */ ALIGN_BUFFER(audiobuf, audiobuflen, 4);#endif======= /* align start and length to 16 byte */ align = (-(intptr_t)audiobuf) & 0xf; audiobuf += align; audiobuflen = (audiobuflen - align) & ~0xf;>>>>>>> theirs
int align = (-(intptr_t)audiobuf) & 0xf; audiobuf += align; audiobuflen = (audiobuflen - align) & ~0xf;#ifdef STORAGE_WANTS_ALIGN /* align start and length for DMA */ STORAGE_ALIGN_BUFFER(audiobuf, audiobuflen);#else /* align start and length to 16 byte */ ALIGN_BUFFER(audiobuf, audiobuflen, 4);#endif
Hi Abbott and ArtlogicYou have done exactly what I'm looking to do, patch v3.14 with the mSATA patch for my modded iPod video. I was wondering if you could update me on how it's been running for you since you posted above?Also, I've been reading a lot but I'm 14 years out of practice from compiling code. Currently I'm struggling with getting a Unix system to run through VirtualBox on my Windows 10 machine. Do you have any recommendations for tutorials to get this going? Or, if you're feeling extremely charitable would you consider emailing or linking me to the rockbox.zip of the patched v3.14?Thanks in advance!
Page created in 0.029 seconds with 17 queries.