Note / FYI: re-locking the bootloader does NOT wipe your device (unlocking does, however).
Here's the "TL;DR" (too-long, didn't read) version for those that don't have USB connectivity issues and already know how to use fastboot:
Code:
fastboot devices (verify fastboot connectivity) fastboot oem lock (re-lock the device)
And here are the full, detailed instructions (click the "Show" button below):
A. if you already have the Android SDK installed with both the adb and fastboot utilities, go ahead and skip to step B.
If you don't have both adb and fastboot installed anywhere, it might be easiest to download and extract the sdk-tools.zip file referenced in the "Mini-SDK" section of this thread ADB Guide to a folder on your PC of your choosing (take note of this folder/directory's name).
B. turn off (power down) your device
C. connect the USB cable between the phone and your PC if you haven't already
D. on your PC, start-up a terminal session (Windows Command Prompt for Windows; Terminal for Mac or Linux) and navigate to the directory/folder where the adb and fastboot utilities are located:
+ for Windows, you need to start-up a Windows Command Prompt (DOS window) and type the following (for example, assuming that your adb / fastboot files are in the c:\sdk-tools folder):
Code:
cd c:\sdk-tools
Code:
cd sdk-tools
F. if you are using Windows, install the appropriate Samsung USB drivers
http://androidforums.com/galaxy-nexus-all-things-root/470831-big-how-thread-under-construction-check-back-soon.html#post3711706
G. let's verify that fastboot can "see" your device
note: for simplicity's sake, I'm using the generic "fastboot" command name here; your fastboot utility might actually be named:
+ for Windows: fastboot.exe or fastboot-windows.exe
+ for Linux: fastboot or fastboot-linux
+ for Mac: fastboot for fastboot-mac
- from your PC, enter the following to verify that the fastboot utility can see your phone:
For MS/Windows:
Code:
fastboot devices (list connected devices)
Code:
./fastboot devices (list connected devices)
Code:
sdk-tools> fastboot devices <device serial #> fastboot
For MS/Windows:
Code:
fastboot oem lock (re-lock the bootloader)
Code:
./fastboot oem lock (lock the bootloader)
If you simply wanted to re-lock the bootloader and now want to reboot your phone, you can issue a "fastboot reboot" (for Windows) or "./fastboot reboot" (for Mac/Linux) to reboot the device normally.
If you are not ready to reboot, but need to do other fastboot-related operations, then your phone is still in fastboot mode and ready for you.

0 comments:
Post a Comment