Skip to content

WinKarbik/android_device_samsung_vivalto3gvn

 
 

Repository files navigation

Copyright 2014 - The CyanogenMod Project

Device configuration for Samsung Galaxy V SM-G313HZ (vivalto3gvn)

	instruction how to build

I think you already set up build enviroment so I will skip this. First go to your working dir/build/tools/device and open in gedit makerecoveries.sh Find line make -j16 recoveryzip and replace it with make recoveryzip beacause it wont eat your RAM and build will be faster

After you finshed repo sync go in your working dir/device/ and create folder /samsung/vivalto3gvn and copy content of vivalto3gvn that you downloaded from here.

For build recovery, run this command in terminal from your working dir

	. build/envsetup.sh
	lunch cm_vivalto3gvn-userdebug && make recoveryimage

Your build will start and you will find your recovery.img in your working dir/out/target/product/vivalto3gvn

To make it flashable via ODIN you have to make it recovery.tar.md5 Navigate with terminal where you save your recovey.img . For example cd android/out/target/product/vivalto3gvn where android is name of your working dir and run command:

	tar -H ustar -c recovery.img > recovery.tar
	md5sum -t recovery.tar >> recovery.tar
	mv recovery.tar recovery.tar.md5

An now you got recovery.tar.md5 ready to be flashed usin ODIN selected as PDA file

And for build rom, run this command in terminal from your working dir

	. build/envsetup.sh && brunch vivalto3gvn

Good luck and Happy building. (^_^)/

To apply patches for example: audio.patch got to frameworks/av copy the patch in that directory and open terminal and run command where 1st command is to apply patch and the 2nd for to revert the patches which applied earlier

	patch -p1 < audio.patch
	patch -R -p1 <audio.patch

About

Device tree for Samsung Galaxy V SM-G313HZ

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 84.8%
  • C++ 10.2%
  • Objective-C 4.4%
  • Other 0.6%