this post was submitted on 22 Nov 2025
505 points (97.7% liked)

Technology

76986 readers
2448 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
 

Halfway through he describes this as malicious compliance with the "right to repair" law. Apple and others are making a mockery of the law.

you are viewing a single comment's thread
view the rest of the comments
[–] partofthevoice@lemmy.zip 11 points 14 hours ago (3 children)

Yes, that one exactly. Good call out, but let’s be honest. There’s a big difference between Android and the Linux we know and love. It’s not about using the Linux kernel. There is no widespread, polished, supported mobile Linux distribution comparable to iOS or Android in reach (at least nothing functional for use as a phone). GNU/Linux distros on phones would be a warm welcome.

[–] ApertureUA@lemmy.today 1 points 1 hour ago

I use MUSL/Linux on a tablet btw

[–] user224@lemmy.sdf.org 7 points 12 hours ago (1 children)

Biggest issue is whatever is going on with mobile devices compared to desktop. I don't know what you call it here, drivers? But each device is just so closed down, you can't "just run" another software on it. I imagine if desktops also each required custom images based on model, people would only be using unmodified pre-installed Windows.

[–] ApertureUA@lemmy.today 1 points 1 hour ago* (last edited 1 hour ago)

Oh, see, unlike on x86 where you have the ACPI to detect hardware with minimal device quirks (still a lot of them), everything else doesn't have that. Well, except some Qualcomm chips, but their implementation sucks and basically only works reasonably with Windows and Windows Phone. So you need a device tree blob (DTB) to tell the kernel where everything is. But enabling all of the drivers in a single kernel build makes it not fit (the partition for that is traditionally quite tight), so you make different kernels per device.

AND, on Android in particular, lots of features need device specific configuration for all of the small stuff like the proximity sensor and the cameras (a LOT more complex than webcams). This + the need for OEMs to insert their own spyware and the already existing tradition at the time to make device specific images made the decision stick around. There's GSI, which basically forces the OEM to write drivers and all of that with a stable-ish API to make universal images possible, but it results in a system with lots of tiny inexplicable problems that slowly make you loose your sanity in my experience.

How postmarketOS handles it is that there are basically meta packages per device that depend on the kernel package appropriate to the device (sometimes for a whole platform or SoC, having multiple DTBs inside for each device) that flashes itself to the appropriate partition via a post installation hook, as well as all of the config files for apps that need device specific stuff and don't already have it upstream (like camera apps).

yhea, that's why it's only a technicality, I think it's just based on the Linux kernel.