Why, instead of safely entering a BIOS setup, does the cell phone brick when installing the Custom ROM wrongly? Wouldn’t this protection be better for users? I mean, this could be done through ADB.

Also, do you think it’s possible that this way of doing things will come to the computer, with ARM hoping to gain a good share of the market and all?

172 points

Phones don’t brick with installing a ROM wrong just the same PCs don’t brick when you fail to install an OS correctly on it. It just doesn’t have a bootable OS on it.

Most phones have a download mode / fastboot which does exactly what you’re asking for. You can pretty much always reflash a valid OS with fastboot.

BIOS on PCs is used for compatibility because most hardware manufacturers want to be compatible with existing operating systems. ARM does support UEFI.

Phones just don’t have UEFI, because 99.999% of the time it will run only one operating system: the manufacturer’s flavor of Android. Skipping an UEFI makes it boot faster because it can load directly into the Linux kernel which will initialize the hardware and already knows the precise hardware it’s expecting to be present through its device tree. Chromebooks do that on x86 as well: they skip the firmware part and boot into Linux as early as possible, because it boots faster and it’s a ton of code you don’t need when you can just let Linux deal with it. Both are purpose built to run Linux, there’s no point wasting time with a whole firmware interface nobody should ever need. Fastboot is a perfectly fine low-level bootloader interface that lets you flash ROMs just fine.

permalink
report
reply
35 points
*

I found this very interesting detailed writeup from a developer of Asahi Linux about the difference in the boot process from an Intel UEFI and the current Apple silicon, starting at the M1. Mind you, this is from 2021, and surely some things have changed in respect to the M3, but this can give folks a general idea of maybe what to expect from BIOS/UEFI alternatives in the ARM chip space.

Comment from Hackernews: https://news.ycombinator.com/item?id=26114417

More detailed writeup on Github: https://github.com/AsahiLinux/docs/wiki/M1-vs.-PC-Boot

permalink
report
parent
reply
19 points

Apple is Apple, it’s not a super great example. They already had iBoot from the iPhones and iPads that they just adapted for the laptops, which is also what the M chips are. Apple’s firmware has always been rather quirky compared to more standard machines.

If you look at the cloud, like AWS and their Graviton instances, they use plain old regular UEFI but ARM, which then can load GRUB and the kernel as usual there. Completely generic and basically the same as x86_64 UEFI. You can load any generic ARM distro there. We already know what ARM PCs would look like.

The main thing here isn’t really x86 vs ARM, it’s embedded vs PCs. You can totally have non-BIOS and non-UEFI compatible machines with x86 CPUs in them, but I only saw this being done embedded in devices, in my case those were industrial machines. With ARM you’ll also see U-boot which is common in stuff like routers and IoT devices because it’s fairly easy to get working and can be controlled with serial ports. But for PCs, it’s gonna be UEFI if anything because Windows support. In the end, CPU is CPU, it runs code.

Why not UEFI everywhere then? Because it’s overkill most of the time, and orders of magnitude more code and complexity which you just don’t need for a router. Your router can start executing its operating system directly from flash. You know in advance where the kernel is located, you don’t need to start initializing PCIe devices and a SATA controller and scan disks for GPT headers and find an EFI partition formatted as FAT32 to find an executable to load into memory and execute, no graphics card to initialize, no keyboard and mouse to monitor for menu, no menus to display because there’s no options, etc. UEFI firmwares aren’t small. The arm64 OVMF firmware for QEMU is a whopping 64MB, that’s more flash than my router even have.

permalink
report
parent
reply
3 points
*

A bootloader is a bootloader is a bootloader be it grub or legacy or uefi or coreboot. However most hardware that isn’t a phone or an appliance, be it firewall or smartfridge have a BIOS which might be the nature of the original question.

Why’s it so goddamned hard to put desktop linux on my phone.

permalink
report
parent
reply
7 points

RISC-V may be of interest to you

permalink
report
parent
reply
30 points

Phones just don’t have UEFI, because 99.999% of the time it will run only one operating system: the manufacturer’s flavor of Android.

And the manufacturers very much want to keep it that way.

They do not want you to be able to make those changes, and intentionallyput roadblocks in your way.

permalink
report
parent
reply
13 points
*

Unified Extensible Firmware Interface isn’t how we spell planned obsolescence and that doesn’t add up to infinite profit sooooo yeah.

Can’t have you replacing the OS on that thing. Adding security patches and a new battery on that. Just wouldn’t be fair to us billionaires and our R&D department. We have to justify all this labor somehow.

permalink
report
parent
reply
2 points

You can replace the OS on most Android devices.

Specifically- devices made by Google have been unlocked allowing replacement of the software.

You still have to put together a working kernel and drivers, environment, etc.

Not much stopping folks from doing that though.

GrapheneOS, Ubuntu, and others have made headway for some devices.

Each device potentially uses different hardware implementation and features.

permalink
report
parent
reply
11 points

Or, maybe writing firmware and code that doesn’t make money is the opposite of profit.

Where is the incentive to write code that reduces security and costs money they won’t recover ?

permalink
report
parent
reply
32 points
*

There is a BIOS - a Basic Input Output System, usually made by the SoC manufacturer that acts as a bootloader shim to get the Android bootloader going (fastboot/recovery menu level here) which then loads the Android kernel. It’s the same as UEFI or the legacy BIOS, but it does not come with a configuration utility which is the menu that most people think of when they think of “BIOS” I.e. “going into the bios”.

A BIOS does not inherently have to have a configuration utility.

Unlike an UEFI implementation on modern AMD64 systems, the typical ARM bootrom is a masked rom written to flash-once memory.

This bootrom performs the same vital functions as a bios though, i.e. sending key instructions and data (including setup of requirements) to the processor for it to start executing the bootloader program off of memory, in this case the android bootloader.

Contrary to popular belief and the top comment ITT at the time of initially writing this, android does not use the Linux kernel, it’s based on an LTS Linux kernel, but highly modified with patches to form the ACKs. https://source.android.com/docs/core/architecture/kernel

Without the config utility the ARM SoC BIOS is largely hidden from the user, but the veil is lifted when it fails in spectacular ways: https://en.m.wikipedia.org/wiki/Qualcomm_EDL_mode

permalink
report
reply
21 points
*

A BIOS does not inherently have to have a configuration utility.

This right here.

My first PC (a 386 circa 1989) did not have a built-in config utility. It had a bootable floppy disk that could configure the BIOS settings. I think all it could change was the system time and the CHS values of the hard drive(s).

permalink
report
parent
reply
9 points

Kinda funny how we’ve somewhat returned to that. Modern EFIs typically let you change settings from within your OS. I remember having a motherboard in like 2011 or 2012 with a great GUI that let me tweak everything. I’d set an overclock in the OS and just reboot for it to take effect.

Not sure why more boards don’t offer this anymore other than maybe security. But like with cryptic ass programs I can still change bios settings.

permalink
report
parent
reply
24 points

There is a bios, but it is hidden really well for the user experience

permalink
report
reply
21 points
*

Why, instead of safely entering a BIOS setup

effiency and lawsuits, phones has embedded hardware, its a bit op to have that initial hardware calls for a embedded hardware system.

BIOS is initally an IBM tech

_does the cell phone brick when installing the Custom ROM wrongly? _

Android is based on linux, that includes the partitioned bootloader (mostly grub on linux and fastboot on android, they’re not technically the same but the idea is somewhat related) if that partition is messed up then its most likely not to boot

Wouldn’t this protection be better for users? I mean, this could be done through ADB.

Android is owned by a corporation, I dont think that will be their primary objective

Also, do you think it’s possible that this way of doing things will come to the computer, with ARM hoping to gain a good share of the market and all?

ARM is mostly a cpu design corporation that offers license fee to other companies to manufacture thier cpu designs, they’re everywhere. It depends on thier licensees what to add to make profit.

permalink
report
reply
20 points

ACKSHUALLY

Most modern PCs don’t have a BIOS, either.

They have a UEFI, a Unified Extensible Firmware Interface.

*pushes glasses up nose.

Don’t bother giving me a wedgie, I can do it myself.

permalink
report
reply
7 points

I think you just gave me a wedgie because I thought UEFI was the same… But reflecting, I don’t think I have had to use the BIOS since I used Windows 98…

permalink
report
parent
reply
10 points

Bios died out around 2010. It lasted a good long time. Your could argue a boot menu is bios and you’ve probably interacted with that at some point.

Also nobody stopped calling it a bios. Every motherboard I’ve owned with a UEFI has called it a “UEFI bios”.

permalink
report
parent
reply
4 points

I switched to a Linux OS in '08 and haven’t really paid attention since. I’ve done a little partition work but I’m no superuser… I probably have a UEFI and don’t know it. My days of using the bible are gone haha

permalink
report
parent
reply
1 point

Bios died out around 2010

My Acer Predator from 2019: “I’m about to blow this man’s mind”

A thin client from Asus circa 09? Uefi, no problem. A 3k Acer gaming laptop from 19? We can’t fit something so cutting-edge into the budget!

permalink
report
parent
reply
3 points

Love this

permalink
report
parent
reply

Technology

!technology@lemmy.world

Create post

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


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  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, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


Community stats

  • 18K

    Monthly active users

  • 4.8K

    Posts

  • 84K

    Comments