this post was submitted on 21 Aug 2025
349 points (98.9% liked)

memes

17090 readers
2212 users here now

Community rules

1. Be civilNo trolling, bigotry or other insulting / annoying behaviour

2. No politicsThis is non-politics community. For political memes please go to !politicalmemes@lemmy.world

3. No recent repostsCheck for reposts when posting a meme, you can only repost after 1 month

4. No botsNo bots without the express approval of the mods or the admins

5. No Spam/Ads/AI SlopNo advertisements or spam. This is an instance rule and the only way to live. We also consider AI slop to be spam in this community and is subject to removal.

A collection of some classic Lemmy memes for your enjoyment

Sister communities

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] NeatNit@discuss.tchncs.de 9 points 1 week ago (1 children)

It's called suspension of disbelief! If this were real, could it work?

[โ€“] xia@lemmy.sdf.org 3 points 1 week ago

In theory, yes. There is a first-stage bootloader (that actually finds, loads, verifies, and jumps-into fastboot) baked into the hardware (implemented in fuses and ROMs [like REAL roms, not "flashable" ROMs]), and AFAIK it cannot effectively be modified after the phone is manufactured, so they try to keep it as simple as possible.

So if it were real, the psuedocode would be something like this:

var fastbootPartition=locateFastbootPartition();

if (fastbootPartition == null || !verifySignature(fastbootPartition))
{
     // AFAIK, this code block is already a thing in production, but the
    // message is more like a "signature failed" or "corrupted" than
    // a "you done goofed".
    displayRudeMessage();
    halt();
}

var fastbootAddress=load(fastBootPartition);
jumpTo(fastbootAddress);