It doesn't seem bricked from what you have said.
If bootloader is unlocked try the installer again, maybe from another machine or try another port or usb lead.
Posts
-
RE: Fairphone 5 bricked while attempting to install Ubuntu Touch
-
RE: Please help with installation
@knuddel823 It's recommended to install Fairphone version of Android 13 as per the install instructions.
https://devices.ubuntu-touch.io/device/fp5/release/noble/#installerDownload -
RE: calender doesn't want to be installed
Run the installer, it should detect your device and then use the option to reinstall but don't tick the wipe personal data option.
-
RE: android 14 shipped with new FP5, do I need to move to 13?
@RJDan Yes you need the Fairphone version as per the install instructions.
https://devices.ubuntu-touch.io/device/fp5/#installerDownload -
RE: calender doesn't want to be installed
@keb You can use the installer to reinstall without wiping personal data.
If that doesn't fix it you can try backup calls, messages and your personal files then full wipe. -
RE: calender doesn't want to be installed
I am not certain if this is the issue but I had similar issues with the Music app.
I found if you remove one of the core apps it leaves a broken symlink in /opt
When you remove that symlink and reboot you can get it from the openstore again. -
RE: (No longer Updated) - Feature Report - CatWithCode
I don't have the same findings as yourself.
I think it's at the point were I'm not sure how useful a long list of "working" things is.
There are things that seem to work but break or have regressions between the quick update cycles.GPS is fine, it takes a very long time with the screen on to get your first fix. If you use the GPS from then daily (I've had the weather app set to detect location), GPS is relatively quick to fix.
Camera you occasionally get a black screen and have to flip between front and rear camera in the app.
I can't get any USB DAC to work to far. I'm using bluetooth headset for now.
Libertine will not install due to libc6 mentioned in another recent thread.
Convergence (Desktop) mode is very clunky to switch between and has slight issues but "works"
No issues with vibration what so ever, in fact I'm very happy with it.
I'm not sure works as a stopgap is fair. It's not perfect and I feel UT as a whole is lacking some QOL features but totally useable for a Devel branch device. I have no requirement for a backup device.
I'm hopeful Noble will iron most of the above out anyway. -
RE: For devices with no Notification LED is it possible to use flashlight instead?
To progress further with the initial flashlight idea, controlling the flash directly appears to work fine in the following way.
#!/usr/bin/env bash flashOff() { printf '%s' "0" > /sys/class/leds/led:torch_0/brightness printf '%s' "0" > /sys/class/leds/led:switch_0/brightness } flashOn() { # 2 appears to be the minimum brightness value possible printf '%s' "2" > /sys/class/leds/led:torch_0/brightness printf '%s' "1" > /sys/class/leds/led:switch_0/brightness }
So with a loop I can have a nice flashing pattern at the minimum brightness.
Just need to find what to hook into so I can have it only running only while there is a green notifications icon.As for using the screen, I think the green envelope icon, possibly slowly moving along the top edge of the screen (to minimise any burn in); would be a nice option there.
-
RE: For devices with no Notification LED is it possible to use flashlight instead?
This isn't a feature in Ubuntu Touch yet either is it?
Would there be any burn in concerns using the screen?
I certainly miss having a flicker of a notification led every few seconds for missed calls and messages.
I didn't expect to miss a small feature so much on this device. -
RE: For devices with no Notification LED is it possible to use flashlight instead?
Comparing with flashlight on and off.
Off
/sys/class/led/led:switch_0/brightness = 0
/sys/class/led/led:torch_0/brightness = 0
/sys/class/led/led:torch_3/brightness = 0On
/sys/class/led/led:switch_0/brightness = 1
/sys/class/led/led:torch_0/brightness = 127
/sys/class/led/led:torch_3/brightness = 127I'll need to test if changing these will trigger the light, certainly just making switch_0 = 1 doesn't work.
Not sure if this is the correct way to interface with these.As for monitoring for new messages I'm wondering if dbus-monitor could be used...
-
For devices with no Notification LED is it possible to use flashlight instead?
Would it be possible to have an option to trigger the flashlight as a subtle notification LED.
Ideally as part of UT but open to other temporary solutions.