Project

General

Profile

GalaxyTab2AndGalaxyNexusBootloaderFreedom » History » Version 7

Denis 'GNUtoo' Carikli, 02/03/2020 01:15 PM

1 1 Denis 'GNUtoo' Carikli
h1. GalaxyTab2Bootloader
2
3 7 Denis 'GNUtoo' Carikli
h2. Galaxy Nexus (I9250)
4
5
To get the bootrom to try to boot on USB, you need to do the following:
6
* Connect the USB cable to the device but make sure it's not connected on the computer.
7
* Power off the device
8
* Connect the USB cable
9
10
<pre>
11
# omap-usb-boot -w -v load u-boot.img 
12
Finding and opening USB device
13
Found and opened omap4 USB device: OMAP4440
14
ASIC device id: 4440, HS device
15
Loading and executing u-boot.img...
16
Loading data with length 369176 bytes
17
Bulk USB transfer failed
18
Loading and executing failed
19
</pre>
20
21 3 Denis 'GNUtoo' Carikli
h2. Galaxy Tab 2 7" GSM
22
23
To get the bootrom to try to boot on USB, you need to do the following:
24
* Connect the USB cable to the device but make sure it's not connected on the computer.
25
* Power off the device
26
* Connect the USB cable
27
28
If we do that, we get the following in the kernel log of your laptop:
29 4 Denis 'GNUtoo' Carikli
<pre>
30 1 Denis 'GNUtoo' Carikli
usb 1-1: new high-speed USB device number 6 using ehci-pci
31
usb 1-1: unable to get BOS descriptor or descriptor too short
32
usb 1-1: New USB device found, idVendor=0451, idProduct=d00f, bcdDevice= 0.00
33
usb 1-1: New USB device strings: Mfr=33, Product=37, SerialNumber=0
34
usb 1-1: Product: OMAP4430
35
usb 1-1: Manufacturer: Texas Instruments
36
usb 1-1: USB disconnect, device number 6
37
</pre>
38 3 Denis 'GNUtoo' Carikli
39
We can also try to get a bit more infos with omap-usb-boot:
40
<pre>
41
omap-usb-boot -w -v load u-boot.img 
42
Finding and opening USB device
43
Found and opened omap4 USB device: OMAP4430
44
ASIC device id: 4430, HS device
45
Loading and executing u-boot.img...
46
Loading data with length 369176 bytes
47
Bulk USB transfer failed
48
Loading and executing failed
49
</pre>
50
51
Here we know the device is signed because it's a "HS device".
52
If it was not signed it would print "GP device" instead.
53 5 Denis 'GNUtoo' Carikli
54 6 Denis 'GNUtoo' Carikli
h2. TODO
55
56 5 Denis 'GNUtoo' Carikli
There might be some pointers and interesting infos in the following link: https://www.lukastomek.info/2018/11/05/UnBrick-Samsung-Galaxy-Tab/
57 6 Denis 'GNUtoo' Carikli
58
That link also points to an "u-boot port for the P5100":https://gogs.lukastomek.info/lukas/u-boot.
59
60
TODO:
61
* Read the first link and see what's interesting in it and add it on the wiki.
62
* Look at how the u-boot port for the P5100 is supposed to run. Is the Xloader signed?