hey how can i comfirme that the modules undervolt and mddi are working? loaded
can someone tell me?
no one can help me?
Try this in terminal:
dmesg | grep "module name"
For example: dmesg | grep x8uv
If there is some output module is loaded
dbts25 said:
Try this in terminal:
dmesg | grep "module name"
For example: dmesg | grep x8uv
If there is some output module is loaded
Click to expand...
Click to collapse
i have try but it say:
grep: not found
i have install undervolt..
maybe im not install correctly??
can you provide installation guide??
If module is not installed there will be no output. I think you write this command wrong
dbts25 said:
If module is not installed there will be no output. I think you write this command wrong
Click to expand...
Click to collapse
i using root explorer to copy/move x8uv.ko to system/lib/modules and edit the hw_config in system/etc
in terminal i write this:
$su
# dmesg | grep x8uv
It is right but don't know why you got grep:not found. When I write this with x8gesture I have some output and when I try with x8uv, which I don't have, it writes nothing
dbts25 said:
It is right but don't know why you got grep:not found. When I write this with x8gesture I have some output and when I try with x8uv, which I don't have, it writes nothing
Click to expand...
Click to collapse
1 more thing..
im using stock 2.1.1 rom..
but i see someone using this module with stock rom..
You can use all modules in stock rom I think
dbts25 said:
You can use all modules in stock rom I think
Click to expand...
Click to collapse
if i cant confirm the module using teminal..
then the module not install in my phone..right??
Did you set permissions like this:
* *
*
*
dbts25 said:
Did you set permissions like this:
* *
*
*
Click to expand...
Click to collapse
nope..
like this:
* * *
* *
all user not mark
i also try to to set permission like you..
but the problem still same...
sory... the permission are like this:
{
"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"
}
Just check all, something like this
* * *
* * *
* * *
You don't have to worry about permission anymore...
what shows after i write
$su
# dmesg | grep x8uv
in terminal?
to me shows ''#''
try this instead:
lsmod | grep x8uv
doixanh said:
try this instead:
lsmod | grep x8uv
Click to expand...
Click to collapse
it says ''Ismod: not found''
it's the lowercase of letter L, not I
brunodmsa said:
it says ''Ismod: not found''
Click to expand...
Click to collapse
Lsmod, not Ismod.
JasoX said:
Lsmod, not Ismod.
Click to expand...
Click to collapse
still not found!
what to do?
Related
ok, I've decided to make my own theme, there's a lot of work to do since really I have no so much skills for photoshop and stuff, but this is my first try!!!
for this first release it just have a few changes, the style will be orange themed, for now only this:
Wifi at all states
Battery at normal, charging and unknow state
Unlock halo and Unlock ring are now an orange hexagon (inspired by HC you know)
And I hope daily there will be new changes.
NOTE: I'm not shure how to make an update.zip for our CWM, so, if there is someone can explain how to make one, I will be grateful.
For now just unrar rar file and put framework-res.apk, SystemUI.apk and installtheme.sh on /sdcard
open cmd and type this commands:
adb shell
su
cd /sdcard
sh installtheme.sh
{
"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"
}
looks promising. How would one go about removing this theme?
swampy67 said:
looks promising. How would one go about removing this theme?
Click to expand...
Click to collapse
You mean get back to original theme? Just replace originals apk on sdcard and run installtheme.sh
thanks ill give it a shot
Do you have the wallpaper your using? Anywhere or do I need to find it online?
Here's a wallpaper I modified just took the original honeycomb that is installed made if fire ambe orange. To offset the lockscreen's bright orange.
http://www.mediafire.com/?jpdc7ku7d309b2t
here you have
http://www.flickr.com/photos/azeected/4635280640/sizes/o/
It looks great thanks so much
tab stuck on acer logo after initial reboot
my bad i was using incorrect rom
export PATH=/data/local/bin:$PATH
$ export PATH=/data/local/bin:$PATH
$adb shell
* daemon not running. starting it now on port 5038 *
* daemon started successfully *
error: device not found
$su
# cd/sdcard
cd/sdcard: not found
#
abditerex said:
export PATH=/data/local/bin:$PATH
$ export PATH=/data/local/bin:$PATH
$adb shell
* daemon not running. starting it now on port 5038 *
* daemon started successfully *
error: device not found
$su
# cd/sdcard
cd/sdcard: not found
#
Click to expand...
Click to collapse
looks like adb don´t detect your device (do you have usb-debugging on?)
BTW: the right is "cd(space)/sdcard
I'm hoping to be able to get some feedback and bounce this idea around. I wasn't able to figure out the right terms for a google search with good results even though I spent a while trying.
From an Android application, I want to determine where the busybox binary is installed on the system or data partition. I was hoping for a pure java solution, but I don't think there are any android java APIs for calling the shell PATH variable...
I also wanted to avoid hard coding the common linux binary directories (ex. /system/bin and /system/xbin, etc.)
From a shell perspective, I would usually run busybox find / -name busybox to locate it. Or I'd run busybox which busybox .. none of these are pure Android java solutions.
There are only two ways I'm aware of:
1) Using the linux binary "which". I could compile this for arm (or use the busybox applet) and package this binary into the application, have it extract when the application loads and execute and parse the output. Could do the same with the find linux binary...
2) Use the RootTools method Stericson published - InternalMethods.java. Although his approach uses a root shell to run dd to copy it from /init.rc (permissions usually read only for root) into /data/local/tmp and set it 777 so the android application and parse it for the export PATH line.
EDIT: found another method .. kind of an interesting approach.
http://osdir.com/ml/AndroidDevelopers/2009-03/msg04053.html
ps | grep /system/bin/sh
cat /proc/<pid>/environ
have to parse some of that output, but it seems to work thru adb shell w/o root.
I very well might have overlooked something or missed another approach. Any other ideas or other approaches?
Thanks in advance!
Include busybox with your app, no need to worry about its version
Couldn't you use java.lang.System.getenv()?
http://developer.android.com/reference/java/lang/System.html#getenv(java.lang.String)
doixanh said:
Include busybox with your app, no need to worry about its version
Click to expand...
Click to collapse
lol. unfortunately the scope of my app is only to show the user where their busybox binary is currently located, not provide them with a busybox binary.
Gene Poole said:
Couldn't you use java.lang.System.getenv()?
http://developer.android.com/reference/java/lang/System.html#getenv(java.lang.String)
Click to expand...
Click to collapse
Wow! very interesting. Sad I couldn't find this in all my searching through the android docs.
Two questions after looking over the information I can probably answer through testing, but can't test at the moment. If anybody knows the answer, would be helpful. Otherwise I'll post back when I am able to test.
1) Would the SecurityManager block a 3rd party app from using this call as it might be reserved for only apps signed with platform keys? I can compile and test watching logcat to see if it blocks this call.
2) For the getenv(String name) method, what value should be passed as the string? I can probably bypass this by just running the getenv w/o a string to have it return the Map and sort through the map.
Thanks for the help/suggestions/feedback!
Finally had a chance to test!
Gene Poole said:
Couldn't you use java.lang.System.getenv()?
http://developer.android.com/reference/java/lang/System.html#getenv(java.lang.String)
Click to expand...
Click to collapse
Turns out to be the perfect answer!!
This is the exact command I was looking for:
textBox.setText(System.getenv("PATH"));
Found a great test example for implementing real quick - How do I get Environment Variables?
Here is the output on my EVO 3D:
{
"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"
}
Easy Adb Tool For All Android Devices
xXNubCakeXx
{
"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"
}
What is it Easy ADB Tool for All Androids?
This program can do pretty much what you need it to do in adb.exe. You can push, pull, dump files and much more. This is the first release so its kinda weak at the moment. There is also an auto update feature. Instead of looking for updates, just open the program. If any updates are available, the program will install them automatically.
Requirements:
ADB drivers preinstalled.
Root is required in SOME cases, not all.
Debug mode enabled on your device.
Any Android OS is capabilities
Windows computer
Easy Adb Tool For All Android Devices
How to
This is a 'What You See Is What You Get' type program. There's no directions. I will include a manual in a later release. Just play around and enjoy!
Remember to make a backup before messing with /system files!
Release info
1.1.0 - 2.0.0
(Coming Soon)
* Error Script
* Shell Commands
* Network Commands
* FastBoot Commands
*Better Navigation
* Typo Corrections
(I'm sure theres typos lol)
1.0.0 (Release)
* Auto Update
* Pull
* Push
* Install
* Debuging Commands
* System dump
* Data Dumb
* Mount / Remount
* Server Kill
* Server Start
Credits: Thanks Chrisngrod for testing this for me =]
*** If you would like to help please send a PM my way! Im not afraid to share ***
You are awesome and thanks for sharing.
john9 said:
You are awesome and thanks for sharing.
Click to expand...
Click to collapse
still needs work... i noticed i didnt finish the info credits and stuff... ill soon make a guide to go with it when pressing 0 . . .
error script was working till i put an update scipt on it lol... but ill get that fixed also =D. . . and better navication , clean up the looks of it.... yea, just keep keep checking for updates =]
updating is as easy as opening the program ^_-
Download Flashtool and libusbx 1.0.14
Uncompress libusbx log into su and type this command
Code:
# ./configure
Now type this command
Code:
# make -B
Finally type this command
Code:
# make install -B
Congrats you have installed libusbx 1.0.14 :victory:
Now we have to add these rules but first connect your phone and type this command
Code:
lsusb
{
"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"
}
In my case is: Bus 003 Device 002: ID 0fce:615d Sony Ericsson Mobile Communications AB
Now grab this value
Code:
Bus 00x Device 00x: ID 0fce:[B]xxxx[/B] Sony Ericsson Mobile Communications AB
Finally we just add these rules at /etc/udev
Code:
SUBSYSTEM=="usb", ACTION=="add", SYSFS{idVendor}=="0fce", SYSFS{idProduct}=="[B]xxxx[/B]", MODE="0777"
Name the rules as 51-flashtool.rules
Uncompress Flashtool and run it as root
Credits go to Bin4ry & Androxyde
I was having some problems in back track but now its working thanks a lot!
Sent from my R800i using xda premium
BryanRG1996 said:
Code:
# make -B
Click to expand...
Click to collapse
in which dream did u see the make command working ? libusbx is missing.. to install it u need the dependaries first. after installing the dependaries it sais that automake command is missing. after installing automake it says that automake version is 1.13 and we need .1.13.4.
so libusbx cant be installed so flashtool is not working. reported from ubuntu 13.10. maybe u are on some very old ubuntu version ? i cant explain it in an other way....
Confused
I can't seem to understand ANY tutorial on this. Do we add the properties to 51-flashtool or 99-android? and what do I click on to run flashtool? I don't see anything executable in the folder
hi
could u tell me how to this part?? im new to ubuntu. searched but confused
inally we just add these rules at /etc/udev
Code:
SUBSYSTEM=="usb", ACTION=="add", SYSFS{idVendor}=="0fce", SYSFS{idProduct}=="xxxx", MODE="0777"
i cant figure how to add the line in etc/udev
Hy,when i try to login on the site i get the next message "Sorry, no support for the European user ". What can i do ?
Ok, the problem was the account,was made with te phone number. Made a new account with email and i managed to log in but now i get this
{
"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"
}
Use this link
https://emui.huawei.com/plugin/unlock/detail
Sign in with with your account then it will redirect you to the homepage. Just paste the same link again and request desktop(PC) site from the browser options if you are using your phone. You can translate the page if you want and you will get your unlock key instantly
Ahmedoov said:
Use this link
(remove the space before "com")
Sign in with with your account then it will redirect you to the homepage. Just paste the same link again and view the desktop page from the browser options if you are using your phone. You can translate the page if you want and you will get your unlock key instantly
Click to expand...
Click to collapse
You are a Sir!
Thanks
Ahmedoov said:
Use this link
(remove the space before "com")
Sign in with with your account then it will redirect you to the homepage. Just paste the same link again and view the desktop page from the browser options if you are using your phone. You can translate the page if you want and you will get your unlock key instantly
Click to expand...
Click to collapse
Exactly the same error :crying:
Sheldd said:
Exactly the same error :crying:
Click to expand...
Click to collapse
Use this: http://huaweip8lite.blogspot.com/2016/03/bootloader-huawei-p8-lite-14-huawei.html?q=bootloader
Open CMD or terminal and paste this code:
Code:
adb devices
Code:
adb shell
Code:
su -c "grep -m1 -aoE 'WVLOCK.{14}[0-9]{16}' /dev/block/mmcblk0p7 |grep -aoE '[0-9]{16}'"
And in next line you can see Unlock Code
xdk78 said:
Use this: http://huaweip8lite.blogspot.com/2016/03/bootloader-huawei-p8-lite-14-huawei.html?q=bootloader
Open CMD or terminal and paste this code:
Code:
adb devices
Code:
adb shell
Code:
su -c "grep -m1 -aoE 'WVLOCK.{14}[0-9]{16}' /dev/block/mmcblk0p7 |grep -aoE '[0-9]{16}'"
And in next line you can see Unlock Code
Click to expand...
Click to collapse
Doesn't work on Huawei Mate 10 Pro BLA-AL00. I get no such file or directory error.