I have figured out possible cause of HTC Camera not working in 5MP mode. I don't have complete dev environment setup hence posting here for someone to fix it in the kernel and try it out.
HTC Camera application gets its capabilities about number of megapixels from /sys/android_camera/sensor file, this file is not created by the current set of kernels.
I looked at Desire kernel source and found out, it in fact has calls to create this file in sysfs. So I believe following code will fix the 5MP camera issue.
In kernel source files /drivers/media/video/msm/s5k3e2fx.c following needs to done,
1) Add functions to create the sensor file.
Code:
static const char *s5k3e2fxVendor = "Samsung";
static const char *s5k3e2fxNAME = "s5k3e2fx";
static const char *s5k3e2fxSize = "5M";
static ssize_t sensor_vendor_show(struct device *dev,
struct device_attribute *attr, char *buf)
{
ssize_t ret = 0;
sprintf(buf, "%s %s %s\n", s5k3e2fxVendor, s5k3e2fxNAME, s5k3e2fxSize);
ret = strlen(buf) + 1;
return ret;
}
static DEVICE_ATTR(sensor, 0444, sensor_vendor_show, NULL);
static struct kobject *android_s5k3e2fx;
static int s5k3e2fx_sysfs_init(void)
{
int ret ;
pr_info("s5k3e2fx:kobject creat and add\n");
android_s5k3e2fx = kobject_create_and_add("android_camera", NULL);
if (android_s5k3e2fx == NULL) {
pr_info("s5k3e2fx_sysfs_init: subsystem_register " \
"failed\n");
ret = -ENOMEM;
return ret ;
}
pr_info("s5k3e2fx:sysfs_create_file\n");
ret = sysfs_create_file(android_s5k3e2fx, &dev_attr_sensor.attr);
if (ret) {
pr_info("s5k3e2fx_sysfs_init: sysfs_create_file " \
"failed\n");
kobject_del(android_s5k3e2fx);
}
return 0 ;
}
2) In funtion s5k3e2fx_sensor_probe.. Add call to the above function just before last line i.e. return rc;
Code:
s5k3e2fx_sysfs_init();
return rc;
Hope some Devs can try this out and fix the kernel.
if this solves the 5mp mode.....
perhaps you can also look for 720p videomode?
sry, this shouldnt sound cocky, but i cant thank for the fix, because i dont know anything about it
but thx for the try, hope it works
BlackPit666 said:
if this solves the 5mp mode.....
perhaps you can also look for 720p videomode?
sry, this shouldnt sound cocky, but i cant thank for the fix, because i dont know anything about it
but thx for the try, hope it works
Click to expand...
Click to collapse
what he said ^
Nice,and nice to see that the forum members stick the brains together (if that is good english lol)
Hope it works for a dev who can test it,windows pro,but a linux noob here lol
http://irclog.netripper.com/?chan=htc-linux&day=16
Scroll down to the bottom as they tested and it works <3
it works, people confirms in irc. thnx arva.
yep it is nice to see that members help in development, last day somebody helped fixing premature flash in camera wow now 5 mp camera and let see if somebody is else say that xda dont work in android development.
Thx for your hard work and sorry for my english
What is that mdeejay, What build have that?
m-deejay said:
Click to expand...
Click to collapse
@Mdeejay.. does that mean it works..
arva said:
I have figured out possible cause of HTC Camera not working in 5MP mode. I don't have complete dev environment setup hence posting here for someone to fix it in the kernel and try it out.
HTC Camera application gets its capabilities about number of megapixels from /sys/android_camera/sensor file, this file is not created by the current set of kernels.
I looked at Desire kernel source and found out, it in fact has calls to create this file in sysfs. So I believe following code will fix the 5MP camera issue.
In kernel source files /drivers/media/video/msm/s5k3e2fx.c following needs to done,
1) Add functions to create the sensor file.
...
Hope some Devs can try this out and fix the kernel.
Click to expand...
Click to collapse
Great Job Arva!
+1. nothing more to say!
THANKS ARVA!
A lot of kisses to you!
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
and mdeejay!
probleme still on desire dhd and Z
i'm a fan of mdeejay HD roms and i hope camera issue could be fixed soon as well... good work arva !
EclipseX said:
probleme still on desire dhd and Z
Click to expand...
Click to collapse
yeah. this patch only for "old" sense
m-deejay said:
yeah. this patch only for "old" sense
Click to expand...
Click to collapse
hope you are updating your builds with this patch.. .the hastarin flash fix and this patch will make them PERFECT! (also if they are already so)
Or anyone could say me how to apply this patch? I'm using the FroyoSense Clean 1.1
Anyway thanks and love to ARVA that discovered it...
m-deejay said:
Click to expand...
Click to collapse
Can someone explaine to me how 2592x1552 = 5MP? I must be missing something, because when I do the math that = 4.02MP
wow you are right....
the google camera does 2592x1944.....so there must be a mistake in the fix
schoei1 said:
Can someone explaine to me how 2592x1552 = 5MP? I must be missing something, because when I do the math that = 4.02MP
Click to expand...
Click to collapse
5:3 = 2592x1552
4:3 = 2592x1952
Related
Hi everybody
looking around to find out what is the status of HTC concerning a probably new drivers release for the devices with Qualcomm 7200 chipset and i've found the file below, which should contain a new User Interface code name MANILA.
I'm sure most of you hear about it.
Well, i've been trying to install the file, but in some way i don't get it, even if I edit the cab and write a new setup.xml. May be because I have the Original O2 ROM on my Orbit 2, i'm not sure at all
Could some of you try if the install works on your cooked HTC Roms ??
Download link:
http://rapidshare.com/files/87585343/manila.1.0.0103.0.release.zip.html
Click to expand...
Click to collapse
THX in advance
Metanol
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Updated...!!!!
Link Invalid
please re-upload the link as its invalid
wrong url adres
go it ..the link is http://rapidshare.com/files/87504139/manila.1.0.0103.0.release.zip
Try this link.
http://www.megaupload.com/?d=G5X13UZF
Can someone provide more screenshots?
Thx
wellthe m9 files in the HTC directory looks like xml + code (LUA perhaps?). In the manila\manila.xml file it has this line 'Mode9Path="HTC\home.m9?testParam=1" ' but there is no testParam in home.m9... could try removing that and trying again. Did you remove all today items before running this? I'm at work so just looking through the files, havent had a chance to test yet.
There's a cab here:
http://htcinsider.blogspot.com/2008/01/manila-arrives.html
YMMV
Vinny75 said:
wellthe m9 files in the HTC directory looks like xml + code (LUA perhaps?). In the manila\manila.xml file it has this line 'Mode9Path="HTC\home.m9?testParam=1" ' but there is no testParam in home.m9... could try removing that and trying again. Did you remove all today items before running this? I'm at work so just looking through the files, havent had a chance to test yet.
Click to expand...
Click to collapse
exactly LUA language is inside, e.g.:
-- Adapted from class function at http://lua-users.org/wiki/SimpleLuaClasses
function __class_ctor(class_tbl, ...)
local obj = {};
setmetatable(obj, class_tbl);
if (class_tbl.__init) then
class_tbl.__init(obj, ...);
else
if class_tbl._base and class_tbl._base.__init then
class_tbl._base.__init(obj, ...);
end
end
return obj;
end
function class(base)
local c = {};
if type(base) == 'table' then
-- Shallow copy of base, including all functions and properties.
for i,v in pairs(base) do
c = v;
end
c._base = base;
end
c.__index = c;
local mt = {};
mt.__call = __class_ctor;
setmetatable(c, mt);
return c;
end
Click to expand...
Click to collapse
I was trying to remove some files too during the pause, but I'm in the office too.
it tells me that htc home has been closed unexpectedly
also discussed here
i think they are already dissecting and mutating the cab file (from the link above: htcinsider) to be used on our devices..
http://forum.xda-developers.com/showthread.php?t=363500
wish there would be more screenies for this..
also, that's a cool name.. coz, i'm from MANILA.. hehehe..
When I first read the thread title.. I thought.. WTF?!
Oh.. so it's a new interface.. I thought it was something from here.
I live in Manila too.
Could somebody post some screenies? I'm getting really curious here.
DaVince said:
When I first read the thread title.. I thought.. WTF?!
Oh.. so it's a new interface.. I thought it was something from here.
I live in Manila too.
Could somebody post some screenies? I'm getting really curious here.
Click to expand...
Click to collapse
Just look better, I already posted some screenshots in the topic mentioned.
http://forum.xda-developers.com/showpost.php?p=1864343&postcount=15
http://forum.xda-developers.com/showpost.php?p=1864344&postcount=16
iruja said:
Just look better, I already posted some screenshots in the topic mentioned.
http://forum.xda-developers.com/showpost.php?p=1864343&postcount=15
http://forum.xda-developers.com/showpost.php?p=1864344&postcount=16
Click to expand...
Click to collapse
Yeah.. I already saw them after I posted.. I just didn't bother editing them anymore.
Too bad it's slow and works only on VGA. I guess it's for those future "video-centric" HTC devices (that I'm not going to buy). Maybe Eten will make better devices by then.
4 those who cant get it off rapidshare
Non RapidShare Link
good but not usable (to slow)
it seems to be a good application but very very very very slow.
it a vga compatible with libGLES_CM.dll in manila directories
manila youtube vid
http://msmobiles.com/news.php/7064.html
DaVince said:
Yeah.. I already saw them after I posted.. I just didn't bother editing them anymore.
Too bad it's slow and works only on VGA. I guess it's for those future "video-centric" HTC devices (that I'm not going to buy). Maybe Eten will make better devices by then.
Click to expand...
Click to collapse
if somebody who hv made it to work post all the sceenshot here, well i bet someone can make at least a flash ver of it
cruzzmz said:
if somebody who hv made it to work post all the sceenshot here, well i bet someone can make at least a flash ver of it
Click to expand...
Click to collapse
It doesn't work in my Universal (Ivan's 3.9 rom).
Not compatible with VGA?
After spending 2 days of work, the TyphoonLabs tutorials (http://www.khronos.org/developers/resources/opengles/) are successfully compiled & run on my Diamond.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Installation
Simply unzip the content to any folder, but the /resources folder and underneath files must be copied to root.
Instructions
After startup, click the top right corner cross or press the DPAD to quit.
Some demos will have different effect when tap the screen, just try it.
Enjoy!
Will try it out immediately!
As you can see in my sign I'm currently using Panosha ShineOn 1.6 ROM on my Diamond. I don't know if he changed any drivers or so in his ROM, but I can only initiate tutorial 1 + 2.
EDIT: ok, yeah... misread the instructions. Had to put it on the root on the storage card, not the internal memory.
Only 1 and 2 work.
Some do Nothing at all
Some give openGL ES init error.
Riel said:
Only 1 and 2 work.
Some do Nothing at all
Some give openGL ES init error.
Click to expand...
Click to collapse
I have the same effect
same here...
all seven worked out fine for me
i got stock 1.93 ROM
Just 1 & 2 For me, Stock 1.93 ROM
@ALL
If you can only run 1 & 2, make sure you have copied the folder \resources including the underneath files to root.
Amazing work.. Looks great. The resource should be on the root of the device and not the storage card.
Really nice, great work
Interesting,
on the last test (7) (as pictured in your first post) I get a FPS rating of 74/75
Nice work !
Only 1 and 2 work on my stock uk tmobile rom too?
A_C said:
Simply unzip the content to any folder, but the /resources folder and underneath files must be copied to root.
Click to expand...
Click to collapse
Had the same when I built them ages ago, couldn't seem to get relative filepaths working
Still having no joy with that ".\" is always root ?!?
Nice work A_C, I really hope you will be implementing this into your S2 applications, that would be amazing!
Very nice,
great work, looks real good.
PS.: At the last Tutorial, I have also over 70FPS.
greets doena
Magilla said:
Had the same when I built them ages ago, couldn't seem to get relative filepaths working
Still having no joy with that ".\" is always root ?!?
Click to expand...
Click to collapse
Windows Mobile does not seem to have a concept of "current working directory" when launching an application. It's pretty annoying.
I work around this using the following:
public static string CurrentWorkingDirectory
{
get
{
return Path.DirectoryName(Assembly.GetExecutingAssembliy().GetName().CodeBase);
}
}
Then use that directory to build relative directories...
Koush said:
Windows Mobile does not seem to have a concept of "current working directory" when launching an application. It's pretty annoying.
I work around this using the following:
public static string CurrentWorkingDirectory
{
get
{
return Path.DirectoryName(Assembly.GetExecutingAssembliy().GetName().CodeBase);
}
}
Then use that directory to build relative directories...
Click to expand...
Click to collapse
Thanks loads... much appreciated!
impressive!!!!
All work fine in root \
psc001 said:
Interesting,
on the last test (7) (as pictured in your first post) I get a FPS rating of 74/75
Nice work !
Click to expand...
Click to collapse
doena said:
Very nice,
great work, looks real good.
PS.: At the last Tutorial, I have also over 70FPS.
greets doena
Click to expand...
Click to collapse
I got that FPS too. The screenshot shows a lower no. because it's running a screen-capture program in the background.
Jin187 said:
Nice work A_C, I really hope you will be implementing this into your S2 applications, that would be amazing!
Click to expand...
Click to collapse
That's my dream.
Nice work A_C.
Thanks
I try to compile and execute these tutos. There's no pb to execute on emulator.
But when I try on my phone (HTC Touch Pro), it doesn't work.
When I try your .exe, A_C, there is no pb. Maybe I have a pb when I create the exe.
Could you help me ?
Thanks
Sorry to open a new thread but is any solution to that problem??
I search but i didn't find anything about that.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
IS IN ALL THE 6.5.X ROM'S
When you hit the button left from X when in you in phonepad and under an unknown number. Or if you take a call from a number isn't in your contact's.
I try to fix it but.....
Thank's btw for reading and i hope somebody come with a simple fix.
not sure if it's the right thing, but AMeBa has a settings tab for "Position Fix".
it's bundled with energy rom, under "Tools -> X Button Settings"
willr001 said:
not sure if it's the right thing, but AMeBa has a settings tab for "Position Fix".
it's bundled with energy rom, under "Tools -> X Button Settings"
Click to expand...
Click to collapse
I try the Ameba i also add in the positionfix tab the cprog.exe, but i get the same result's.
Is any 6.5.x rom with out that bug?
Thank's for your answer.
So there is no any kind of "fix" to that annoying problem??
All the rom's i try have the same "bug".
Thank's
Running a custom beta rom from user: LAurentius26.
3.x based, Com 5 23568.
Don't have this issue...
xmoo said:
Running a custom beta rom from user: LAurentius26.
3.x based, Com 5 23568.
Don't have this issue...
Click to expand...
Click to collapse
I just install the:
L26LEOV2.0_GoldEdition_213_WWE_23568_Default
from LAurentius26 and have the same problem.
I'm going to try and the: Laurentius26 GoldEdition V2.1 Default WWE 23568
ausdim said:
I just install the:
L26LEOV2.0_GoldEdition_213_WWE_23568_Default
from LAurentius26 and have the same problem.
I'm going to try and the: Laurentius26 GoldEdition V2.1 Default WWE 23568
Click to expand...
Click to collapse
it's a new one Has to be released!
Glad you found the issue. It really would be helpful if you were to include the phone you're using, and the rom. Short of editing the file you found, you might consider doing a task29 to completely wipe the phone, then doing a re-flash of the rom.
dipaolnv said:
Glad you found the issue. It really would be helpful if you were to include the phone you're using, and the rom. Short of editing the file you found, you might consider doing a task29 to completely wipe the phone, then doing a re-flash of the rom.
Click to expand...
Click to collapse
I use an regular EU hd2 HTC phone.
The problem is in every cooked 6.5.x ROM's and in ALL language's!!
I think user Lissek know how to resolve that kind of problem's (Look at that thread: http://forum.xda-developers.com/showpost.php?p=6258611&postcount=15249 he managed to decompile the file found the values with IDA and hexit the file.
I pm heam and see if whant to help...
Who knows maybe I can do that and I realy don't appriciate you're posting pm (private messages) of Xmoo in public.
We are still testing this rom and what we do is between the beta team and me untill it's finished.
Xmoo is a member of the beta team.
Hope you get banning points for public'ing our pm's. PM = Private Msg, read good... PRIVATE!!
xmoo said:
Hope you get banning points for public'ing our pm's. PM = Private Msg, read good... PRIVATE!!
Click to expand...
Click to collapse
Have sorted it.
WB
xmoo said:
Hope you get banning points for public'ing our pm's. PM = Private Msg, read good... PRIVATE!!
Click to expand...
Click to collapse
Why you guys so much discussion about it.
After xmoo say about the beta rom from Laurentius26 in public here , i made the post.
Then what is the main problem;
The word or sentence that made you angry with me?? Or what??
Also i make that post cause xmoo didnt come again to say it is not working and we take care about that or anything in public and i receive pm's from person's and say to have the answer in my thread.
So???
What is the meaning from this thread????
No one make the try to fix it cause all we whait the rom. ha..
If that is a reason from banning points then bann me...
The right was not to come xmoo here in public and said that finaly does not work; and that he was wrong; Or i'm stupid?
Anyway because I do not like what happened and is the first time I 'm in such a difficult position, I ask really sorry from user: xmoo and user: Laurentius26.
And finally here is the fix...
Many many thank's to user: ultrashot to point me in the right way...
The file have a complete fix for HD2 device's with 6.5.xx build's.
Have a fix for dialpad position and a fix for save to contacts position (i dont find that fix in any of cooked rom's so it's time) also a finally fix to the sip icon button. So ALL in one!!!!
ausdim said:
And finally here is the fix...
Click to expand...
Click to collapse
Did you forget to attach the file or the link for the download? I cannot find it in your post.
*DELETED"
iam afraid its not possible until we have Desire HD kernel source.
it is not possible sorry
Although its not possible yet its simple to recompile the module when we get the source from HTC
Sent from my Desire HD using XDA App
Hmm, you can try loading it at DHD's add via kallsyms.
Kernel source is not necessarily necessary, give me a /proc/kallsyms and I will see what I can do.
i gave u it on the 22nd
I'll get it now for you
Sent from my Desire HD using XDA App
here is my /proc/kallsyms
need anything else pls msg
http://rapidshare.com/files/426902796/kallsyms
Sorry about the R/S link its to big for the forum upload :-D
------ EDIT------
to save ppl looking
c006dff8 t perflock_notifier_call
c0554270 d acpu_freq_tbl
insmod /data/local/vision_oc.ko acpu_freq_tbl_addr=0xc0554270 perflock_notifier_call_addr=0xc006dff8
after issuing this command i get this error
insmod: init_module '/data/local/vision_oc.ko' failed (Exec format error)
sigh ....... was hoping a lil too much lol
:-D
looking forward to seeing how well the DHD will OC
The kernel source is up and I have no experience with building modules .... can someone build it or send me some info on building the kernel module.
Sent from my Desire HD using XDA App
Instructions
Apache14 said:
The kernel source is up and I have no experience with building modules .... can someone build it or send me some info on building the kernel module.
Sent from my Desire HD using XDA App
Click to expand...
Click to collapse
I believe that someone has posted the instructions in the G2 Forums but im not 100% sure, definitely worth a look tho.
Source...
Now that the source has been made available, I'm looking forward to seeing some serious OC!
http://forum.xda-developers.com/showthread.php?t=818679
Apache14 said:
insmod /data/local/vision_oc.ko acpu_freq_tbl_addr=0xc0554270 perflock_notifier_call_addr=0xc006dff8
after issuing this command i get this error
insmod: init_module '/data/local/vision_oc.ko' failed (Exec format error)
sigh ....... was hoping a lil too much lol
:-D
Click to expand...
Click to collapse
These are the address' I got after pulling them from my phone
acpu_freq_tbl_addr = 0xc0556270
perflock_notifier_call_addr = 0xc006dfbc
Are they meant to be different?
Thanks for the addresses guys. Apache14 also sent me the kernel localversion. Building it now, stay tuned.
EDIT: Seems as though there's more than one version of the Desire HD kernel out there. When insmodding you'll have to insert your own addresses if this is so (or your phone will most likely crash, or even more likely, you'll get an exec format error no matter how you load it).
teihoata: can you pull a /proc/version from that kernel?
http://dl.dropbox.com/u/36553/vision_oc-gbe90714.ko Module for 2.6.32.21-gbe90714
http://dl.dropbox.com/u/36553/vision_oc-g5ed1769.ko Module for 2.6.32.21-g5ed1769
Instructions are the same as here: http://forum.xda-developers.com/showthread.php?t=813681 except it defaults to 1.2GHz (pll2_l_val = 63).
coolbho3000 you are amazing !!!
http://twitpic.com/314t6j
Now to se how far I can go
[EDIT]
cant seem to go past 1.45Ghz ..... dont fancy over volting the CPU any more either but still ~450Mhz bump is crazy good 45% boost !!
Thank you so much coolbho3000 I have set up the overclock on my phone and it is very nice.
Ok found a lil "bug" dunno what causes it but if you load the OC module by a command to OC to say 1440MHz i.e
insmod /data/local/vision_oc-gbe90714.ko pll2_l_val=75
Click to expand...
Click to collapse
the phone will probably crash ...... but i have found if i load the module without the extra paramiter first and then unload it with "rmmod vision_oc.ko" it will run fine e.g
insmod /data/local/vision_oc-gbe90714.ko
then
rmmod vision_oc.ko
then
insmod /data/local/vision_oc-gbe90714.ko pll2_l_val=76
Click to expand...
Click to collapse
This way it didnt crash for me :-S
also so u can see the speed boost in some benchmarks
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
here you go, tried loading up that module however it doesn't seem to go past 768mhz lame.
I8750XXCMK2_I8750XCMK2. Firmware version 2424.13.11.2
Click to expand...
Click to collapse
CSC Content:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Download:
https://www.mediafire.com/?aiznv2tv73t6tu6
Click to expand...
Click to collapse
I8750XXCMJ1_I8750OXACMJ1. Firmware version 2424.13.10.2
Click to expand...
Click to collapse
CSC Content:
Download:
https://www.mediafire.com/download/68ch6mapwps38cw
Click to expand...
Click to collapse
Flashing guide:
http://forum.xda-developers.com/showthread.php?t=2391138
Instrukcja wgrywania po polsku (flashing guide in polish):
http://www.windowsmania.pl/poradnik...nding-lub-zmiana-oprogramowanie-na-gdr2-5424/
Download SPH-I800_VPUAMG6 for Samsung Neo:
https://www.mediafire.com/?v8dfr8l415a7f6v
Click to expand...
Click to collapse
Why don't you just publish it in flashing thread? No need in new thread for every stock ROM.
-W_O_L_F- said:
Why don't you just publish it in flashing thread? No need in new thread for every stock ROM.
Click to expand...
Click to collapse
as an #345 post?
sorry for this...but can we get this for HTC 8X?
djtonka said:
as an #345 post?
Click to expand...
Click to collapse
Thank you for grabbing and posting rom links. I will update the flashing thread later today
Sent from my GT-I8750 using Tapatalk
Just to clarify... If you flash your Ativ with this, you wont be able to fully interop unlock your device?
Loco5150 said:
Just to clarify... If you flash your Ativ with this, you wont be able to fully interop unlock your device?
Click to expand...
Click to collapse
that is correct, I tried of course but screen freezing on Diagnosis logo while opening registry editor.
aSpirit81 said:
sorry for this...but can we get this for HTC 8X?
Click to expand...
Click to collapse
of course you can't. Htc flash files are .nbh but Samsung one is wp8 and csc files.
it's 100% impossible .
if you can flash it your phone drivers are different so it's impossible.
yes,i mean can we get something like this for htc 8x.
Flashed yesterday, all running fine. Thanks !
On my interop custom:
WP8Diag - NO
Bootstrap_Samsung - NO
EnableAll_Sideloading -YES
Update
spavlin said:
My Custom On Off. GDR3 (10517 - I8750XXCMK2) do for themselves:
Region - ATO-SER (I put in ATO mode ALL)
In both:
Dev Unlock (WP8Diag not work)
INTEROP
File System Access
loud alarm
DisableNever
LargeScreen & ScreenSize
List without alphabet
Sim export and import
Default Google + Yandex
Radio just in case
Workers Auto Network Setup
Fits over without errors
After installation:
Bootstrap_Samsung not working
EnableAll_Sideloading quietly put
View attachment 2456764
Click to expand...
Click to collapse
How long you been using it ?
Thank you. I expect this ROM. Successful. Good Job.
..
darxon said:
DeveloperUnlockState CreateContext %d TID:%-4d FCRouter: %s: Developer Unlock State : 0x%x
CreateContext %d TID:%-4d FCRouter: %s: RPC Functions Locked!!!!
CreateContext %d TID:%-4d FCRouter: %s: Non-Production Errors.txt is exist!!
CloseContext %d TID:%-4d FCRouter: %s: ++ %d
SvcRegisterRPCInterface %d TID:%-4d FCRouter: %s: +++
D e f a u l t R p c A c c e s s SvcRegisterRPCInterface %d TID:%-4d FCRouter: %s: QueryTransientObjectSecurityDescriptor Fail NtStatus : %x n c a l r p c I n t e r o p R P C \ I n t e r f a c e
Click to expand...
Click to collapse
Hmm... such a bad english... Is this from Samsung binary?
FCRouter.dll GDR3 517
Does anyone know where to get a ROM for the ATIV S Neo? I need the ROM, not the CSC.
Check first post
For firmware I800_ (SPH-I800) need WP8_SMD_binary_USB_Downloader_Ver._3.47.exe.
Download it.