From 15e6b337437b906a817a87481301dec53b77bb66 Mon Sep 17 00:00:00 2001 From: Anastasia Klimchuk Date: Mon, 20 Jan 2025 18:02:51 +1100 Subject: [PATCH] doc: Add recent entries into Recent development doc Normally the info would be added in the same patch, but these efforts were ongoing in parallel with release prep, which makes it hard to modify devel.rst at the same time. Change-Id: Ic852df125c9740d95dc1b9ad8ad97bfd56d40211 Signed-off-by: Anastasia Klimchuk Reviewed-on: https://review.coreboot.org/c/flashrom/+/86060 Tested-by: build bot (Jenkins) Reviewed-by: Peter Marheine Reviewed-by: Matt DeVillier --- doc/release_notes/devel.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/doc/release_notes/devel.rst b/doc/release_notes/devel.rst index bb2b73dd5..05fe4a0bf 100644 --- a/doc/release_notes/devel.rst +++ b/doc/release_notes/devel.rst @@ -16,3 +16,22 @@ Systems with AMD "Promontory" IO extenders (mostly "Zen" desktop platforms) are not currently supported. https://ticket.coreboot.org/issues/370 + +flashchips.c split into separate files by vendor +================================================ + +``flashchips.c`` file was split into separate files per vendor. flashchips.c still exists in the source +code but it is much smaller and only contain "generic" chip entries. + +With this, instead of one file ``flashchips.c`` we now have a ``flashchips/`` directory which contains +all the files. + +There are no changes to the usage, and everything that's supported stays the same. + +New features +============ + +-r/-w/-v argument is optional when using -i +------------------------------------------- + +See :doc:`/classic_cli_manpage` for details.