Jolla Phone (jolla-sbj): Difference between revisions
Appearance
PureTryOut (talk | contribs) |
PureTryOut (talk | contribs) Added USB connection instructions |
||
Line 34: | Line 34: | ||
The Jolla phone uses fastboot from the Mer project rather than Android. To enter fastboot shut down the device, then plug in the USB lead while holding down volume down. | The Jolla phone uses fastboot from the Mer project rather than Android. To enter fastboot shut down the device, then plug in the USB lead while holding down volume down. | ||
== USB connection == | |||
The USB connection works, but needs some manual configuration (as found [https://wiki.postmarketos.org/wiki/USB_Network#Assigning_an_IP_address here]). | |||
First, find the interface name using <code>ip a</code>. | |||
Then, we have to assign the device a mac address (replace the interface name with what you found from the previous command). | |||
<source> | |||
# ip l set enp1s0f0u3: address 12:12:12:12:12:12 | |||
</source> | |||
Lastly, add an IP address. | |||
<source> | |||
# ip address add dev enp1s0f0u3 172.16.42.2/24 | |||
</source> | |||
You can now use SSH to connect to the device on <code>172.16.42.1</code>. | |||
== Links == | == Links == |
Revision as of 11:30, 21 February 2018
![]() Jolla Phone | |
Manufacturer | Jolla |
---|---|
Name | Phone (?) |
Codename | sbj |
Released | 2013 |
Hardware | |
Chipset | Qualcomm Snapdragon 400 |
CPU | Dual-core 1.4 GHz Krait 300 |
GPU | Adreno 305 |
Display | 540x960 IPS |
Storage | 16 GB |
Memory | 1 GB |
Software | |
Original software | Sailfish 1 |
postmarketOS | |
Category | testing |
Pre-built images | no |
Mainline | no |
Flashing |
No data |
---|---|
USB Networking |
No data |
Internal storage |
No data |
SD card |
No data |
Battery |
No data |
Screen |
No data |
Touchscreen |
No data |
Multimedia | |
3D Acceleration |
No data |
Audio |
No data |
Camera |
No data |
Camera Flash |
No data |
Connectivity | |
WiFi |
No data |
Bluetooth |
No data |
GPS |
No data |
NFC |
No data |
Modem | |
Calls |
No data |
SMS |
No data |
Mobile data |
No data |
Miscellaneous | |
FDE |
No data |
USB OTG |
No data |
HDMI/DP |
No data |
Sensors | |
Accelerometer |
No data |
Magnetometer |
No data |
Ambient Light |
No data |
Proximity |
No data |
Hall Effect |
No data |
Haptics |
No data |
Barometer |
No data |
Contributors
- MartijnBraam
- PureTryOut
What works
- Compiling the kernel from the Jolla sources which should provide everything to run Wayland since that's what Sailfish uses
- Booting
- USB
- SSH (after some manual configuration)
What does not work
- Flashing, still need to find the correct offsets
Flashing mode
The Jolla phone uses fastboot from the Mer project rather than Android. To enter fastboot shut down the device, then plug in the USB lead while holding down volume down.
USB connection
The USB connection works, but needs some manual configuration (as found here).
First, find the interface name using ip a
.
Then, we have to assign the device a mac address (replace the interface name with what you found from the previous command).
# ip l set enp1s0f0u3: address 12:12:12:12:12:12
Lastly, add an IP address.
# ip address add dev enp1s0f0u3 172.16.42.2/24
You can now use SSH to connect to the device on 172.16.42.1
.