[Q] 3g usb aircard on g-tab - G Tablet Q&A, Help & Troubleshooting

I have come agross a fwe threads that say that it is possible to use any standard USB aircard on our g-tablets, however to save battery and reduce filesize of the ROM's that ability has been stripped. Does anyone know which ROMS are tested with 3g cards or found a way to re-enable it?

Time to read before posting ( and than post in the right section)

To the best of my knowledge, it hasn't been done yet. However, just yesterday somebody seems to have retrofitted support into the Toshiba Folio 100 (another Tegra 2 tablet). Their patch won't work as is, but with a bit of work, it should be adaptable to our ROMs. See here for the curious: http://forum.xda-developers.com/showthread.php?t=914350 Obviously, don't try flashing that, it appears to contain a boot.img with a kernel for the Folio 100, which you don't want to use. I'm guessing one of our kernels built with PPP/CHAP/etc. support in it, combined with their system binaries and a hacked up Settings.apk would do the trick.

Moved to general

Yes please, I need this. Who do I have to bribe!
Sent from my VEGAn-TAB-v1.0.0B5.1 using Tapatalk

has anyone been able to accomplish this? i've a zte mf 110 coming soon and i need to be able to hook it to my gtab asap. devs, i'll pay to get this done. PM me with quites. thank you very much

Related

[MOD][SOURCE][ED01][4.15.2011] I500/I9000 Hybrid BCM4329 Wireless Driver

I have no idea if this will be of any use to anyone or not, but I figured I'd share anyway. I came up with a seemingly functional replacement for the Fascinate Atlas [ED01] Broadcom BCM4329 wireless driver that is 100% certain not to have the "Hotspot Monitoring" feature, and should eliminate any issues with the /lib/modules/dhd.ko module as it's in-built as part of the kernel now.
Unlike what I did for EC10, which worked but took a lot longer to do, this is a pretty quick and easy source mod. It's stock i500 ED01 for everything but the hotspot (wlioctl.h/wl_iw.h/wl_iw.c) code, which is stock i9000-update2, sans a certain "roaming" feature. The end result seems to work. Support for the actual VZW 3G hotspot app is all but guaranteed to be dead and buried, but the latest android-wifi-tether 3.0pre12 in infrastructure mode worked great, so I think it's pretty close to good, if not actually there.
Application:
- Remove the insmod lib/module/hotspot_event_monitoring.ko from init.rc
- Remove the hotspot_event_monitor.ko from lib/modules in your INITRAMFS
- Remove the dhd.ko from lib/modules in your INITRAMFS
- In your xxxxx_defconfig, remove (or comment out) CONFIG_BROADCOM_WIFI_ATLAS=y and make sure CONFIG_BROADCOM_WIFI is set to "m"
- Replace drivers/net/wireless/Makefile and drivers/net/wireless/bcm4329 with the contents of the linked .TAR below
- This should generate a dhd.ko instead of hotspot_event_monitoring.ko in drivers/net/wireless/bcm4329. Put that in your INITRAMFS::lib/modules instead of whatever stock dhd.ko you have. [Having the dhd.ko to include with a build is quite nice compared with using some stock driver IMO]
- Let me know if it doesn't work ... and what you tried ... I can always go ahead and do another manual merge like I did for EC10
edit: You'll also want to strip the debug symbols from the dhd.ko that's generated, it's huge. I've been doing a make modules then copying out/stripping the .ko files for initramfs before finisihing with the regular make.
MOD Source Download (.TAR)
Link to my GitHub commit for this particular change (don't trust my GIT, look at jt1134's or imnuts' GIT for things that matter!)
Anyway, if this helps you out, awesome. If you apply it and your WiFi gets boned up, please let me know and I will try to recreate. If you apply it and your phone catches on fire and dies a slow and painfull death I have no idea who you are or what you're talking about
Cannot seem to get this working for me.
make: Warning: File `drivers/net/wireless/bcm4329/Kconfig' has modification time 1.8e+04 s in the future
error repeats
Didn't Adryn or someone else fabricate a fake version of the 3G Hotspot event monitoring file that basically is still there but doesn't actually monitor our hotspot or tethering usage?
I've been using that and been wireless tethering using that recent app in the Themes section. Hopefully im pretty safe because ive been using that app a decent bit and its been working perfect.
nemesis2all said:
Cannot seem to get this working for me.
make: Warning: File `drivers/net/wireless/bcm4329/Kconfig' has modification time 1.8e+04 s in the future
error repeats
Click to expand...
Click to collapse
I'd guess that whatever you extracted the archive with, also updated the files with what their modification time when they were archived. 1.8e+04 seems to be 5 hours, so it's likely due to you and djb having different timezones (or, one of you not knowing how to set your clock with NTP ).
Whatever you used should have an option to not preserve the timestamps, so you could just redo with that option... alternatively, you could wait 5 hours.
Syn Ack said:
Didn't Adryn or someone else fabricate a fake version of the 3G Hotspot event monitoring file that basically is still there but doesn't actually monitor our hotspot or tethering usage?
I've been using that and been wireless tethering using that recent app in the Themes section. Hopefully im pretty safe because ive been using that app a decent bit and its been working perfect.
Click to expand...
Click to collapse
He did, so you can be 'safe', but you still got parts of that monster in the wireless driver's code & the dummy monitor as well (no doubt that samsung's modifications to the wireless driver are quite low quality, like everything else they seem to do in the kernel).
I'm not sure what app you're using, but, using Wireless Tether or anything else not from Verizon should be safer (not to imply that using the 3G Hot Spot with the monitor removed is dangerous- but from what I've heard, take with a grain of salt, doing the hack to get free tethering with the verizon app puts some possible traces on your account that might suggest you're doing it).
I use a combo of that dummy monitor and the Wireless Tether app.
is this a full kernels or just a mod for which ever kernel you are using
evilclosetmonkeynate said:
is this a full kernels or just a mod for which ever kernel you are using
Click to expand...
Click to collapse
This is a mod for kernel developers.
Yeah, just a modification to the existing code base for developers. Looking at everyone else's stuff it seemed that the norm was to remove the nasty bits from the existing driver. I tried using the i9000 wireless driver as-is and it worked fine, so my concept was just to replace the access point stuff completely but keep any changes made to the core driver code.
Sorry about the timestamp thing nemesis! My Linux experience is extremely limited (you should see me struggle with Git, it's almost laughable the bad things I've done to myself)
While I am "working on" a full kernel, it's primarily just for my own education. If I want to be able to contribute to these efforts I have a LOT of catching up to do. My personal goal is a "Stock+" kernel that works but doesn't include all the little tweaks and modifications available from the main developer's kernels. I'll put it this way -- at the end of the day I flash somebody else's kernel back onto my phone
djp952 said:
Yeah, just a modification to the existing code base for developers. Looking at everyone else's stuff it seemed that the norm was to remove the nasty bits from the existing driver. I tried using the i9000 wireless driver as-is and it worked fine, so my concept was just to replace the access point stuff completely but keep any changes made to the core driver code.
Sorry about the timestamp thing nemesis! My Linux experience is extremely limited (you should see me struggle with Git, it's almost laughable the bad things I've done to myself)
While I am "working on" a full kernel, it's primarily just for my own education. If I want to be able to contribute to these efforts I have a LOT of catching up to do. My personal goal is a "Stock+" kernel that works but doesn't include all the little tweaks and modifications available from the main developer's kernels. I'll put it this way -- at the end of the day I flash somebody else's kernel back onto my phone
Click to expand...
Click to collapse
It is all good still appreciate your work. I have never seen anything like that. Just thought it included some bits needed for my DeLorean to go back to the future.
so, i am just speculating here, but does this imply that bluetooth (and other) drivers could be pulled from i9000 sources as well (say that GB drop that just hit) and backported to i500 kernels?
or is this simply wishful thinking?
Thank you for your hard work hope to see this in future Kernels
Sent from my SCH-I500 using XDA App
godihatework said:
so, i am just speculating here, but does this imply that bluetooth (and other) drivers could be pulled from i9000 sources as well (say that GB drop that just hit) and backported to i500 kernels?
or is this simply wishful thinking?
Click to expand...
Click to collapse
Anything is possible, as long as the hardware is actually the same (or close enough) on the i9000 and it doesn't need anything unique to the GB kernel. It certainly won't hurt to diff the code when it's available to see how close it is.
Have you been doing any more testing on this. I am interested in putting it in my kernels just want to make sure it won't cause any issues.
nemesis2all said:
Have you been doing any more testing on this. I am interested in putting it in my kernels just want to make sure it won't cause any issues.
Click to expand...
Click to collapse
Yes, as of android-wireless-tether 3.0pre14 I haven't had any issues at all with it. 3.0pre12 was throwing a fit every now and again, but apparently that was a common malady with that version. Note also that I have NOT tested the Verizon 3G hotspot app with this driver, my assumption is that it will not work. Which leads me to ...
I also have a less aggressive solution that may allow the VZW app to work you could have if you want, it's basically the same thing with the updated SOFTAP changes from the i500 applied to the i9000 driver as well. (This basically makes it amount to just carving out the hotspot and producing a new dhd.ko during a build so we don't have to use the pre-compiled one from the ramdisk)
You can find the alternate version of the driver on my github, in the src/wip directory of the sch-i500-kernel repo:
https://github.com/djp952/sch-i500-kernel.git
LMK if you run into problems

Noob Q: efuse upshot

Hi, didn't want to clutter the "bad news" thread nontechnical noob questions. If the tablet won't boot from SD
1) Will it still possibly be rootable where I could side load apps? I could live with the stock ROM if I could sideload apks, maybe.
2) Am I right to assume even if it is rootable where I can add apps, it is much more likely that I could brick it somehow?
Dang, just really crappy timing. I actually bought gift cards to get it (so I could get some cash-back deals). I can't return the cards. I guess if this thing isn't worth it, I can use them to get a refurb color.
Very surprised and disappointed they went this route (if they really did).
Damn
Same here, I could live with side-loading. But I think it's a bit early to write off bootable SD. Hopefully it's here relatively soon as I'd like to leave the stock experience in place for family members.
As an aside, I've got the original Nook Color (rooted of course), as well as the Transformer. Even without the benefit of ICS, I found that I still resorted to grabbing the NC for my bedtime reading (Google Reader and articles in RIL, rather than actual books). 7" is perfect, 10" a bit unwieldy for me.
I picked up the NT today and am very happy I did. It's a nail in the coffin for the Transformer, gonna sell it as the NT will meet all my needs. I'm saying this based on the stock experience with the expectation that we'll have ROMs at some point.
But soon enough we'll have a) root and b) ICS on the NT. It's gonna be sweet!
Well, correct me if I'm wrong, but I'm yet to see an Android device that XDA geniouses couldn't root.
Including the crazy-ass encrypted Craporola devices.
Rooting might be doable, but if the bootloader is encrypted, then installing a custom ROM like CM7 might be out of the question.
Case and point: look at how much agony the owner of the Motorola Milestone (the GSM version of the Droid) went through. Far as i know, they just got the official Froyo ROM within last few month, and most likely won't get GB, ever.
DarkDvr said:
Well, correct me if I'm wrong, but I'm yet to see an Android device that XDA geniouses couldn't root.
Including the crazy-ass encrypted Craporola devices.
Click to expand...
Click to collapse
Yeah i figured as much but wasn't sure if there was something out there I wasn't aware of. I'm using an Atrix. Despite Motorola's best efforts, the community eventually got into this thing.
gordon1hd1 said:
Rooting might be doable, but if the bootloader is encrypted, then installing a custom ROM like CM7 might be out of the question.
Case and point: look at how much agony the owner of the Motorola Milestone (the GSM version of the Droid) went through. Far as i know, they just got the official Froyo ROM within last few month, and most likely won't get GB, ever.
Click to expand...
Click to collapse
That would suck but I think I could live with it. I just noticed that some of the nook apps are the tablet version rather than the phone versions. Evernote and Netflix, for example. Root and sideloading would probably suffice, although B&N would lose some goodwill.
Sent from my MB860 using XDA Premium App
I could honestly care less about custom roms or anything like that. I'm fine with the NT stock experience.
But sideloading would be a very very good thing, just so I can get the few apps I'd like to use onto the thing. I'm only gonna use it to consume media- but I'd like to decide which apps I use to do that.
Rooting will get most users far, but compare to a full blown CM7 rom, there still many short coming with just root.
Example:
1. Tablet soft buttons, the CM7 tablet soft key are vital in making a lot of side loaded application work in NC.
2. Custom keyboard. one of my favorite app on NC is the thumb keyboard, which make typing on the NC in landscape orientation feel natural. With Root, the user can install the keyboard, but won't be able to enable the keyboard, since B&N remove some of the menus settings.
3. Honeycomb and ICS, with the source code for ICS just came out, CM9 is on the horizon, without unlocking the bootloader, NT won't get a taste of either.
So Root is a great start, but for many android hackers and purist, it is not enough.
1. Tablet soft buttons, the CM7 tablet soft key are vital in making a lot of side loaded application work in NC.
I have button savior on my manually rooted NC. Works fine. Am I missing something?
2. Custom keyboard. one of my favorite app on NC is the thumb keyboard, which make typing on the NC in landscape orientation feel natural. With Root, the user can install the keyboard, but won't be able to enable the keyboard, since B&N remove some of the menus settings.
I got the Palm input keyboard working on my rooted NC. Worked great. I forget what I swapped it out for, but it wasn't a problem - you just have to tell the device that your preferred keyboard just happens to be named the same as its preferred keyboard and lives in the same place.
3. Honeycomb and ICS, with the source code for ICS just came out, CM9 is on the horizon, without unlocking the bootloader, NT won't get a taste of either.
This may be for the best.
I'm looking at Honeycomb now on a 10 incher, and I'm not as happy with what I'm seeing as I'd hoped. ADB is more challenging, and putting files on the device via mass storage device is right out, which means a lot of my tools for managing content on it are gone, too - manually copy over stuff that Calibre used to just take care of? Bleargh.
Honeycomb pretty much requires your real, fast computer talk to your honeycomb device, aka a ****ty slow computer, over a serial link as if it were a peer, rather than just being able to get the storage and write files to it.
And if you use linux, your good, fast computer can't even talk to the ****ty, slow one that google's deliivered because they didn't bothered to warn anyone about this far enough ahead of time for the linux folks to really get working on trying to port over that stupid set of media player commands. Who knew that anyone would all of a sudden decide they were going to pronounce a brain-dead media player communications interface as workable?
Once you unplug and being passively consuming your pr0n again, the tablet's all good and pretty.
http://soledadpenades.com/2011/06/12/honeycomb-mtp-and-linux/
Not to second guess anyone here, but there always OTHER ways of doing things. Witness the Droid X where even with an encrypted bootloader an exploit was found called 2nd Init (http://cvpcs.org/blog/2011-06-14/2nd-init._what_it_is_and_how_it_works) which allowed the Droid X to get custom roms (albeit with the stock kernel) such as CM7 and MIUI.
jhanford said:
Not to second guess anyone here, but there always OTHER ways of doing things. Witness the Droid X where even with an encrypted bootloader an exploit was found called 2nd Init (http://cvpcs.org/blog/2011-06-14/2nd-init._what_it_is_and_how_it_works) which allowed the Droid X to get custom roms (albeit with the stock kernel) such as CM7 and MIUI.
Click to expand...
Click to collapse
I truly hope that it won't be such an involved process for us, but still... very cool to read what the genius devs put together as a workaround on other devices. We just need to hope that they jump on the Nook Tablet like they did the NC.
jhanford said:
Not to second guess anyone here, but there always OTHER ways of doing things. Witness the Droid X where even with an encrypted bootloader an exploit was found called 2nd Init (http://cvpcs.org/blog/2011-06-14/2nd-init._what_it_is_and_how_it_works) which allowed the Droid X to get custom roms (albeit with the stock kernel) such as CM7 and MIUI.
Click to expand...
Click to collapse
I have a Defy, and it need too 2ndInit to start custom rom like CM7/MIUI.
I hope that NT will be no boot-locked, but if it's the sadly truth I think that port 2ndInit will be not too much hard.
well we already figured out how to side load apps. they dont pop up in NT's GUI, but with 2 buttons you can launch Go Launcher and within there you can see everything you installed.
I would actual prefer to have the stock Rom, just rooted. I had CM 7.1 on my NC but removed it because I actually do use the NC as bookreader and that would the primary use for a NT. I have a TF and soon a TF Prime for the full tablet experience, which IMHO really needs a 10 inch or bigger screen.

Q: DUAL BOOTING: Multiple ROMs ?

Does anyone know the best way to dual-boot multiple roms to S3?
All i've managed to find so far is an app called BootManager which claims to install a seperate ROM to the SDcard (which i assume is the only way) but says it will be considerably slower... This might be the case however you do it, i dont know, thats why i'm asking.
This is where i found this:
((The post is a year old though, so i'm thinking they're might be a better way by now...)) :
http://lifehacker.com/5826050/how-to-dual-boot-multiple-roms-on-your-android-phone
XDA Search
http://forum.xda-developers.com/showthread.php?t=1783228&highlight=dual+boot
http://forum.xda-developers.com/showthread.php?t=1731549&highlight=dual+boot

Best ROM for use with Lapdock?

I just got one of those 20$ lapdocks from Radioshack and was wondering what are the best ROMs with webtop? Right now I'm using Jokersax' CM9 (but considering switching to epinter's CM10) and just doing HDMI mirroring. I'd prefer to stick with my current ROM if there is some kind of webtop like thing or maybe Ubuntu or Debian that I can install on it. I have an 8GB microSD card and 5 gigs of internal storage left so space is not an issue.
Hi.
You have to install a Gingerbread Blur ROM to have Webtop. Not compatible with any CM.
Only a tablet UI mod (not Ubuntu) with CM10 here: http://forum.xda-developers.com/showthread.php?t=1876790
Personnaly I have Nottachtrix 1.3.1 with WebTopMod, running a full Squeeze up-to-date Debian.
I tested Ubuntop, but the Jaunty Ubuntu is too old and support end since october 2010...
jisse44 said:
Hi.
You have to install a Gingerbread Blur ROM to have Webtop. Not compatible with any CM.
Only a tablet UI mod (not Ubuntu) with CM10 here: http://forum.xda-developers.com/showthread.php?t=1876790
Personnaly I have Nottachtrix 1.3.1 with WebTopMod, running a full Squeeze up-to-date Debian.
I tested Ubuntop, but the Jaunty Ubuntu is too old and support end since october 2010...
Click to expand...
Click to collapse
This is your Nottachtrix 1.3.1 http://forum.xda-developers.com/showthread.php?t=1567241
This is the webtopmod you used ? http://forum.xda-developers.com/showthread.php?t=1093790
Extra question: Does Lapdock used webtop to work? Multimedia dock and lapdock using the same "webtop"? Or multimedia dock and lapdock have different "webtop"?
dotamaple said:
Extra question: Does Lapdock used webtop to work? Multimedia dock and lapdock using the same "webtop"? Or multimedia dock and lapdock have different "webtop"?
Click to expand...
Click to collapse
Two different things.
ravilov said:
Two different things.
Click to expand...
Click to collapse
I see.. Thanks for your reply.
If my Atrix is with ICS/JB. I still can use lapdock features? Just webtop not will work in ICS/JB ROM?
---
Deafcyclist said:
Yes, you should just have mirroring via HDMI to the display. Resolution might not match the screen and looks a little aliased though. GB based rom have webtop and that match the resolution of the screen and makes it look much better.
Click to expand...
Click to collapse
Do you mean i still can use lapdock features after flashed to ICS/JB?
dotamaple said:
This is your Nottachtrix 1.3.1 http://forum.xda-developers.com/showthread.php?t=1567241
Click to expand...
Click to collapse
Yep.
dotamaple said:
This is the webtopmod you used ? http://forum.xda-developers.com/showthread.php?t=1093790
Click to expand...
Click to collapse
Yep. See my last post on that topic for few mods.
---
Deafcyclist said:
You should be able to. Just not with the web top. Though I have heard that JB can be a Little wonky with hdmi mirroring.
I've used jokersax CM9 without issue except for that aliasing issue.
Click to expand...
Click to collapse
Without the Full version of Firefox? :crying:
dotamaple said:
Without the Full version of Firefox? :crying:
Click to expand...
Click to collapse
Yes, without full version of Firefox.
Maybe you should go read up on various HDMI output modes.
Whats this about 20 dollar laptop docks?
ear0wax said:
Whats this about 20 dollar laptop docks?
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=1793300
Look around the end of the thread.
jisse44 said:
Hi.
You have to install a Gingerbread Blur ROM to have Webtop. Not compatible with any CM.
Only a tablet UI mod (not Ubuntu) with CM10 here: http://forum.xda-developers.com/showthread.php?t=1876790
Personnaly I have Nottachtrix 1.3.1 with WebTopMod, running a full Squeeze up-to-date Debian.
I tested Ubuntop, but the Jaunty Ubuntu is too old and support end since october 2010...
Click to expand...
Click to collapse
So, is there a way to run a full Linux distro without a Blur ROM?
Also, how is your phone's performance on Nottachtrix? What kind of Quadrant scores does it get?
Kanan875 said:
So, is there a way to run a full Linux distro without a Blur ROM?
Also, how is your phone's performance on Nottachtrix? What kind of Quadrant scores does it get?
Click to expand...
Click to collapse
I have 1GHz Faux kernel 026b, so the results are not the best, I prefer longer battery than high performance.
Results are: Total: 2494. CPU: 2748, Mem: 2689, IO: 4605, 2D: 265, 3D: 2162
(Result is 2819 with 1.3GHz Faux kernel)
Kanan875 said:
So, is there a way to run a full Linux distro without a Blur ROM?
Also, how is your phone's performance on Nottachtrix? What kind of Quadrant scores does it get?
Click to expand...
Click to collapse
define "full".
There is a "way" to run a full distro, but you'll be VNCing into it, since the terminal doesn't support a graphical output., anyways, it works alright, video is wonky though, so I wouldn't recommend that, but even openoffice works.
http://linuxonandroid.org/
you can also check the thread here at XDA
http://forum.xda-developers.com/showthread.php?t=1585027
jisse44 said:
Hi.
You have to install a Gingerbread Blur ROM to have Webtop. Not compatible with any CM.
Only a tablet UI mod (not Ubuntu) with CM10 here: http://forum.xda-developers.com/showthread.php?t=1876790
Personnaly I have Nottachtrix 1.3.1 with WebTopMod, running a full Squeeze up-to-date Debian.
I tested Ubuntop, but the Jaunty Ubuntu is too old and support end since october 2010...
Click to expand...
Click to collapse
HI, this post is a bit old now so im sure things have changed a bit, im hoping to get my atrix rooted this week(by my cousin) and want the right rom put on it, im a complete noob and all the threads that ive read about with the lapdock, talk about changing things.
In your experience which rom just works, Id like to be able to use maps, camera and video camera aswell as lapdock.
Any advice is appreciated as ive got headache with trying to read up on all this.
cheers
Joe
I see that the last post to this thread (before mine) is dated 3 years ago and the questions in it went unanswered, so I am doubtful that my question(s) will be seen or answered as well, but here goes.
This is my first post to these forums, so keep that in mind if I make any mistakes, or break any rules. I own 3 Motorola Atrix 4G phones in various states of working, plus the Lapdock, which is IMO brilliant and the main reason for me searching out this phone and buying 2 replacement phones after my first Atrix 4G LCD screen stopped working. In fact, I bought the Lapdock to use with my Raspberry Pi first, then decided I wanted the cell phone to use with the Lapdock. I still like the Atrix 4G, even though it replaced my iPhone (3S I think), which I lost (or it was stolen). My question(s) is/are the same as the OP and title of this thread, now that it is Sept. of 2015, what is the best ROM version and what is the latest version of Android I can use on my Atrix 4G, while still being able to use the Lapdock? I don't care if it means using the Webtop application, or a different Linux for ARM/Android desktop, but I don't want to lose any functionality of the stock cell phone. In fact, I want as much functionality as possible, so on occasions when I need to use the phone and lapdock combination as a temporary replacement for a full computer, I can do so, with reasonable limitations. The main functions I need/want in my Atrix 4G cell phone are: calling (obviously), GPS navigation, calendar, contacts, calculator, camera, taking notes for reminders, and searching the web for locations of things I need to buy, or places I need to go occasionally. I prefer Firefox as my web browser of choice, but can do with any good browser, if Firefox is not available with the best ROM & Android version choice for the Atrix 4G & lapdock combination.
I hope that some members here are still using the Atrix 4G, even though it is an old phone now, and they can give me their recommendations. I bought all 3 of my Atrix 4G phones unlocked and have zero experience at modifying or replacing ROM images on cell phones, but I am willing to learn how to do it, after I know what I will be aiming for with some recommendations. I also have almost zero experience with using Linux, but have checked it out a few times over the last 15+/- years.
Thanks in advance for any advice.
David
aka AmigaDave (Amiga = Commodore computer of 80's & 90's, not Spanish girlfriend)
The leak version works for me
Sent from my LG-E980 using XDA Free mobile app
b088yj said:
The leak version works for me
Sent from my LG-E980 using XDA Free mobile app
Click to expand...
Click to collapse
.
Thanks for the quick reply b088yj.
Since I am new to all of this, can you give me more info on what the "leak version" is and where I can find it? I don't want to assume I can figure out what you mean by "leak version", and end up with results that don't work, or take a chance of bricking my phone.
Is this "leak version" using the Webtop, or some other desktop GUI for when the phone is plugged into the Lapdock? I have no preference to keeping or replacing the Webtop with something else, so long as it "just works", and provides the same functionality, including all features on the phone working (like the finger print reader, sound, camera, etc.).
Also, what steps are needed to install it (if you can just provide me with some links to where I can find the specific information I need to read, I can figure it out for myself, but listing the specific steps you took to install the "leak version" on your Atrix 4G would be really helpful, plus if there is anything needed before, during, or after you install the "leak version" to make it all just WORK).
For example: To install the "leak version" you need to install X number of things on your Atrix 4G, asdfg + hjkl; + zxcvb in the order listed in the step-by-step instructions below.
Step 1: Backup your existing cell phone system, data and contacts using ???
Step 2: Wipe the system using ???
Step 3: Go here (link) and download file/app/utility/etc. abc.xyz
Step 4: Unzip and run, or install app/utility, or ???, on your cell phone/computer to transfer to your cell phone.
Step 5: Using a shell window, enter the following commands [email protected]#$%^&
Step 6: Repeat Steps 3 through 5 for file/app/utility/etc. 2 and 3, which you can find here (link) and here (link).
Step 7: Get on your knees and pray while rebooting your cell phone to see if it all worked
Like I wrote earlier, I have no idea what I need to do, but do have some common sense and can follow clearly written directions, if the person providing them to me does not assume that I know some part of the process and they leave out something they think is obvious and generally known to all cell phone hackers (which I am not to be considered in any shape, way, or fashion).
Thanks again,
David
aka AmigaDave
Edit: I see from your signature, you are using a LG-E980, does that mean that you no longer use your Atrix 4G?

droid razr maxx

im looking for the route to go from here
ive successfully rooted and rom'd phones a few times no issues there but there are so many things going on im lost
i have a few issues i hope i can get help with and a few questions that will come out of them issues
my phone gets pretty sluggish after time the phone wont open and using it makes it get hot pretty quick
i dont play any games on it or install many odd apps
mainly i use:
phone
camera
video camera
facebook
sms
and email i have 5 accounts i use 3 gmail a yahoo and an exchange from work
should i use a different kernel?
is the newest android the best thing i should use on it ?
i see that the non working features of some of the roms is things i need to use like the camera or hidef recording.
also i see different things on different forums i know its a strange question because im on here but is there a forum best suited for the razr maxx ive used xda for my lg my galaxy tab10.1 and now the maxx just curious
also is there a way to make it send the pictures to the external sd card using it fills the internal one up and it sometimes locks up completely as it gets close to full, then i have to connect it usb and move the pictures to my PC
ive included pics of my system
Looks like you're running it on slim bean with 4.3.
If you want features like HD recording, then I suggest try some stock 4.1 based ROMs.
For storing images, you can find the option in settings. If you don't find it there, then you can swap your sdcards.
DROID RAZR with Tapatalk 4
One big question to ask is do you use MMS (picture messaging)?
I say that because a lot of ROMS do not have it fully functioning, so that is something to keep an eye on. I am currently using http://forum.xda-developers.com/showthread.php?t=2535920&page=45 on mine, and it is working pretty well, but some people are experiencing issues with MMS and bluetooth (I am not facing those issues. Also, take some time to look at kernel upgrades, like JBX http://forum.xda-developers.com/showthread.php?t=2223517, these can greatly alter the performance of your phone for the better and add things back in like 720p video recording.
thanks for the answers
i do use mms from time to time i have noticed that a rom i used in the past was one of the ones that didnt mms after a few fights with people that i didnt ignore them lol
last night i tried flashing eclipse 1.5 but it wouldn't boot i think i was using the wrong version maybe? so today i reflashed slim spyder 4.3
why is it that the android 4.1 stock roms will work better than the highly modified custom roms ? isnt the idea of developing new features to make the best of the OS and hardware and have all the features without the BLOAT ? ( i made it look fat for effect hahah)
how do i swap the sd cards ? maybe a link, and will it help? im not sure because it saves them to the internal storage not the internal sd card i think and the phone gets all filled up nd then goes completely haywire
im really unsure on what of those 2 links would be the best way to go
i also not sure how to know if im on a stock -based rom
It looks like you are on SlimBean, so not a stock rom.
I don't know that I would go as far as saying that stock roms work better than highly customized roms, but there are a lot of "unofficial" or "alpha" build roms that just aren't finished. Those will inherently have issues.
Can you post the links to the threads that you got the rom from? There are a couple different options for your phone, depending on your carrier. It looks like you are on CDMA, so you need to make sure you are downloading those builds, not UMTS builds.
As far as the links go, use the first link to get the new rom, and load it through safestrap. If you need a tutorial on that, you can find it here: http://forum.xda-developers.com/showthread.php?t=2427125
When you boot into safestrap, you will create a partition and install the rom, then reboot and enjoy!
rexxxlo said:
thanks for the answers
i do use mms from time to time i have noticed that a rom i used in the past was one of the ones that didnt mms after a few fights with people that i didnt ignore them lol
last night i tried flashing eclipse 1.5 but it wouldn't boot i think i was using the wrong version maybe? so today i reflashed slim spyder 4.3
why is it that the android 4.1 stock roms will work better than the highly modified custom roms ? isnt the idea of developing new features to make the best of the OS and hardware and have all the features without the BLOAT ? ( i made it look fat for effect hahah)
how do i swap the sd cards ? maybe a link, and will it help? im not sure because it saves them to the internal storage not the internal sd card i think and the phone gets all filled up nd then goes completely haywire
im really unsure on what of those 2 links would be the best way to go
i also not sure how to know if im on a stock -based rom
Click to expand...
Click to collapse
The answer would be a very long story but I'll cut it short as much as I can.
Everything you said is absolutely right. But some of the reasons the custom ROMs doesn't work are locked contents by the manufacturer.
Locked bootloaders, locked libraries and many more. We're lucky that some devs actually devoted a lot of hard work to even make custom ROMs work on this device.
So our phone has a lot of locked stuff which is necessary for things like HDMI and HD recording to work. The custom kernel cannot access it.
So these features work with stock Moto kernel only which was based on 4.1
To swap sdcards, you need to edit the build.prop. I shall post the steps as soon as I have access to my laptop.
DROID RAZR with Tapatalk 4
that's awesome
i truly respect the people devoting time to developing it does make computers mainly my phone more of a personal thing
id love to try the swap sd card thing thank you
ill be waiting
rexxxlo said:
that's awesome
i truly respect the people devoting time to developing it does make computers mainly my phone more of a personal thing
id love to try the swap sd card thing thank you
ill be waiting
Click to expand...
Click to collapse
To swap sdcards. You will need a file explorer with root (E.S. Explorer or Root Explorer).
Go to system and open build.prop for editing.
Search for the line
Code:
#persist.sys.vold.switchexternal=1
Change it to
Code:
persist.sys.vold.switchexternal=1
(remove the #)
Save the build.prop
Reboot

Categories

Resources