[RECOVERY] fairphone FP1 (1st edition, repartitioned) CWM 6.0.5.0

Search This thread

drcyber

Senior Member
Dec 29, 2011
118
39
it worked for me now the following way:

*) i downloadet the update with FP-Updater, but dit NOT press INSTALL
*) i rebooted to recovery manually and
*) installed the zipfile from the "updater"-folder in the internal Storage

it seems tha BT is working better now with my Car Radio :)
 
  • Like
Reactions: hraecke

teufli

New member
Aug 3, 2009
3
1
Current location of cwm?

Hi chrmhoffmann,

you have created cwm images on goo.im. Unfortunately this service is offline now. Do you have an alternate download location, or can you give a hint on how to build the image out of the given github tree?

Thanks!
 
  • Like
Reactions: Xorok

Top Liked Posts

  • There are no posts matching your filters.
  • 27
    Code:
    #include 
    /*
     * Your warranty is now void.
     *
     * I am not responsible for bricked devices, dead SD cards,
     * thermonuclear war, or you getting fired because the alarm app failed. Please
     * do some research if you have any concerns about features included in this ROM
     * before flashing it! YOU are choosing to make these modifications, and if
     * you point the finger at me for messing up your device, I will laugh at you.
     *
     * Submitting bug reports on nightly builds is the leading 
     * cause of male impotence.
     */

    CyanogenMod/CWM is based on the Android Open Source Project with extra contributions from many people within the Android community. It can be used without any need to have any Google application installed.

    This is CWM for the fairphone FP1 (first edition, repartitioned as of FP cherry 1.6). As there are no custom roms (yet), this might not be very useful as of now :)
    Do not install on any other device than the fairphone FP1 first edition - repartitioned as of FP cherry 1.6.

    Note:
    - The recovery has been compiled from Cyanogenmod 11.0
    - device tree https://github.com/chrmhoffmann/android_device_fairphone_FP1

    Before proceeding please make a complete backup for ALL partitions (especially the recovery with e.g. MTK Droid Root & Tools).

    Thxs go to:
    - bgcngm/mtk-tools
    - the guys who make MTK droid root & tools
    - keesj from fairphone and tmp_ who gave us working kernel

    What works
    - you can adb into the CWM
    - backup and restore (boot, data, cache, system)
    - install from .zip files not tested but should work

    Installation
    a) copy the recovery to the device: adb push cwm-fp1-kk.0.1.img /storage/sdcard1
    b) adb into device: adb shell
    c) flash to recovery: dd if=/storage/sdcard1/cwm-fp1-kk.0.1.img of=/dev/recovery

    You could also try to use a tool like mtk mobile uncle tools (not tested by me): https://play.google.com/store/apps/details?id=com.mobileuncle.toolbox

    Download:

    Changelog:
    kk-0.1:
    - update to kitkat compliant version 6.0.5.0
    - self-compiled kernel

    https://goo.im/devs/chrmhoffmann/cm-11.0/fp1/cwm-fp1-kk.0.1.img
    md5sum b0081650e0e3677dc0c2f38ad76282e0

    Older downloads:
    Changelog:
    v.0.2:
    - rename to FP1 so that original zips should be flashable
    v.0.1:
    - initial version

    Download

    http://goo.im/devs/chrmhoffmann/fairphone/fp1/recovery-cwm-FP1-0.2.img
    md5sum ba524ae0d59125809d0c08b59e664a65

    Older download

    http://goo.im/devs/chrmhoffmann/fairphone/fp1/recovery-cwm-fp1-0.1.img
    md5sum 78a79f83bb2fc52b5bb6074df04d6892
    8
    Hmmm... You can test the installation by removing that assert from the zip file. It must be somewhere in META-INF/..../upgrade script.

    I guess I could change the ro.product.device to FP1 [EDIT: argh that changes directory structures etc...]

    Chris

    Should be fixed now. Update recovery to 0.2. See op.

    Chris
    4
    Updated version 6.0.5.0. See op.

    Chris
    2
    Does this version work with the new FP1U model with only a different chipset?

    I tested the install on FP1U and can confirm it works.

    EDIT: I only tested the KitKat install.
    2
    Code:
    [email protected]:/storage/sdcard1 $ su dd if=/storage/sdcard1/cwm-fp1-kk.0.1.img of
    =/dev/recovery
    d1/cwm-fp1-kk.0.1.img of=/dev/recovery                                        <

    su and dd are two separate commands. Either you execute su first to gain root privileges and write your CWM image to /dev/recovery afterwards using dd, or you can use
    su -c "single command you want to execute as root"
    to, sort of, combine both.