diff options
author | Vasant Hegde <hegdevasant@linux.vnet.ibm.com> | 2019-03-21 16:16:12 +0530 |
---|---|---|
committer | oohal <oohal@users.noreply.github.com> | 2019-07-23 16:52:36 +1000 |
commit | 04313a64c1985d252c10ab5f9fa791c1264174dc (patch) | |
tree | 5847f863d4efc791b7ca2e5b39e268bc3e49d1d6 | |
parent | fc1994c4f73e9f41481b380a898a4e6cf29f5226 (diff) | |
download | skiboot-5.10.7.zip skiboot-5.10.7.tar.gz skiboot-5.10.7.tar.bz2 |
skiboot 5.10.7 release notesv5.10.7skiboot-5.10.x
Signed-off-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com>
-rw-r--r-- | doc/release-notes/skiboot-5.10.7.rst | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/release-notes/skiboot-5.10.7.rst b/doc/release-notes/skiboot-5.10.7.rst new file mode 100644 index 0000000..02c4dd2 --- /dev/null +++ b/doc/release-notes/skiboot-5.10.7.rst @@ -0,0 +1,37 @@ +.. _skiboot-5.10.7: + +============== +skiboot-5.10.7 +============== + +skiboot 5.10.7 was released on Friday March 21st, 2019. It replaces +:ref:`skiboot-5.10.6` as the current stable release in the 5.10.x series. + +It is expected that this will be the final 5.10.x version, with 6.2.x taking +over as the main stable branch. + +Over :ref:`skiboot-5.10.6`, we have the following fixes: + +- libffs: Fix string truncation gcc warning. + + Use memcpy as other libffs functions do. + +- hdata/i2c.c: fix building with gcc8 + + hdata/test/../i2c.c:200:1: error: alignment 1 of ‘struct host_i2c_hdr’ is less than 4 [-Werror=packed-not-aligned] + } __packed; + ^ + +- opal-prd: Fix opal-prd crash + + Presently callback function from HBRT uses r11 to point to target function + pointer. r12 is garbage. This works fine when we compile with "-no-pie" option + (as we don't use r12 to calculate TOC). + + As per ABIv2 : "r12 : Function entry address at global entry point" + + With "-pie" compilation option, we have to set r12 to point to global function + entry point. So that we can calculate TOC properly. + + Crash log without this patch: + opal-prd[2864]: unhandled signal 11 at 0000000000029320 nip 00000 00102012830 lr 0000000102016890 code 1 |