TS
Gfivers
[OFFICIAL LOUNGE] GALAXY 5 ( GT - i5503 / GT - i5500 )
![[OFFICIAL LOUNGE] GALAXY 5 ( GT - i5503 / GT - i5500 )](https://s.kaskus.id/images/2012/07/11/2756935_20120711014046.png)
Quote:
>>>>PENGGUNA GALAXY 5 ? BERGABUNGLAH DENGAN KOMUNITAS KAMI ! GALAXY 5 ANDA AKAN MERASAKAN SENSASI LUAR BIASA <<<<![[OFFICIAL LOUNGE] GALAXY 5 ( GT - i5503 / GT - i5500 )](https://s.kaskus.id/images/2012/07/21/2756935_20120721094049.jpg)
![[OFFICIAL LOUNGE] GALAXY 5 ( GT - i5503 / GT - i5500 )](https://s.kaskus.id/images/2012/07/21/2756935_20120721094049.jpg)
![[OFFICIAL LOUNGE] GALAXY 5 ( GT - i5503 / GT - i5500 )](https://s.kaskus.id/images/2012/06/11/2756935_20120611055204.jpg)
Quote:
KOMUNITAS GFIVERS INDONESIA
Spoiler for GOOGLE TALK CHATROOM untuk yang mau nanya2, curcol, ngelawak, ataupun yang lagi stress:
gfivers_aje@im.partych.at
cara gabung:
- harus punya id gtalk
:.- klik add friend, masukin gfivers_aje@im.partych.at
- tunggu sampe available atau warnanya berubah jadi ijo
- setelah ijo siahkan jojon eh join and chat :d. (ketik /join)
command" di group chat:
* /list = melihat siapa saja anggota dan yang online pada saat itu.
* /alias nickname = ganti nickname
* /me perbuatan = contoh /me bilang room syapii", nanti terlihat di room [nickname] room syapii".
Spoiler for GFIVERS INDONESIA Group on Facebook:
Spoiler for GFIVERS INDONESIA Group on Twitter:
Spoiler for Indonesian GFIVERS on MADTeam Official Site:
Spoiler for GFIVERS INDONESIA BLOG:
" Bagi kami tidak ada istilah MASTAHatau NEWBIE, kami semua disini belajar dan bekerja sama sebagai tim untuk kemajuan G5 kami "
![[OFFICIAL LOUNGE] GALAXY 5 ( GT - i5503 / GT - i5500 )](https://dl.kaskus.id/a2.sphotos.ak.fbcdn.net/hphotos-ak-snc6/251627_1699059486081_1525715078_31407235_7125780_n.jpg)
![[OFFICIAL LOUNGE] GALAXY 5 ( GT - i5503 / GT - i5500 )](https://s.kaskus.id/images/2012/11/07/2756935_20121107090942.png)
Diubah oleh Gfivers 07-11-2012 09:09
0
127.9K
Kutip
6.4K
Balasan
Komentar yang asik ya
Mari bergabung, dapatkan informasi dan teman baru!
Android
29.7KThread•18.5KAnggota
Tampilkan semua post
TS
Gfivers
#36
modifikasi rom froyo G5
Spoiler for originaly posted by sultan.jawer - Custom ROM Tutorial:
gan, ada yang bisa terjemahkan ini ke bahasa indonesia
link asli dari sini (tadi ada di thread ini, lupa page berapa, ):
Code:
Code:
http://www.heypasteit.com/clip/RUS
Quote:
Hey everyone, bellow some tips on how to create custom roms based on the I5500LAR0JP2 for the Galaxy 5
FOR ODIN HOWTO LOOK @ THEEND
First of all we have to understand whats inside the file
amms (dont know)
boot.img (boot configuration files, basic system and kernel image)
recovery.img (same as boot.img but in recoverymode, untoched)
csc.rfs (some phone configurations and applications, works like a update.zip on top of system.rfs)
system.rfs (all the system files, aplications and framework, also contains the bootanimation)
Bellow there are commands and procedures
The $ before the commands demonstrates to be run under linux
The c:\ before the commands demonstrates to be run under windows dos prompt
1- Extracting and odin build
$ tar xvf ODIN_FILE.tar or $ tar xvf ODIN_FILE.tar.md5 (The md5 doesnt change the extraction)
2- Rebuilding and odin build
$ tar -H ustar -c amss boot.img csc.rfs recovery.img system.rfs >ODIN_FILE.tar
$ md5sum -t ODIN_FILE.tar >>ODIN_FILE.tar (signing the file)
$ mv ODIN_FILE.tar ODIN_FILE.tar.md5 (Changing to md5 format)
to rar the file use:$ rar a -m5 ODIN_FILE.tar.md5.rar ODIN_FILE.tar.md5
3- Extracting boot.img files
Download the "tools"
http://www.multiupload.com/SQUT3ZXJ1R
$ /tools_folder/unpackbootimg -i boot.img -o ./ (this will extract all the files inside the boot.img, i recomend an empty folder)
4- Packing the boot.img files
$ mkbootimg --kernel boot.img-zImage --ramdisk boot.img-ramdisk.gz --base 00200000 --pagesize 00001000 -o boot.img
5- Extracting the Ramdisk file
$ mkdir ramdisk;cd ramdisk
$ gunzip -c ../boot.img-ramdisk.gz | cpio -i
6- Packing the ramdisk file
$ find . | cpio -o -H newc | gzip > ../boot.img-ramdisk.gz (inside the ramdisk folder)
7- How to access the system.rfs
The system.rfs is a vfat based file system, you can mount it on the linux machine if vfat and loop is enabled on the kernel
$ mkdir system_mount
$ mount -o loop system.rfs system_mount
8- Changing, adding or removing applications from the base system
If you want to add, remove or change the applications installed as "default" you can mount the system.rfs (check step #7) then enter the app folder and modify the apps
$ mkdir system_mount
$ mount -o loop system.rfs system_mount
$ cp /folder/application.apk system_mount/app/ (adding aplications)
$ rm system_mount/app/application.apk (removing applications)
$ cp /folder/application.apk system_mount/app/application.apk (replacing aplications)
TIPS:
Dont use 2 files of the same aplication
Dont forget to unmount the folder before packing ($ umount system_mount)
To repack everything again use step #2
9- Kernel Compilation Howto
download the toolchain: http://www.multiupload.com/ZSMFCAFA53
downlaod the config file: http://www.multiupload.com/AXRK2IAK0S
downlaod the kernel fix
download kernel 2.6.29 sources ftp://ftp.kernel.org/pub/linux/kerne...2.6.29.tar.bz2
download the latest kernel source code for the galaxy 5 on the samsung website (opensource.samsung.com)
extract the sources
$ unzip GT-I5500-XXXXX.zip
$ unzip GT-I5500_OpenSource_Kernel.zip
"Fix" the wrong file formating and copy the config image
$ cd kernel
$ find . -type f -name \u2018*\u2019 -exec dos2unix {} \;
$ cp /folder/config2 ./.config
fix the iptables files by using the fix and original kernel sources
$ tar jxvf linux-2.6.29.tar.bz2
$ cd linux-2.6.29
$ cp /folder/fix ./
$ chmod x fix
$ ./fix samsung_kernel_folder
extract the toolchain
$ mkdir toolchain
$ cd toolchain
$ tar jxvf toolchain.tar.bz2
enter the kernel folder and build it
$ cd samsung_kernel_folder
$ make ARCH=arm CROSS_COMPILE=/toolchainfolder/bin/arm-eabi- -j2
$ make ARCH=arm CROSS_COMPILE=/toolchainfolder/bin/arm-eabi- modules_install
the kernel zImage is located in arch/arm/boot/zImage
the modules are located inside /lib/modules/2.6.29-perf/
to "package" the kernel image inside the boot.img do
$ cp arch/arm/boot/zImage /folder/unpackedbootimg/boot.img-zImage
$ cd /lib/modules/2.6.29-perf
$ cp `find ./ -iname *.ko` /folder/unpackedbootimg/ramdisk/lib/modules
pack the ramdisk (step #6)
pack the boot.img (step #4)
pack the odin package (step #2)
done
@THEEND
Preparation
1) Backup everything you needed
2) Download the STABLE ROM and Odin v4.28 and Ops file from here http://www.multiupload.com/TUTHCVEDIC
3) Install KIES
4) Reset your phone first to prevent problem use the following code *#*#7780#*#*
Flashing
Run ODIN Downloader
Select OPS tab: EUROPA_I5508_v1.0.ops
Check One Package, Auto Reboot and Protect Ops
Select the STABLE ROM from where you have extracted
Turn off your phone and remove the battery for 5 seconds
Hold Volume Down Button Center Home Button Power Button (End Call button). You should be in download mode now
Connect your phone to the pc using the USB cable. Install KIES if having driver problems.
If still get port connection errors, change the USB port
After install Drivers, close Kies
If the data line is successful, com port shows yellow in Odin
Click start, this process should takes about 5 minutes, your phone will reboot to FroYo itself. Dont panic and keep praying
If nothing happen, your phone should be able to reboot in FroYo and Odin will said flashing had PASS
Hard reset again after flashing by dialing *2767*3855#
Credits: samfirmware.com
FOR ODIN HOWTO LOOK @ THEEND
First of all we have to understand whats inside the file
amms (dont know)
boot.img (boot configuration files, basic system and kernel image)
recovery.img (same as boot.img but in recoverymode, untoched)
csc.rfs (some phone configurations and applications, works like a update.zip on top of system.rfs)
system.rfs (all the system files, aplications and framework, also contains the bootanimation)
Bellow there are commands and procedures
The $ before the commands demonstrates to be run under linux
The c:\ before the commands demonstrates to be run under windows dos prompt
1- Extracting and odin build
$ tar xvf ODIN_FILE.tar or $ tar xvf ODIN_FILE.tar.md5 (The md5 doesnt change the extraction)
2- Rebuilding and odin build
$ tar -H ustar -c amss boot.img csc.rfs recovery.img system.rfs >ODIN_FILE.tar
$ md5sum -t ODIN_FILE.tar >>ODIN_FILE.tar (signing the file)
$ mv ODIN_FILE.tar ODIN_FILE.tar.md5 (Changing to md5 format)
to rar the file use:$ rar a -m5 ODIN_FILE.tar.md5.rar ODIN_FILE.tar.md5
3- Extracting boot.img files
Download the "tools"
http://www.multiupload.com/SQUT3ZXJ1R
$ /tools_folder/unpackbootimg -i boot.img -o ./ (this will extract all the files inside the boot.img, i recomend an empty folder)
4- Packing the boot.img files
$ mkbootimg --kernel boot.img-zImage --ramdisk boot.img-ramdisk.gz --base 00200000 --pagesize 00001000 -o boot.img
5- Extracting the Ramdisk file
$ mkdir ramdisk;cd ramdisk
$ gunzip -c ../boot.img-ramdisk.gz | cpio -i
6- Packing the ramdisk file
$ find . | cpio -o -H newc | gzip > ../boot.img-ramdisk.gz (inside the ramdisk folder)
7- How to access the system.rfs
The system.rfs is a vfat based file system, you can mount it on the linux machine if vfat and loop is enabled on the kernel
$ mkdir system_mount
$ mount -o loop system.rfs system_mount
8- Changing, adding or removing applications from the base system
If you want to add, remove or change the applications installed as "default" you can mount the system.rfs (check step #7) then enter the app folder and modify the apps
$ mkdir system_mount
$ mount -o loop system.rfs system_mount
$ cp /folder/application.apk system_mount/app/ (adding aplications)
$ rm system_mount/app/application.apk (removing applications)
$ cp /folder/application.apk system_mount/app/application.apk (replacing aplications)
TIPS:
Dont use 2 files of the same aplication
Dont forget to unmount the folder before packing ($ umount system_mount)
To repack everything again use step #2
9- Kernel Compilation Howto
download the toolchain: http://www.multiupload.com/ZSMFCAFA53
downlaod the config file: http://www.multiupload.com/AXRK2IAK0S
downlaod the kernel fix
download kernel 2.6.29 sources ftp://ftp.kernel.org/pub/linux/kerne...2.6.29.tar.bz2
download the latest kernel source code for the galaxy 5 on the samsung website (opensource.samsung.com)
extract the sources
$ unzip GT-I5500-XXXXX.zip
$ unzip GT-I5500_OpenSource_Kernel.zip
"Fix" the wrong file formating and copy the config image
$ cd kernel
$ find . -type f -name \u2018*\u2019 -exec dos2unix {} \;
$ cp /folder/config2 ./.config
fix the iptables files by using the fix and original kernel sources
$ tar jxvf linux-2.6.29.tar.bz2
$ cd linux-2.6.29
$ cp /folder/fix ./
$ chmod x fix
$ ./fix samsung_kernel_folder
extract the toolchain
$ mkdir toolchain
$ cd toolchain
$ tar jxvf toolchain.tar.bz2
enter the kernel folder and build it
$ cd samsung_kernel_folder
$ make ARCH=arm CROSS_COMPILE=/toolchainfolder/bin/arm-eabi- -j2
$ make ARCH=arm CROSS_COMPILE=/toolchainfolder/bin/arm-eabi- modules_install
the kernel zImage is located in arch/arm/boot/zImage
the modules are located inside /lib/modules/2.6.29-perf/
to "package" the kernel image inside the boot.img do
$ cp arch/arm/boot/zImage /folder/unpackedbootimg/boot.img-zImage
$ cd /lib/modules/2.6.29-perf
$ cp `find ./ -iname *.ko` /folder/unpackedbootimg/ramdisk/lib/modules
pack the ramdisk (step #6)
pack the boot.img (step #4)
pack the odin package (step #2)
done
@THEEND
Preparation
1) Backup everything you needed
2) Download the STABLE ROM and Odin v4.28 and Ops file from here http://www.multiupload.com/TUTHCVEDIC
3) Install KIES
4) Reset your phone first to prevent problem use the following code *#*#7780#*#*
Flashing
Run ODIN Downloader
Select OPS tab: EUROPA_I5508_v1.0.ops
Check One Package, Auto Reboot and Protect Ops
Select the STABLE ROM from where you have extracted
Turn off your phone and remove the battery for 5 seconds
Hold Volume Down Button Center Home Button Power Button (End Call button). You should be in download mode now
Connect your phone to the pc using the USB cable. Install KIES if having driver problems.
If still get port connection errors, change the USB port
After install Drivers, close Kies
If the data line is successful, com port shows yellow in Odin
Click start, this process should takes about 5 minutes, your phone will reboot to FroYo itself. Dont panic and keep praying
If nothing happen, your phone should be able to reboot in FroYo and Odin will said flashing had PASS
Hard reset again after flashing by dialing *2767*3855#
Credits: samfirmware.com
ana enggak ngerti bahasanya, ditambah linux pula...
agan mastah semua, ajarin dunk bahasa linux nya...
...mohon pencerahan...
Spoiler for Cara membongkar file system.rfs di windows:
jika dilihat didalam file one package yang biasa kita flash terdapat beberapa file yang berformat rfs ( R.... file system ), file bertype itu sebenarnya sama dengan file image data , seperti iso dll , dan dapat dimount dan dirubah isinya sama seperti file2 lain di explorer, cara itu dapat dilakukan dengan mudah di dalam OS linux, lalu bagaimana dengan os berbasis windows , jawabannya bisa namun butuh aplikasi third party
yang disebut magic iso , langkah2 untuk melakukaknnya dapat dilihat seperti dibawah ini :1. install magic iso (yang trial juga ga masalah)
2. buka magic iso
3. file - open (pada pilihan filetype pilih "All Files") pilih file system yang berformat .rfs
4. semua isi dari system.rfs akan terlihat
5. untuk merubah data dan menghapusnya tinggal extrack atau drag file yang anda ingin masukkan kedalam folder system tersebut

0
Kutip
Balas