On Fri, Aug 26, 2022 at 01:09:25PM +0000, Alyssa Ross wrote: > In some cases (e.g. a product built on Spectrum where updates to both > firmware and OS are delivered by the same vendor), it makes sense to > include firmware in the same image as the OS. This firmware tends to > live in the start of the image, after the GPT header. (The exact > location varies by board.) > > The 1 MiB reserved by sfdisk by default is not enough for this. The > conventional value seems to be 8 MiB. On NixOS, this is configurable > with the sdImage.firmwarePartitionOffset option, but this defaults to > 8 MiB and I wasn't able to find any examples in searches on DuckDuckGo > and GitHub of anybody using any other value, so it looks like 8 MiB is > broadly acceptable. Update: following some discussion in #spectrum, I'm now aware of a couple of changes we'd want to make if we went down this path: * We should use a "protective partition" in the GPT to identify firmware regions, rather than just offsetting the first partition, so it's clearer that that space is there and what it's used for, as described in the Embedded Boot Base Requirements (EBBR) spec[1]. * 8 MiB isn't enough for all boards. Specifically, with Rockchip + mainline U-Boot, the U-Boot image _starts_ at 8 MiB, so we'd want to reserve at least 16 MiB, and possibly more for forward compatibility. But another approach that was identified, that might work better, would be for "ports" of Spectrum that want to install firmware in the same image to just make their own GPTs, with space reserved for firmware as required, and copy the partitions from the Spectrum image into this new partition table. This way, we can avoid trying to find a one-size-fits-all solution to a problem that varies by platform, and avoid introducing configuration knobs unnecessarily. In Spectrum, partitions are always identified by UUID anyway, so it wouldn't matter if a downstream or end user moves them around as required. And we'll need to end up doing something like this at some point _anyway_, because to support dual boot setups our installer would need to be able to copy Spectrum partitions into place on the user's existing GPT. So I think that should be the path forward for Spectrum product images: have a script that creates a GPT, adds a partition for the platform firmware, then copies all the partitions from the Spectrum images into place after it. But as always, I'm open to further discussion if there's a problem with this approach. :) [1]: https://arm-software.github.io/ebbr/index.html#partitioning-of-shared-storage