Introducing XDA:DevCon – A Conference For Developers By Developers
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
x3maniac
Old
#1921  
Recognized Developer
Thanks Meter 367
Posts: 352
Join Date: Sep 2008
Location: New York

 
DONATE TO ME
Quote:
Originally Posted by Barracuda96 View Post
Tried to flash CWM on my TF101 by running as instructed but the script just stops like below, anyone knows why and how I can flash CWM on my TF101?



After this its just stops, have been trying several times and nothing happens, have waited a long time and it just doesn't happen anything else, anyone know why?
download this version i have uploaded on my site http://www.novaspirit.com/tubuntu/OL...elie-sbkv2.tgz

use wheelie located in the /bins/ folder
Code:
/path/to/wheelie -1 -o 0x300d8011 --bl /path/to/bootloader.bin -c /path/to/transformer.bct
this will get it to phone download mode
then this command will flash it
Code:
/path/to/nvflash -r --download 5 /path/to/recovery.img
Quote:
download 5 is the recovery partition
-d
[DualBoot TF101] - [Wx86/Wx64] Tubuntu dual boot one click tool
[USB Cleaver] [APP] [BETA] - Password recovery and foresics tool.
[Photo Share Web Server] [APP] [XDA]- Turns your phone to a web server with a very attractive gallery of your photos.
[Portable Tool Kit] [APP] [XDA]- Download PC repair tools on your portable device.
[www.novaspirit.com] - My experiences w/ google market
 
Barracuda96
Old
#1922  
Barracuda96's Avatar
Member
Thanks Meter 6
Posts: 54
Join Date: Oct 2012
Location: Skåne
When I run the first code I get this

Code:
Wheelie 0.1 - Preflight for nvflash.
Copyright (c) 2011-2012 androidroot.mobi
========================================

Using SBK type 1.
Using bootloader: 'images/bootloader.bin'.
Using BCT: 'images/transformer.bct'.
----------------------------------------

libusb:error [op_open] libusb couldn't open USB device /dev/bus/usb/001/008: Permission denied.
libusb:error [op_open] libusb requires write access to USB device nodes.
[-] Device detection failed with error -3.
christian@ubuntu:~/Hämtningar/OLiFE-wheelie-sbkv2 (2)$ bins/wheelie -1 -o 0x300d8011 --bl images/bootloader.bin -c images/transformer.bct
Wheelie 0.1 - Preflight for nvflash.
Copyright (c) 2011-2012 androidroot.mobi
========================================

Using SBK type 1.
Using bootloader: 'images/bootloader.bin'.
Using BCT: 'images/transformer.bct'.
----------------------------------------

libusb:error [op_open] libusb couldn't open USB device /dev/bus/usb/001/008: Permission denied.
libusb:error [op_open] libusb requires write access to USB device nodes.
[-] Device detection failed with error -3.
and then when I run the second code I get

Code:
christian@ubuntu:~/Hämtningar/OLiFE-wheelie-sbkv2 (2)$ bins/nvflash -r --download 5 images/recovery.img
bash: bins/nvflash: No such file or directory
 
x3maniac
Old
#1923  
Recognized Developer
Thanks Meter 367
Posts: 352
Join Date: Sep 2008
Location: New York

 
DONATE TO ME
Quote:
Originally Posted by Barracuda96 View Post
When I run the first code I get this

Code:
Wheelie 0.1 - Preflight for nvflash.
Copyright (c) 2011-2012 androidroot.mobi
========================================

Using SBK type 1.
Using bootloader: 'images/bootloader.bin'.
Using BCT: 'images/transformer.bct'.
----------------------------------------

libusb:error [op_open] libusb couldn't open USB device /dev/bus/usb/001/008: Permission denied.
libusb:error [op_open] libusb requires write access to USB device nodes.
[-] Device detection failed with error -3.
christian@ubuntu:~/Hämtningar/OLiFE-wheelie-sbkv2 (2)$ bins/wheelie -1 -o 0x300d8011 --bl images/bootloader.bin -c images/transformer.bct
Wheelie 0.1 - Preflight for nvflash.
Copyright (c) 2011-2012 androidroot.mobi
========================================

Using SBK type 1.
Using bootloader: 'images/bootloader.bin'.
Using BCT: 'images/transformer.bct'.
----------------------------------------

libusb:error [op_open] libusb couldn't open USB device /dev/bus/usb/001/008: Permission denied.
libusb:error [op_open] libusb requires write access to USB device nodes.
[-] Device detection failed with error -3.
and then when I run the second code I get

Code:
christian@ubuntu:~/Hämtningar/OLiFE-wheelie-sbkv2 (2)$ bins/nvflash -r --download 5 images/recovery.img
bash: bins/nvflash: No such file or directory
you need root access. try using "sudo"

and the second command mean your not setting the right path try using
Code:
./bins/nvflash -r --download 5 ../images/recovery.img
-d
[DualBoot TF101] - [Wx86/Wx64] Tubuntu dual boot one click tool
[USB Cleaver] [APP] [BETA] - Password recovery and foresics tool.
[Photo Share Web Server] [APP] [XDA]- Turns your phone to a web server with a very attractive gallery of your photos.
[Portable Tool Kit] [APP] [XDA]- Download PC repair tools on your portable device.
[www.novaspirit.com] - My experiences w/ google market
 
Barracuda96
Old
#1924  
Barracuda96's Avatar
Member
Thanks Meter 6
Posts: 54
Join Date: Oct 2012
Location: Skåne
Still getting an error :/

Code:
christian@ubuntu:~/Hämtningar/OLiFE-wheelie-sbkv2 (2)$ sudo bins/wheelie -1 -o 0x300d8011 --bl images/bootloader.bin -c images/to/transformer.bct
Wheelie 0.1 - Preflight for nvflash.
Copyright (c) 2011-2012 androidroot.mobi
========================================

Using SBK type 1.
Using bootloader: 'images/bootloader.bin'.
BCT: 'images/to/transformer.bct' does not exist!
Usage: wheelie [options] --bl <bootloader file> --bct <bct file>

Argument                Description

-v or --version         Display version information
-h or --help            Display this menu
-1 or --sbkv1           Use wheelie for SBKv1 devices
-2 or --sbkv2           Use wheelie for SBKv2 devices
-s or --sbk             Set SBK for devices not officially supported by wheelie
-o or --odm             set the odmdata (Required for operation.) Example: 0x300d8011
--bl or --bootloader    Set the bootloader filename (required for operation)
-c or --bct             Set the BCT filename (required for operation)

christian@ubuntu:~/Hämtningar/OLiFE-wheelie-sbkv2 (2)$ . bins/nvflash -r --download 5 ../images/recovery.img
bash: .: bins/nvflash: cannot execute binary file
christian@ubuntu:~/Hämtningar/OLiFE-wheelie-sbkv2 (2)$
 
x3maniac
Old
#1925  
Recognized Developer
Thanks Meter 367
Posts: 352
Join Date: Sep 2008
Location: New York

 
DONATE TO ME
Quote:
Originally Posted by Barracuda96 View Post
Still getting an error :/

Code:
christian@ubuntu:~/Hämtningar/OLiFE-wheelie-sbkv2 (2)$ sudo bins/wheelie -1 -o 0x300d8011 --bl images/bootloader.bin -c images/to/transformer.bct
Wheelie 0.1 - Preflight for nvflash.
Copyright (c) 2011-2012 androidroot.mobi
========================================

Using SBK type 1.
Using bootloader: 'images/bootloader.bin'.
BCT: 'images/to/transformer.bct' does not exist!
Usage: wheelie [options] --bl <bootloader file> --bct <bct file>

Argument                Description

-v or --version         Display version information
-h or --help            Display this menu
-1 or --sbkv1           Use wheelie for SBKv1 devices
-2 or --sbkv2           Use wheelie for SBKv2 devices
-s or --sbk             Set SBK for devices not officially supported by wheelie
-o or --odm             set the odmdata (Required for operation.) Example: 0x300d8011
--bl or --bootloader    Set the bootloader filename (required for operation)
-c or --bct             Set the BCT filename (required for operation)

christian@ubuntu:~/Hämtningar/OLiFE-wheelie-sbkv2 (2)$ . bins/nvflash -r --download 5 ../images/recovery.img
bash: .: bins/nvflash: cannot execute binary file
christian@ubuntu:~/Hämtningar/OLiFE-wheelie-sbkv2 (2)$
your using the wrong paths
[DualBoot TF101] - [Wx86/Wx64] Tubuntu dual boot one click tool
[USB Cleaver] [APP] [BETA] - Password recovery and foresics tool.
[Photo Share Web Server] [APP] [XDA]- Turns your phone to a web server with a very attractive gallery of your photos.
[Portable Tool Kit] [APP] [XDA]- Download PC repair tools on your portable device.
[www.novaspirit.com] - My experiences w/ google market
 
Barracuda96
Old
#1926  
Barracuda96's Avatar
Member
Thanks Meter 6
Posts: 54
Join Date: Oct 2012
Location: Skåne
Quote:
Originally Posted by x3maniac View Post
your using the wrong paths
Yeah corrected it and now it goes into phone mode but still when I enter the next code it says

Code:
christian@ubuntu:~/Hämtningar/OLiFE-wheelie-sbkv2 (2)$ . bins/nvflash -r --download 5 ../images/recovery.img
bash: .: bins/nvflash: cannot execute binary file
 
x3maniac
Old
#1927  
Recognized Developer
Thanks Meter 367
Posts: 352
Join Date: Sep 2008
Location: New York

 
DONATE TO ME
Quote:
Originally Posted by Barracuda96 View Post
Yeah corrected it and now it goes into phone mode but still when I enter the next code it says

Code:
christian@ubuntu:~/Hämtningar/OLiFE-wheelie-sbkv2 (2)$ . bins/nvflash -r --download 5 ../images/recovery.img
bash: .: bins/nvflash: cannot execute binary file
wrong path again.
Code:
./bins/nvflash -r --download 5 ./images/recovery.img
-d
[DualBoot TF101] - [Wx86/Wx64] Tubuntu dual boot one click tool
[USB Cleaver] [APP] [BETA] - Password recovery and foresics tool.
[Photo Share Web Server] [APP] [XDA]- Turns your phone to a web server with a very attractive gallery of your photos.
[Portable Tool Kit] [APP] [XDA]- Download PC repair tools on your portable device.
[www.novaspirit.com] - My experiences w/ google market
 
Barracuda96
Old
#1928  
Barracuda96's Avatar
Member
Thanks Meter 6
Posts: 54
Join Date: Oct 2012
Location: Skåne
Quote:
Originally Posted by x3maniac View Post
wrong path again.
Code:
./bins/nvflash -r --download 5 ./images/recovery.img
-d
Yeah but then it doesn't found the directory

Code:
christian@ubuntu:~/Hämtningar/OLiFE-wheelie-sbkv2 (2)$ ./bins/nvflash -r --download 5 ../images/recovery.img
bash: ./bins/nvflash: No such file or directory
 
x3maniac
Old
#1929  
Recognized Developer
Thanks Meter 367
Posts: 352
Join Date: Sep 2008
Location: New York

 
DONATE TO ME
Quote:
Originally Posted by Barracuda96 View Post
Yeah but then it doesn't found the directory

Code:
christian@ubuntu:~/Hämtningar/OLiFE-wheelie-sbkv2 (2)$ ./bins/nvflash -r --download 5 ../images/recovery.img
bash: ./bins/nvflash: No such file or directory
either you didn't extract the nvflash file or it's places some where else. first try to look for it either ls the directory or use the find command.. and also you need to run nvflash using sudo or as root user.

p.s. i'm not trying to be mean. please don't take this the wrong way. but these are all basic linux commands and seem like your not a linux user... so if your having a hard time use my tubuntu app for windows, you can get it from the sig. just dont want you to do more harm to your device if your not too sure on what you are doing.

-d
[DualBoot TF101] - [Wx86/Wx64] Tubuntu dual boot one click tool
[USB Cleaver] [APP] [BETA] - Password recovery and foresics tool.
[Photo Share Web Server] [APP] [XDA]- Turns your phone to a web server with a very attractive gallery of your photos.
[Portable Tool Kit] [APP] [XDA]- Download PC repair tools on your portable device.
[www.novaspirit.com] - My experiences w/ google market

 
Post Reply+
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Go to top of page...