[DEV][ROM] TeamGalaxyR-Cyanogenmod7-Prealpha Release 3

Search This thread

akshatsourav

Senior Member
Jan 7, 2011
387
182
bangalore

UnknownzD

Senior Member
Oct 9, 2011
232
391
Do not copy the dell streak ril.so file as it is not suitable for our device. Btw if you really want to copy those files out, use Galaxy tab 10.1 extract file shell script instead.

Sry I am busy finishing my kernel atm.

Sent from my GT-I9103 using XDA
 

FranzJesus

Senior Member
May 10, 2010
120
183
Do not copy the dell streak ril.so file as it is not suitable for our device. Btw if you really want to copy those files out, use Galaxy tab 10.1 extract file shell script instead.

Sry I am busy finishing my kernel atm.

Sent from my GT-I9103 using XDA

Most of these files are already extracted from my phone, and is in the /proprietary catalog in our repo.
 

javichampi

Senior Member
May 24, 2008
72
25
Malaga

Dell Streak 7 had tegra2 chipset.

And not all libs in the file are present in our device, but many of them yes.

I have the Nvidia generic image too, for GB and for ICS, they are available on nvidia webpage. I've extracted them with dsixda's kitchen and the structure is more simmilar to CM folder tree than R's folder tree. Maybe some stuff can be used for development, or even for update some libs.
 

FranzJesus

Senior Member
May 10, 2010
120
183
I think I know where the problem is!

We need a better/modified updaterscript.
There is some real differences in the updaterscript for CM7 than AOSP.
And the problem could be with symlinking busybox and toolbox!

What do you guys think?
 

Aquethys

Retired Forum Moderator
Dec 26, 2011
1,267
796
Colorado
Couldn't possibly be. I flashed this to my Captivate Glide and then used the ardatdat kernel for our phone and booted into recovery like the Galaxy R users
 

Top Liked Posts

  • There are no posts matching your filters.
  • 19
    HELLO GUYS :D

    I compiled CM7 from newest sources and I would want to see if it works like AOSP

    I've not done any tweaking as of yet because I don't know what will work for the R .

    Features:
    - Theme Chooser (freedom to install any CM7 theme)
    - Ability to take Screenshots directly from Power Menu
    - Extended power menu
    - Allows rebooting normally , to recovery and even bootloader (not applicable)

    Anyway , I need a kind soul to take screenshots (you will be credited)

    Main developers:
    Me
    FranzJesus
    UnknownzD
    And eaglerazor
    ;)

    Here's the status report by bhargav143:
    Instead of working... I am listing the not working ones... beacause I have not tested the whole system...

    Not working:

    Wi-Fi
    Phone calls(bugged)
    Some apps
    Camera
    Bluetooth


    Imporatant Features(Working):

    Mobile data
    Messaging
    Music
    Vibration
    Sensors
    Root access
    Many Cyanogen features...
    And many more...


    DOWNLOAD HERE PEOPLE (thanks to FranzJesus):
    http://dl.dropbox.com/u/3020667/AOSP-GalaxyR/cm-7-20120711-UNOFFICIAL-galaxyr.zip
    14
    Latest Build

    Hi!

    Here comes a newly compiled CM7.2 from our sources without the erratapatch (Thanks Adam77Root).
    Same functionality as the latest AOSP build but without working phonecalls.

    cm-7-20120711-UNOFFICIAL-galaxyr.zip

    This will be the last that I do on these sources, so let us all try to support Adam77Root and Epsylon3 to make a final and working build!!!
    10
    Sad that people who don't have Galaxy R working on rom for it - it will takes ages.

    Would you be kind enough to donate one or money to them ?? :D
    If not, nonconstructive comments best kept to oneself.
    We are very fortunate to have a forum after much debate and even more fortunate to have kind devs doing this for next to nothing.

    Please choose your words carefully in the future. :D

    Cheers !
    9
    I will make a thread tomorrow... i was in kernel and sensors code the whole journey... but now it s time to sleep a bit :)

    I dont have pushed the kernel stuff for the moment... i need to clean that... nothing big

    but a new build is uploaded.. 14 Jul... changelog available in rom updater and my tpruvot repo on github


    Sent from my GT-I9103 using xda app-developers app
    7
    I have found a bug (or better say the config that not yet enabled is wrong) in your github repo for BoardConfig.mk

    https://raw.github.com/EmoBoiix3/android_device_samsung_galaxyr/master/BoardConfig.mk

    # BOARD_BOOTIMAGE_PARTITION_SIZE := 0x00480000
    # BOARD_RECOVERYIMAGE_PARTITION_SIZE := 0x00780000
    # BOARD_SYSTEMIMAGE_PARTITION_SIZE := 0x0cf80000
    # BOARD_USERDATAIMAGE_PARTITION_SIZE := 0x0d020000

    The correct value should be
    # Boot image size is 16384 x 512 bytes = 8388608
    # You can double check it with fdisk -l /dev/block/mmcblk0p9
    BOARD_BOOTIMAGE_PARTITION_SIZE := 0x00800000
    # Recovery image size is 10240 x 512 bytes = 5242880
    # You can double check it with fdisk -l /dev/block/mmcblk0p8
    BOARD_RECOVERYIMAGE_PARTITION_SIZE := 0x00500000
    # System image size is 1228800 x 512 bytes = 629145600
    # You can double check it with fdisk -l /dev/block/mmcblk0p2
    BOARD_SYSTEMIMAGE_PARTITION_SIZE := 0x25800000
    # User data image size is 4194304 x 512 bytes = 2147483648
    # You can double check it with fdisk -l /dev/block/mmcblk0p6
    BOARD_USERDATAIMAGE_PARTITION_SIZE := 0x80000000

    I know that someone has said the mmcblk0p* size is in 2048 bytes / unit before, however it is wrong as most of the partitions on mmcblk0 are using 512 bytes / unit only. btw I am trying to dump the pit file out of the device ... wish me luck for that :)

    In addition, this is the recovery.fstab that someone provided to me (and I have confirmed that it should be right)
    # mount point fstype device [device2]

    /efs ext4 /dev/block/mmcblk0p1
    /system ext4 /dev/block/mmcblk0p2
    /cache ext4 /dev/block/mmcblk0p3
    /sdcard vfat /dev/block/mmcblk0p4
    /misc emmc /dev/block/mmcblk0p5
    /data ext4 /dev/block/mmcblk0p6
    /recovery emmc /dev/block/mmcblk0p8
    /boot emmc /dev/block/mmcblk0p9
    /prebuilt ext4 /dev/block/mmcblk0p11
    /sd-ext vfat /dev/block/mmcblk1p1