[HOW TO] Build AOSP based (4.2.x) Roms for i9305

Search This thread

vkggg

Member
Jan 6, 2013
33
13
Hello,
In this thread I will be compiling a list of tricks and techniques that I use to build roms for our phone.
I am not a developer, so some of the fixes in this may be bandaid-y and I may not be able to help will all errors, but I will post fixes for those that I have encountered.

This thread is a WIP and will be updated as I receive questions and encounter problems myself. This hopefully will be a good source of knowledge for those who are interested in compiling other roms for our phone, and from this hopefully we will see some more roms developed.

Building
First of all, the device trees. Thanks to codewerx, who has generously created a device tree we can use for our phone.
I would like to link you to the following guide, which instructs you on how to build AOSPA (formerly Paranoid Android).

http://xdaforums.com/showthread.php?t=1863547

You can follow this guide verbatim, as it is mostly laid out for i9300, however we must add this to the Manifest.xml rather than what he has provided.
Code:
  <remote  name="gh"
	   fetch="https://github.com/" />
  <project name="teamhacksung/android_device_samsung_i9305" path="device/samsung/i9305" remote="gh" revision="cm-10.1" />
  <project name="CyanogenMod/android_device_samsung_smdk4412-common" path="device/samsung/smdk4412-common" remote="gh" revision="cm-10.1" />
  <project name="CyanogenMod/android_kernel_samsung_smdk4412" path="kernel/samsung/smdk4412" remote="gh" revision="cm-10.1" />
 <project name="CyanogenMod/android_hardware_samsung" path="hardware/samsung" remote="gh" revision="cm-10.1" />
  <project name="TheMuppets/proprietary_vendor_samsung" path="vendor/samsung" remote="gh" revision="cm-10.1" />
  <project name="teamhacksung/proprietary_vendor_samsung_i9305" path="vendor/samsung/i9305" remote="gh" revision="cm-10.1" />
Check to see if any of these are already in your manifest, and remove them if they are.

To make sure that the correct RIL for phone support is included,
1. Navigate to your frameworks/opt/telephony folder.
2. Open a shell session in this folder.
3. Apply this change by codewerx http://review.cyanogenmod.org/#/c/31703/ by
4. Typing the following into terminal
Code:
git fetch http://review.cyanogenmod.org/CyanogenMod/android_frameworks_opt_telephony refs/changes/03/31703/1 && git cherry-pick FETCH_HEAD/[code]



[B]Fixes[/B]

If you encounter the following error:
[code]make: *** No rule to make target `/home/sam/RootBox/out/target/product/i9305/obj/SHARED_LIBRARIES/libTVOut_intermediates/export_includes', needed by `/home/sam/RootBox/out/target/product/i9305/obj/EXECUTABLES/mediaserver_intermediates/import_includes'.  Stop.
Navigate to vendor/samsung/smdk4412-common/proprietary, and open Android.mk
The reason we get this error is because the propietary files are not copied over properly, so we must edit the line in Android.mk which resembles
Code:
ifneq ($(filter i9300 n7100 n8000 n8013,$(TARGET_DEVICE)),)
to
Code:
ifneq ($(filter i9300 [b]i9305[/b] n7100 n8000 n8013,$(TARGET_DEVICE)),)
 
Last edited:

perchrh

Member
May 13, 2012
18
8
Oslo
digitalsprouts.org
Thanks!
I was also able to build CyanogenMod 10.1 using your xml-excerpt.

The "Fixes" section turned out to be unnecessary, as they were already applied for CM.
The RIL-step is still necessary, though.
 

macdaa

New member
Nov 25, 2012
2
0
hey there...

nice work... but can you say me, how i can get the flac support back to my i9305 on aosp?!
 

Top Liked Posts

  • There are no posts matching your filters.
  • 4
    Hello,
    In this thread I will be compiling a list of tricks and techniques that I use to build roms for our phone.
    I am not a developer, so some of the fixes in this may be bandaid-y and I may not be able to help will all errors, but I will post fixes for those that I have encountered.

    This thread is a WIP and will be updated as I receive questions and encounter problems myself. This hopefully will be a good source of knowledge for those who are interested in compiling other roms for our phone, and from this hopefully we will see some more roms developed.

    Building
    First of all, the device trees. Thanks to codewerx, who has generously created a device tree we can use for our phone.
    I would like to link you to the following guide, which instructs you on how to build AOSPA (formerly Paranoid Android).

    http://xdaforums.com/showthread.php?t=1863547

    You can follow this guide verbatim, as it is mostly laid out for i9300, however we must add this to the Manifest.xml rather than what he has provided.
    Code:
      <remote  name="gh"
    	   fetch="https://github.com/" />
      <project name="teamhacksung/android_device_samsung_i9305" path="device/samsung/i9305" remote="gh" revision="cm-10.1" />
      <project name="CyanogenMod/android_device_samsung_smdk4412-common" path="device/samsung/smdk4412-common" remote="gh" revision="cm-10.1" />
      <project name="CyanogenMod/android_kernel_samsung_smdk4412" path="kernel/samsung/smdk4412" remote="gh" revision="cm-10.1" />
     <project name="CyanogenMod/android_hardware_samsung" path="hardware/samsung" remote="gh" revision="cm-10.1" />
      <project name="TheMuppets/proprietary_vendor_samsung" path="vendor/samsung" remote="gh" revision="cm-10.1" />
      <project name="teamhacksung/proprietary_vendor_samsung_i9305" path="vendor/samsung/i9305" remote="gh" revision="cm-10.1" />
    Check to see if any of these are already in your manifest, and remove them if they are.

    To make sure that the correct RIL for phone support is included,
    1. Navigate to your frameworks/opt/telephony folder.
    2. Open a shell session in this folder.
    3. Apply this change by codewerx http://review.cyanogenmod.org/#/c/31703/ by
    4. Typing the following into terminal
    Code:
    git fetch http://review.cyanogenmod.org/CyanogenMod/android_frameworks_opt_telephony refs/changes/03/31703/1 && git cherry-pick FETCH_HEAD/[code]
    
    
    
    [B]Fixes[/B]
    
    If you encounter the following error:
    [code]make: *** No rule to make target `/home/sam/RootBox/out/target/product/i9305/obj/SHARED_LIBRARIES/libTVOut_intermediates/export_includes', needed by `/home/sam/RootBox/out/target/product/i9305/obj/EXECUTABLES/mediaserver_intermediates/import_includes'.  Stop.
    Navigate to vendor/samsung/smdk4412-common/proprietary, and open Android.mk
    The reason we get this error is because the propietary files are not copied over properly, so we must edit the line in Android.mk which resembles
    Code:
    ifneq ($(filter i9300 n7100 n8000 n8013,$(TARGET_DEVICE)),)
    to
    Code:
    ifneq ($(filter i9300 [b]i9305[/b] n7100 n8000 n8013,$(TARGET_DEVICE)),)
    1
    Thanks!
    I was also able to build CyanogenMod 10.1 using your xml-excerpt.

    The "Fixes" section turned out to be unnecessary, as they were already applied for CM.
    The RIL-step is still necessary, though.

    I wrote a similar guide for CM, see http://xdaforums.com/showthread.php?t=2164954