diff options
author | Oliver O'Halloran <oohall@gmail.com> | 2020-04-23 16:27:32 +1000 |
---|---|---|
committer | Oliver O'Halloran <oohall@gmail.com> | 2020-04-23 16:27:32 +1000 |
commit | 0f1937ef40fca0c3212a9dff1010b832a24fb063 (patch) | |
tree | aae855faa976c4e0c383437cc3f94cb451f4014e /doc | |
parent | 9547b3da44d546f0083dd3aeb5436226fccf81e3 (diff) | |
download | skiboot-0f1937ef40fca0c3212a9dff1010b832a24fb063.zip skiboot-0f1937ef40fca0c3212a9dff1010b832a24fb063.tar.gz skiboot-0f1937ef40fca0c3212a9dff1010b832a24fb063.tar.bz2 |
skiboot v6.6 release notesv6.6
Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release-notes/skiboot-6.6.rst | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/doc/release-notes/skiboot-6.6.rst b/doc/release-notes/skiboot-6.6.rst new file mode 100644 index 0000000..b463fed --- /dev/null +++ b/doc/release-notes/skiboot-6.6.rst @@ -0,0 +1,65 @@ +.. _skiboot-6.6: + +skiboot-6.6 +=========== + +skiboot v6.6 was released on Wednesday April 22nd 2020. It is the first release +of skiboot 6.6 series, which becomes the new stable release following the +:ref:`skiboot-6.5` release, first released August 16th 2019. + +There hasn't been a skiboot release in a while and this release doesn't contain +a huge number of new features for users, just a lot of bug fixes, and additional +platform support. The next release should be a little more lively with a number +of internal refactorings and new features on the way. + +.. _skiboot-6.6-new-features: + +New features +------------ + +- Skiboot is now dual licensed as Apache 2.0 -OR- GPLv2+ + + There are some files still licensed Apache 2.0 only due to contributions + that we are unable to change the license of, but they are the minority. + +- Skiboot can now be built as little endian, thanks to Team Nick. + + Doing so requires building with: make LITTLE_ENDIAN=1 + +- OpenCAPI reset support + + This is to allow FPGA-based OpenCAPI devices to be re-flashed with a new + device image, then reset to activate the new image. Although it is based + on top of the existing PCI Hotplug support it does require some OS changes + to function. + +- The :ref:`OPAL_PHB_SET_OPTION` and :ref:`OPAL_PHB_GET_OPTION` OPAL calls + + These OPAL calls provide the OS with a means for controlling per-PHB + settings. Currently this allows the OS to enable or disable the the "Global + MMIO EEH Disable" and "4GTE" settings which are available on Power9 / PHB4. + See the PHB specification for more details. + +Removed features +---------------- + +- Fast-reboot is now disabled by default. + + Fast-reboot will continue to be supported, but as an opt-in feature rather + than the default. From the commit (ee07f2c68160) message:: + + This has two user visible changes: + + 1. Full reboot is now the default. In order to get fast-reboot as the + default the nvram option needs to be set: + + nvram -p ibm,skiboot --update-config fast-reset=1 + + 2. The nvram option to force a fast-reboot even when some part of + skiboot has called disable_fast_reboot() has changed from + 'fast-reset=im-feeling-lucky' to 'force-fast-reset=1' because + it's impossible to actually use that 'feature' if fast-reboot is + off by default. + + nvram -p ibm,skiboot --update-config force-fast-reset=1 + |