diff options
author | Renato Botelho <renato@netgate.com> | 2016-08-17 15:23:38 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-08-17 15:23:38 -0300 |
commit | 75cd8d40056c799f03b759475d9bfd10ba266a6c (patch) | |
tree | 60433235501684bffeab90e65139a8285fcf46a9 /release | |
parent | 99990a0d149f0eae805aa1f49d4a61be30c3b000 (diff) | |
parent | ad413762f28e3be343987e707b9cf4f10f963693 (diff) | |
download | FreeBSD-src-75cd8d40056c799f03b759475d9bfd10ba266a6c.zip FreeBSD-src-75cd8d40056c799f03b759475d9bfd10ba266a6c.tar.gz |
Merge remote-tracking branch 'origin/stable/10' into devel
Diffstat (limited to 'release')
-rw-r--r-- | release/doc/share/xml/errata.xml | 56 | ||||
-rwxr-xr-x | release/release.sh | 8 |
2 files changed, 63 insertions, 1 deletions
diff --git a/release/doc/share/xml/errata.xml b/release/doc/share/xml/errata.xml index f5c93bc..a1453e9 100644 --- a/release/doc/share/xml/errata.xml +++ b/release/doc/share/xml/errata.xml @@ -48,6 +48,62 @@ <entry><para>Fix &man.freebsd-update.8; support of &os; 11.0-RELEASE</para></entry> </row> + + <row> + <entry><link + xlink:href="&security.url;/FreeBSD-EN-16:10.dhclient.asc">FreeBSD-EN-16:10.dhclient</link></entry> + <entry>11 August 2016</entry> + <entry><para>Better handle unknown options received from + aDHCP server</para></entry> + </row> + + <row> + <entry><link + xlink:href="&security.url;/FreeBSD-EN-16:11.vmbus.asc">FreeBSD-EN-16:11.vmbus</link></entry> + <entry>11 August 2016</entry> + <entry><para>Avoid using spin locks for channel message + locks</para></entry> + </row> + + <row> + <entry><link + xlink:href="&security.url;/FreeBSD-EN-16:12.hv_storvsc.asc">FreeBSD-EN-16:12.hv_storvsc</link></entry> + <entry>11 August 2016</entry> + <entry><para>Enable INQUIRY result check only on + Windows 10 host systems</para></entry> + </row> + + <row> + <entry><link + xlink:href="&security.url;/FreeBSD-EN-16:13.vmbus.asc">FreeBSD-EN-16:13.vmbus</link></entry> + <entry>11 August 2016</entry> + <entry><para>Register time counter early enough for TSC freq + calibration</para></entry> + </row> + + <row> + <entry><link + xlink:href="&security.url;/FreeBSD-EN-16:14.hv_storvsc.asc">FreeBSD-EN-16:14.hv_storvsc</link></entry> + <entry>11 August 2016</entry> + <entry><para>Disable incorrect callout in + &man.hv.storvsc.4;</para></entry> + </row> + + <row> + <entry><link + xlink:href="&security.url;/FreeBSD-EN-16:15.vmbus.asc">FreeBSD-EN-16:15.vmbus</link></entry> + <entry>11 August 2016</entry> + <entry><para>Better handle the GPADL setup failure in + Hyper-V</para></entry> + </row> + + <row> + <entry><link + xlink:href="&security.url;/FreeBSD-EN-16:16.hv_storvsc.asc">FreeBSD-EN-16:16.hv_storvsc</link></entry> + <entry>11 August 2016</entry> + <entry><para>Fix SCSI INQUIRY checks and error + handling</para></entry> + </row> </tbody> </tgroup> </informaltable> diff --git a/release/release.sh b/release/release.sh index caa6f26..6dc4a28 100755 --- a/release/release.sh +++ b/release/release.sh @@ -281,9 +281,15 @@ extra_chroot_setup() { fi if [ ! -z "${EMBEDDEDPORTS}" ]; then + _OSVERSION=$(chroot ${CHROOTDIR} /usr/bin/uname -U) + REVISION=$(chroot ${CHROOTDIR} make -C /usr/src/release -V REVISION) + BRANCH=$(chroot ${CHROOTDIR} make -C /usr/src/release -V BRANCH) + PBUILD_FLAGS="OSVERSION=${_OSVERSION} BATCH=yes" + PBUILD_FLAGS="${PBUILD_FLAGS} UNAME_r=${UNAME_r}" + PBUILD_FLAGS="${PBUILD_FLAGS} OSREL=${REVISION}" for _PORT in ${EMBEDDEDPORTS}; do eval chroot ${CHROOTDIR} make -C /usr/ports/${_PORT} \ - BATCH=1 FORCE_PKG_REGISTER=1 install clean distclean + FORCE_PKG_REGISTER=1 ${PBUILD_FLAGS} install clean distclean done fi |