This is an old revision of the document!
This page is building…
To Create Prime image for Akai force you can follow this procedure. It's working on release 2.1.2.
Go to Engine Prime Download and get firmware 2.1.2 :
https://enginedj.com/downloads
By using Thekikgen method you have to extract the rootfs image from firmware : https://github.com/TheKikGen/MPC-LiveXplore/wiki/How-to-extract-the-2.6-rootfs-img-from-the-update.img
With Hex Editor ,( i'am using HXD) , search for Hex Value : FD 37 7A 58 5A
It will give you something like this :
Then :
Go to position 2B94 and remove everything upper the string :
Then save the file and quit Hex Editor. Next go to file folder where you saved the .img. With 7zip, click the file and choose Extract Here :
The will extract the Filesystem image which is approx 512 mb.
You can copy this new file ( 512 mb ) on your SD card.
Then we are gogin to a create filesystem overlay which will contain our files. On you media card location ( eg : /media/02EB-7AEF/ ) use the following command to create a new filesystem file.
dd if=/dev/zero of=lower-fs.img bs=4096 count=204800
It will create a file which size is 800 mb. to give Ext4 FS type to our file, issue this comand :
mkfs -t ext4 lower-fs.img
Create a folder named overlay on your media card ( eg : /media/02EB-7AEF/overlay).
mkdir /media/02EB-7AEF/overlay
Mount the created filesystem file ( lower-fs.img) on overlay folder :
mount lower-fs.img overlay
Go to your overlay folder :
cd overlay