21st April 2012, 01:04 AM
Recognized Developer
Thanks Meter
1143
Posts: 916
Join Date: Mar 2010
Location: Bologna
DONATE TO ME
Quote:
Originally Posted by
amarullz
For you who have trouble with calibration tools result. I try new method named Matrix Calibration. It's only need 3 sample left-top, right-center, center-bottom. But the calibration data is more complex: 7 Floating point + 1 flag.
Please for user with device like sgs2, can you try the latest AROMA Filemanager Test:
http://www.amarullz.com/_downloads/n...ng/aromafm.zip
It contains new calibration method. If it works better than conventional calibration, I will add it in AROMA Installer.
This new calibration method works better than previous. But filemanager its currently too sensible at touch. Let me know if I can help in any way...
Sent from my GT-I9100 using xda premium
21st April 2012, 01:22 AM
Recognized Developer -
OP
Thanks Meter
4250
Posts: 917
Join Date: Jan 2007
Location: Bandung
DONATE TO ME
Quote:
Originally Posted by
Bologna
This new calibration method works better than previous. But filemanager its currently too sensible at touch. Let me know if I can help in any way...
Sent from my GT-I9100 using xda premium
What do you mean "too sensible"? (did you use alternative method?)
21st April 2012, 01:24 AM
Recognized Developer
Thanks Meter
5375
Posts: 2,861
Join Date: Sep 2008
Location: Hamilton
DONATE TO ME
Quote:
Originally Posted by
moddroid
i put the current boot.img in the mkbootimg folder and run the command, right? thank you very much
Here's how I do it in my ROM:
Code:
run_program("/sbin/busybox", "mkdir", "/temp");
#####################################################################################################################################
# Anryl 10.07
#
ifelse (file_getprop("/tmp/aroma/tweaks.prop","selected.1") == "5" || file_getprop("/tmp/aroma/kernel.prop","selected.1") == "5",(
ui_print("@Installing Anryl 10.07 Kernel");
ui_print(" Extracting kernel module");
package_extract_dir("Custom/Kernels/Anryl10.07/kernel", "/temp");
ui_print(" Extracting lib modules");
package_extract_dir("Custom/Kernels/Anryl10.07/system","/system");
));
#####################################################################################################################################
# Anthrax RLS001a
#
ifelse (file_getprop("/tmp/aroma/tweaks.prop","selected.1") == "6" || file_getprop("/tmp/aroma/kernel.prop","selected.1") == "6",(
ui_print("@Installing Anthrax RLS001a Kernel");
ui_print(" Extracting kernel module");
package_extract_dir("Custom/Kernels/AnthraxRLS001a/kernel", "/temp");
ui_print(" Extracting lib modules");
package_extract_dir("Custom/Kernels/AnthraxRLS001a/system","/system");
));
#####################################################################################################################################
# Kernel Tools
#
ui_print(" Extracting tools");
package_extract_dir("Custom/Kernels/Tools", "/temp");
set_perm(0, 0, 0777, "/temp/dump_image");
set_perm(0, 0, 0777, "/temp/mkbootimg.sh");
set_perm(0, 0, 0777, "/temp/mkbootimg");
set_perm(0, 0, 0777, "/temp/unpackbootimg");
#####################################################################################################################################
# Kernel Packaging
#
ui_print(" Packaging zImage");
run_program("/temp/dump_image", "boot", "/temp/boot.img");
run_program("/temp/unpackbootimg", "/temp/boot.img", "/temp/");
run_program("/temp/mkbootimg.sh");
#####################################################################################################################################
# Kernel Flashing
#
ui_print(" Flashing boot.img");
write_raw_image("/temp/newboot.img", "boot");
#####################################################################################################################################
# Kernel Copy for S-ON users
#
ui_print(" Copying kernel to /sdcard/KingCobra3D/Kernel/boot.img");
run_program("/sbin/busybox", "mkdir", "/sdcard/KingCobra3D/Kernel");
run_program("/sbin/busybox", "cp", "/temp/newboot.img", "/sdcard/KingCobra3D/Kernel/boot.img");
21st April 2012, 02:30 AM
Senior Member
Thanks Meter
219
Posts: 253
Join Date: Feb 2012
How i can merge mi rom in aroma?? I develop for LG P500 is posibble??
21st April 2012, 07:45 AM
Recognized Contributor
Thanks Meter
1716
Posts: 546
Join Date: Apr 2011
Location: Inside my house
DONATE TO ME
@ amarullz,
Hi, I managed to have the screenshots inside AROMA now.
I was able to figure out that I need to mount the /data to be able to have the screenshots working.
My ROM is getting great with AROMA. Here :
http://forum.xda-developers.com/show....php?t=1473592
You may now add my ROM in the list.
Thanks again amarullz.
21st April 2012, 09:34 AM
Member
Thanks Meter
45
Posts: 79
Join Date: Apr 2012
Location: alessandria
Quote:
Originally Posted by
Turge
Here's how I do it in my ROM:
Code:
run_program("/sbin/busybox", "mkdir", "/temp");
#####################################################################################################################################
# Anryl 10.07
#
ifelse (file_getprop("/tmp/aroma/tweaks.prop","selected.1") == "5" || file_getprop("/tmp/aroma/kernel.prop","selected.1") == "5",(
ui_print("@Installing Anryl 10.07 Kernel");
ui_print(" Extracting kernel module");
package_extract_dir("Custom/Kernels/Anryl10.07/kernel", "/temp");
ui_print(" Extracting lib modules");
package_extract_dir("Custom/Kernels/Anryl10.07/system","/system");
));
#####################################################################################################################################
# Anthrax RLS001a
#
ifelse (file_getprop("/tmp/aroma/tweaks.prop","selected.1") == "6" || file_getprop("/tmp/aroma/kernel.prop","selected.1") == "6",(
ui_print("@Installing Anthrax RLS001a Kernel");
ui_print(" Extracting kernel module");
package_extract_dir("Custom/Kernels/AnthraxRLS001a/kernel", "/temp");
ui_print(" Extracting lib modules");
package_extract_dir("Custom/Kernels/AnthraxRLS001a/system","/system");
));
#####################################################################################################################################
# Kernel Tools
#
ui_print(" Extracting tools");
package_extract_dir("Custom/Kernels/Tools", "/temp");
set_perm(0, 0, 0777, "/temp/dump_image");
set_perm(0, 0, 0777, "/temp/mkbootimg.sh");
set_perm(0, 0, 0777, "/temp/mkbootimg");
set_perm(0, 0, 0777, "/temp/unpackbootimg");
#####################################################################################################################################
# Kernel Packaging
#
ui_print(" Packaging zImage");
run_program("/temp/dump_image", "boot", "/temp/boot.img");
run_program("/temp/unpackbootimg", "/temp/boot.img", "/temp/");
run_program("/temp/mkbootimg.sh");
#####################################################################################################################################
# Kernel Flashing
#
ui_print(" Flashing boot.img");
write_raw_image("/temp/newboot.img", "boot");
#####################################################################################################################################
# Kernel Copy for S-ON users
#
ui_print(" Copying kernel to /sdcard/KingCobra3D/Kernel/boot.img");
run_program("/sbin/busybox", "mkdir", "/sdcard/KingCobra3D/Kernel");
run_program("/sbin/busybox", "cp", "/temp/newboot.img", "/sdcard/KingCobra3D/Kernel/boot.img");
thanks cobra
21st April 2012, 11:11 AM
Member
Thanks Meter
45
Posts: 79
Join Date: Apr 2012
Location: alessandria
nothing installer tell me always status=6 :'(
21st April 2012, 11:24 AM
Forum Moderator
Thanks Meter
4787
Posts: 5,578
Join Date: Jul 2011
Location: Ellesmere Port
DONATE TO ME
Quote:
Originally Posted by
moddroid
i put the current boot.img in the mkbootimg folder and run the command, right? thank you very much
Extract the boot.img to tmp folder then run unpackbootimg.sh script, then run mkbootimg.sh the write raw image of boot.img is how I would do it
Sent from my Sensation using xda premium
HTC Sensation XE with Beats Audio Z715e
21st April 2012, 12:37 PM
Member
Thanks Meter
45
Posts: 79
Join Date: Apr 2012
Location: alessandria
Quote:
Originally Posted by
Jonny
Extract the boot.img to tmp folder then run unpackbootimg.sh script, then run mkbootimg.sh the write raw image of boot.img is how I would do it
Sent from my Sensation using xda premium
this is the i use:
Code:
if
file_getprop("/tmp/aroma-data/kernel.prop","selected.1) == "3"
then
ui_print(" install harsh kernel");
run_program("/sbin/busybox", "mkdir", "/temp");
package_extract_dir("customize/kernel/harsh/system", "/");
package_extract_dir("customize/kernel/harsh/kernel", "/temp");
set_perm(0, 0, 0777, "/temp/dump_image");
set_perm(0, 0, 0777, "/temp/mkbootimg.sh");
set_perm(0, 0, 0777, "/temp/mkbootimg");
set_perm(0, 0, 0777, "/temp/unpackbootimg");
run_program("/sbin/busybox", "cp", "/boot.img", "/temp");
run_program("/temp/unpackbootimg", "/temp/boot.img", "/temp/");
run_program("/temp/mkbootimg.sh");
write_raw_image("/temp/newboot.img", "boot");
run_program("sbin/busybox", "mv", "[-f]", "/temp/newboot.img", "boot.img");
package_extract_file("boot.img", "/dev/block/mmcblk0p5");
endif;
is right?
21st April 2012, 02:10 PM
(Last edited by varun.chitre15; 21st April 2012 at 02:33 PM .)
Recognized Contributor / Recognized Developer
Thanks Meter
4806
Posts: 2,225
Join Date: Oct 2011
Location: Sangli
DONATE TO ME
@amarullz
Sorry for very late reply
Here is shot of file manager on Micromax A60 in which framebuffer prob was there
This time even big dialog boxes are fixed!!!!
Thanks but text looks too small, can u increase it by a very very little extent? rest everything is fixed now and u can make new aroma with these changes along with very little increment in text size
However touch is not working neither in Micromax A70 nor on Micromax A60 so any solution for this?
Thanks
You can buy me a coffee by donating me
Thread Tools
Search this Thread
Display Modes
Linear Mode
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Go to top of page...
Most Thanked In This Thread
298 Downloads & Resources FOR ROM CHEFS …191 AROMA Installer Resources 156 About AROMA Installer BackgroundAndroid …116 Customizing AROMA Installer 109 Functions Reference CONFIGURATION …
3 I was just wondering one
thing. Why is … 2 (quote)
if
… 2 (quote) "Bloatware
Installation", 2, … 1 (quote)
u have to
rewrite the update … 1 (quote) In the Injector.sh
script, I …