Ok here is my problem. I'm on ctmod 3.6 , have been since it came out. Well I'm sure u are all aware of the new baseband that was just released in the least week or so fe16 i believe it is. Well i odined the update in and now ihave the dreaded update window.it's really annoying. I've looked for update.zip in cache and I've even changed all the fa19 to fe16 in the build.prop. Didn't help.still getting it. any ideas how to get rid of it?
this is what you did so far, right?
You can use ES File Explorer.
build.prop is located at /system, at the very bottom.
Look for these lines:
Note the FA19, that is what you want to change
# begin build properties
# autogenerated by buildinfo.sh
ro.build.id=GINGERBREAD
ro.build.display.id=GINGERBREAD.FA19
ro.build.version.incremental=FA19
ro.build.version.sdk=10
ro.build.version.codename=REL
ro.build.version.release=2.3.6
# Do not try to parse ro.build.description or .fingerprint
ro.build.description=SPH-M820-user 2.3.6 GINGERBREAD FA19 release-keys
ro.build.fingerprint=samsung/SPH-M820/SPH-M820:2.3.6/GINGERBREAD/FA19:user/release-keys
When your done these lines should look something like this:
# begin build properties
# autogenerated by buildinfo.sh
ro.build.id=GINGERBREAD
ro.build.display.id=GINGERBREAD.FE16
ro.build.version.incremental=FE16
ro.build.version.sdk=10
ro.build.version.codename=REL
ro.build.version.release=2.3.6
# Do not try to parse ro.build.description or .fingerprint
ro.build.description=SPH-M820-user 2.3.6 GINGERBREAD FE16 release-keys
ro.build.fingerprint=samsung/SPH-M820/SPH-M820:2.3.6/GINGERBREAD/FE16:user/release-keys
Hope this helps.
Edit: build.prop is case sensitive, so make sure you capitalize the baseband.
well, maybe can try autostarts and disable it. also need to find it in file explorer and delete it, ( if i remember right it was in system too besides cache) still trying to remember exactly where.
other than that you can try the (sed) thing kouma talked about
Originally Posted by
Koumajutsu
Code:
sed s/FA19/FE16 /system/build.prop
make a backup first though
In terminal
Originally Posted by
Koumajutsu
Code:
sed s/FA19/FE16 /system/build.prop
make a backup first though
Originally Posted by
Koumajutsu
Code:
sed s/FA19/FE16 /system/build.prop
make a backup first though
sed s/FA19/FE16 </system/build.prop >/system/build.prop
make a backup first though
yes. you would also have to have /system mounted as rw.
sed is a "stream" editor, very powerful and somewhat dangerous.
what I did there was used the "s" command, which is switch
in this particular case, build.prop gets fed as a data stream to sed.
sed finds every sequence of characters matching "FA19" and replaces it with "FE16". the resulting stream is then output to build.prop overwriting the old.
it's kinda like find/replace all in a text editor, only it auto-saves once it's done replacing everything it finds
other than that i don't know?