[BACK]Return to 72.html CVS log [TXT][DIR] Up to [local] / www

Annotation of www/72.html, Revision 1.27

1.1       deraadt     1: <!doctype html>
                      2: <html lang=en id=release>
                      3: <head>
                      4: <meta charset=utf-8>
                      5:
                      6: <title>OpenBSD 7.2</title>
                      7: <meta name="description" content="OpenBSD 7.2">
                      8: <meta name="viewport" content="width=device-width, initial-scale=1">
                      9: <link rel="stylesheet" type="text/css" href="openbsd.css">
                     10: <link rel="canonical" href="https://www.openbsd.org/72.html">
                     11: </head><body>
                     12: <h2 id=OpenBSD>
                     13: <a href="index.html">
                     14: <i>Open</i><b>BSD</b></a>
                     15: 7.2
                     16: </h2>
                     17:
                     18: <table>
                     19: <tr>
                     20: <td>
                     21: <a href="images/XXX.png">
                     22: <img width="227" height="303" src="images/XXX-s.gif" alt="XXX"></a>
                     23: <td>
                     24: Released Oct 20, 2022. (53rd OpenBSD release)<br>
                     25: Copyright 1997-2022, Theo de Raadt.<br>
                     26: <br>
                     27: Artwork by Luc Houweling.
                     28: <br>
                     29: <ul>
                     30: <li>See the information on <a href="ftp.html">the FTP page</a> for
                     31:     a list of mirror machines.
                     32: <li>Go to the <code class=reldir>pub/OpenBSD/7.2/</code> directory on
                     33:     one of the mirror sites.
                     34: <li>Have a look at <a href="errata72.html">the 7.2 errata page</a> for a list
                     35:     of bugs and workarounds.
                     36: <li>See a <a href="plus72.html">detailed log of changes</a> between the
                     37:     7.1 and 7.2 releases.
                     38: <p>
                     39: <li><a href="https://man.openbsd.org/signify.1">signify(1)</a>
                     40:     pubkeys for this release:<p>
                     41:
                     42: <table class=signify>
                     43: <tr><td>
                     44: openbsd-72-base.pub:
                     45: <td>
                     46: <a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/openbsd-72-base.pub">
1.17      jsg        47: RWQTKNnK3CZZ8Lid7/kWPO1WxjEsTeuxiXbJSSg6RDir9OJmV+t7GrOo</a>
1.1       deraadt    48: <tr><td>
                     49: openbsd-72-fw.pub:
                     50: <td>
                     51: RWRvwsB/ZxwZxiQBgNVhuCnEacKE1MhrcDX25jFccqaj0pxsY9oIPJq4
                     52: <tr><td>
                     53: openbsd-72-pkg.pub:
                     54: <td>
                     55: RWSyNc+EwQQo5bZ5XtDpnk0FUl8NrIl+Ocq4FV/5VTvP9rOgHzKEnBx0
                     56: <tr><td>
                     57: openbsd-72-syspatch.pub:
                     58: <td>
                     59: RWQuBB7PRAc2Zy+C7VAynLuan8WDVtQ9R4xLpl8yjf1zxfqEBRRJ+66w
                     60: </table>
                     61: </ul>
                     62: <p>
                     63: All applicable copyrights and credits are in the src.tar.gz,
                     64: sys.tar.gz, xenocara.tar.gz, ports.tar.gz files, or in the
                     65: files fetched via <code>ports.tar.gz</code>.
                     66: </table>
                     67:
                     68: <hr>
                     69:
                     70: <section id=new>
                     71: <h3>What's New</h3>
                     72: <p>
                     73: This is a partial list of new features and systems included in OpenBSD 7.2.
                     74: For a comprehensive list, see the <a href="plus72.html">changelog</a> leading
                     75: to 7.2.
                     76:
                     77: <ul>
                     78:
                     79: <li>New/extended platforms:
                     80:   <ul>
1.4       jsg        81:   <li>Added support for Ampere Altra
                     82:   <li>Added support for Apple M2
                     83:   <li>Added support for Qualcomm Snapdragon 8cx Gen 3 (SC8280XP)
1.1       deraadt    84:   <li>...
                     85:   </ul>
                     86:
                     87: <li>Various kernel improvements:
                     88:   <ul>
1.12      benno      89:   <li>Allowed bsd.rd and bsd/bsd.mp to boot on Oracle Cloud amd64 instances.
                     90:   <li>Added support for switching from glass console to serial console
                     91:        on arm64 systems that default to glass console.
1.16      jsg        92:   <li><a href="https://man.openbsd.org/pf.4">pf(4)</a> automatically allows
                     93:     IGMP and ICMP6 MLD packets with router alert option.
1.9       bluhm      94:     Special allow-opts rules are no longer needed for multicast
                     95:     discovery.
1.19      benno      96:   <li>Fixed a <a href="https://man.openbsd.org/pf.4">pf(4)</a> NULL
                     97:        dereference panic triggered by <a
                     98:        href="https://man.openbsd.org/relayd.8">relayd(8)</a>.
1.16      jsg        99:   <li>Implement "show all routes" to print routing tables in
                    100:       <a href="https://man.openbsd.org/ddb.4">ddb(4)</a>.
                    101:   <li>Count dropped network packets due to low memory in
                    102:       <a href="https://man.openbsd.org/netstat.1">netstat(1)</a>.
1.12      benno     103:   <li>Simplified machine command handling in <a
                    104:        href="https://man.openbsd.org/ddb.4">ddb(4)</a>.
                    105:   <li>Changed to a simpler formula to calculate a default kern.maxthread
                    106:        value: 2*NPROCESS.
                    107:   <li>Enabled <a href="https://man.openbsd.org/kstat.4">kstat(4)</a>, a
                    108:        device that exports kernel statistics that can be read by <a
1.23      jsg       109:        href="https://man.openbsd.org/kstat.1">kstat(1)</a>.
1.13      benno     110:   <li>Added cpu frequency sensors for each core on CPUs that have MPERF/APERF support.
1.14      benno     111:   <li>Merged the UVM swap-backed and object-backed inactive page lists.
                    112:   <li>Fixed <a href="https://man.openbsd.org/rwlock.9">rwlock(9)</a>
                    113:        implementation to be fair to writers. Previously, readers could grab
                    114:        the lock even if writers were waiting first.
                    115:   <li>Made the CPU frequency scaling duration relative to the load
                    116:        when in automatic mode on battery.
                    117:   <li>Fixed luna88k MULTIPROCESSOR kernels booting with CPU modules
                    118:        installed in arbitrary slots.
1.19      benno     119:   <li>Added a missing <a
                    120:        href="https://man.openbsd.org/kqueue.2">kqueue(2)</a> wakeup, found by
                    121:        a Go testcase hang.
                    122:   <li>Bumped the maximum number of supported CPUs to 256 on arm64.
                    123:
1.1       deraadt   124:   </ul>
                    125:
                    126: <li>SMP Improvements
                    127:   <ul>
1.9       bluhm     128:   <li>Make route timer MP safe and use pool rttmr.
                    129:   <li>Use kernel lock to protect parts of ARP, ND6 and PPPoE that
                    130:     are not MP safe.
                    131:     Lookup of existing ARP entry is MP safe and can run in parallel.
                    132:   <li>Start up to 4 softnet tasks to run IP input and forwarding
                    133:     in parallel on multiple cores.
                    134:   <li>Run IPv4 packet reassembly in parallel.
                    135:   <li>Run IPv6 hop-by-hop options processing in parallel.
                    136:   <li>Add a mutex to rate limiting functions to make them MP safe.
                    137:   <li>Introduce mutex and reference counter for internet protocol
                    138:     control block.
                    139:   <li>Protect UDP, raw IP, and divert packet input routines
                    140:     with a per socket mutex.
1.16      jsg       141:   <li>Protect <a href="https://man.openbsd.org/recv.2">recv(2)</a> system call
                    142:     for UDP and raw IP packets with a per socket mutex and shared netlock.
1.9       bluhm     143:     Allows to receive packets while forwarding in parallel.
                    144:   <li>Protect multicast deliver loop for UDP and raw IP sockets with rwlock.
1.13      benno     145:   <li>Only grab netlock in IGMP and MLD timer when necessary.
1.9       bluhm     146:   <li>TCP slow timer runs without netlock.
                    147:   <li>Rework rwlock so that a writer will get the lock eventually.
                    148:     Readers cannot share the lock forever.
                    149:     This prevents starvation of the writer.
                    150:   <li>Run interface media ioctl with shared netlock so packets
1.16      jsg       151:     can be processed while running
                    152:     <a href="https://man.openbsd.org/ifconfig.8">ifconfig(8)</a>.
                    153:   <li><a href="https://man.openbsd.org/btrace.8">btrace(8)</a> can be used
                    154:       to debug reference counting.
1.9       bluhm     155:   <li>Use MP safe refcount for interface addresses.
1.1       deraadt   156:   <li>...
                    157:   </ul>
                    158:
1.13      benno     159: <li>Direct Rendering Manager and graphics drivers
1.1       deraadt   160:   <ul>
1.5       jsg       161:   <li>Updated <a href="https://man.openbsd.org/drm.4">drm(4)</a>
                    162:       to Linux 5.15.69
                    163:   <li><a href="https://man.openbsd.org/inteldrm.4">inteldrm(4)</a>:
                    164:       support for Alder Lake, Raptor Lake
1.13      benno     165:   <li>Reimplemented the page allocation code using <a
                    166:        href="https://man.openbsd.org/bus_dma.9">bus_dma(9)</a> APIs to make
                    167:        sure DMA addresses are translated properly on architectures with an
                    168:        IOMMU. This fixed <a
                    169:        href="https://man.openbsd.org/amdgpu.4">amdgpu(4)</a> and <a
                    170:        href="https://man.openbsd.org/radeondrm.4">radeondrm(4)</a> on
                    171:        powerpc, sparc64, and arm64 machines.
1.1       deraadt   172:   </ul>
                    173:
                    174: <li>VMM/VMD improvements
                    175:   <ul>
1.11      benno     176:   <li>Improved error handling and logging in <a
                    177:        href="https://man.openbsd.org/vmd.8">vmd(8)</a>
                    178:   <li>Unify all internal structures and interfaces between <a
                    179:        href="https://man.openbsd.org/vmd.8">vmd(8)</a>, <a
                    180:        href="https://man.openbsd.org/vmctl.8">vmctl(8)</a> and <a
                    181:        href="https://man.openbsd.org/vmm.4">vmm(4)</a> to use bytes for
1.13      benno     182:        memory and disk sizes.
1.18      jsg       183:   <li>Fix rebooting a received VM in <a
1.11      benno     184:         href="https://man.openbsd.org/vmd.8">vmd(8)</a>.
                    185:   <li>Have <a href="https://man.openbsd.org/vmd.8">vmd(8)</a> provide
                    186:        a copy of bios at 4g boundary, SeaBIOS and newer Linux kernels expect
                    187:        it there.
                    188:   <li>In <a href="https://man.openbsd.org/vmd.8">vmd(8)</a>, fix off by
1.18      jsg       189:        one in VM memory range check.
1.11      benno     190:   <li>In <a href="https://man.openbsd.org/vmd.8">vmd(8)</a>, add
1.18      jsg       191:        support for MMIO assist. In <a
                    192:        href="https://man.openbsd.org/vmm.4">vmm(4)</a>, send all port I/O
1.11      benno     193:        emulation to userland.
                    194:   <li>Have <a href="https://man.openbsd.org/vmd.8">vmd(8)</a> compute
                    195:        i8254 read-back command latch from singular timestamp.
                    196:   <li>Improve the command line parsing in <a
                    197:         href="https://man.openbsd.org/vmctl.8">vmctl(8)</a>.
                    198:   <li>Let <a href="https://man.openbsd.org/vmm.4">vmm(4)</a> allow
                    199:        reading MSR_TSC on Intel hosts.
                    200:   <li>In <a href="https://man.openbsd.org/vmm.4">vmm(4)</a>, reference
1.18      jsg       201:        count VMs and VCPUs.
1.11      benno     202:   <li>In <a href="https://man.openbsd.org/vmm.4">vmm(4)</a>, zero
1.18      jsg       203:        virtual addresses of VCPU state pages after freeing.
1.11      benno     204:   <li>Fix `vmctl send` on Intel hosts by load the vmcs before reading
1.18      jsg       205:        VCPU registers in <a href="https://man.openbsd.org/vmm.4">vmm(4)</a>.
1.11      benno     206:   <li>Fix `vmctl receive` on Intel hosts by adding an additional fault
                    207:        type in <a href="https://man.openbsd.org/vmm.4">vmm(4)</a>.
                    208:   <li>Add additional <a href="https://man.openbsd.org/dt.4">dt(4)</a>
                    209:        tracepoints in various <a
                    210:        href="https://man.openbsd.org/vmm.4">vmm(4)</a> codepaths.
1.1       deraadt   211:   </ul>
                    212:
                    213: <li>Various new userland features:
                    214:   <ul>
1.14      benno     215:   <li>Replaced <a href="https://man.openbsd.org/rc.d.8">rc.d(8)</a>
                    216:        $rcexec variable with an rc_exec function. <em>This will require a
                    217:        mechanical change from <code>${rcexec}</code> to <code>rc_exec</code>
                    218:        in rc.d scripts.</em> Kept compatibility to give people a chance to
                    219:        fix their custom scripts.
1.19      benno     220:   <li>Introduced a new daemon_execdir variable to <a
                    221:        href="https://man.openbsd.org/rc.d.8">rc.d(8)</a> for changing to a
1.24      ajacouto  222:        specified directory before running rc_exec.
                    223:   <li>Add a new <i>configtest</i> action to <a
                    224:        href="https://man.openbsd.org/rc.d.8">rc.d(8)</a> and <a
                    225:        href="https://man.openbsd.org/rcctl.8">rcctl(8)</a> to check
                    226:        configuration syntax of a daemon.
                    227:   </ul>
1.1       deraadt   228:
                    229: <li>Various bugfixes and tweaks in userland:
                    230:   <ul>
1.12      benno     231:   <li>Changed <a href="https://man.openbsd.org/compress">compress(1)</a>
                    232:        to print a more accurate message when -v is used with -k.
                    233:   <li>Fixed <a href="https://man.openbsd.org/openrsync">openrsync(1)</a>
                    234:        on sparc64 by eliminating a redundant second conversion of the int
                    235:        value from little to host endian.
                    236:   <li>Made use of the fact that repositories are unique objects in <a
                    237:        href="https://man.openbsd.org/pkg_add">pkg_add(1)</a> and annotated
                    238:        the quirks repository as cached, allowing for a large speed increase.
1.14      benno     239:   <li>Enabled <a href="https://man.openbsd.org/pkg_add.1">pkg_add(1)</a> caching by default.
1.19      benno     240:   <li>Changed the tied algorithm in <a
                    241:        href="https://man.openbsd.org/pkg_add.1">pkg_add(1)</a> to prevent
                    242:        O(n^2) behavior when packages contain several hundred copies of the
                    243:        same file.
                    244:
1.12      benno     245:   <li>Fixed <a href="https://man.openbsd.org/kbd.8">kbd(8)</a> so it
                    246:        doesn't fail silently when executed by a regular user.
1.13      benno     247:   <li>Prevented a crash in <a
                    248:        href="https://man.openbsd.org/vi">vi(1)</a> when cursor key support is disabled.
                    249:   <li>Updated <a href="https://man.openbsd.org/vi">vi(1)</a> to apply
                    250:        expandtab to the output of a ! command.
                    251:   <li>Added missing uuid_dec_le() to init_fp() so <a
                    252:        href="https://man.openbsd.org/fdisk.8">fdisk(8)</a> -A works on
                    253:        big-endian architectures.
1.14      benno     254:   <li>Aligned <a href="https://man.openbsd.org/fdisk.8">fdisk(8)</a>
                    255:        logic with that used in the kernel to allow the protective EFI GPT
                    256:        partition to be in MBR partitions 0-3, not just 0.
                    257:   <li>Prevented use of "-u" when <a
                    258:        href="https://man.openbsd.org/fdisk.8">fdisk(8)</a> is operating on
                    259:        GPT formatted disks.
                    260:   <li>Stopped telling <a href="https://man.openbsd.org/fdisk.8">fdisk(8)</a> that macppc HAS_MBR.
                    261:
                    262:
                    263:   <li>In the <i>sndio</i> library, added the function <a
                    264:        href="https://man.openbsd.org/sio_flush.3">sio_flush(3)</a> to stop
                    265:        playback immediately. Altered <a
                    266:        href="https://man.openbsd.org/sndiod.8">sndiod(8)</a> to wait until
                    267:        the buffer is drained before closing the device.
                    268:   <li>Installed useful <a
                    269:        href="https://man.openbsd.org/btrace.8">btrace(8)</a> scripts in
                    270:        /usr/share/btrace.
1.19      benno     271:   <li>Made <a href="https://man.openbsd.org/btrace.8">btrace(8)</a>
                    272:        execute the END probe upon receiving a SIGTERM signal.
1.14      benno     273:   <li>Made <a href="https://man.openbsd.org/xterm.1">xterm(1)</a> use a
                    274:        much safer FD-passing idiom for updating <a
                    275:        href="https://man.openbsd.org/utmp.5">utmp(5)</a>.
                    276:   <li>Made <a href="https://man.openbsd.org/mg.1">mg(1)</a>
                    277:        automatically delete trailing whitespace on RET in c-mode and
                    278:        auto-indent-mode.
1.19      benno     279:   <li>Made <a href="https://man.openbsd.org/grep.1">grep(1)</a> provide
                    280:        full context when using match count (<code>-m</code>
                    281:   <li>Added the --null flag to <a
                    282:        href="https://man.openbsd.org/grep.1">grep(1)</a> which makes grep
                    283:        print an ASCII NUL byte after the file name to make the output
                    284:        unambiguous.
                    285:
                    286:   <li>Fixed multiple memory leaks in <a href="https://man.openbsd.org/awk.1">awk(1)</a>.
                    287:   <li>Fixed <a href="https://man.openbsd.org/gzip.1">gzip(1)</a> byte counts with 32-bit integers.
                    288:   <li>Moved the wait for autoconf interfaces from <a
                    289:        href="https://man.openbsd.org/rc.8">rc(8)</a> to <a
                    290:        href="https://man.openbsd.org/netstart.8">netstart(8)</a> to fix
                    291:        tunnel interfaces that depend on working autoconf interfaces.
1.14      benno     292:
1.1       deraadt   293:   </ul>
                    294:
                    295: <li>Improved hardware support and driver bugfixes, including:
                    296:   <ul>
1.7       jsg       297:   <li>New <a href="https://man.openbsd.org/arm64/aplaudio.4">aplaudio(4)</a>
                    298:       driver for Apple audio subsystem.
                    299:   <li>New <a href="https://man.openbsd.org/arm64/aplmca.4">aplmca(4)</a>
                    300:       driver for Apple MCA controller.
                    301:   <li>New <a href="https://man.openbsd.org/arm64/aplsart.4">aplsart(4)</a>
                    302:       driver for Apple SART address filter.
                    303:   <li>New alpdc, apldchidev, apldckbd, apldcms, and aplrtk drivers for
                    304:       keyboard and trackpad on Apple M2 laptops.
                    305:   <li>New <a href="https://man.openbsd.org/arm64/qcgpio.4">qcgpio(4)</a>
                    306:       driver for Qualcomm Snapdragon GPIO controller.
                    307:   <li>New <a href="https://man.openbsd.org/arm64/qciic.4">qciic(4)</a>
                    308:       driver for Qualcomm Snapdragon GENI I2C controller.
                    309:   <li>New <a href="https://man.openbsd.org/riscv64/sfgpio.4">sfgpio(4)</a>
                    310:       driver for SiFive GPIO controller.
                    311:   <li>New <a href="https://man.openbsd.org/riscv64/stfclock.4">stfclock(4)</a>
                    312:       driver for StarFive JH7100 clock controller.
                    313:   <li>New <a href="https://man.openbsd.org/riscv64/stfpinctrl.4">stfpinctrl(4)</a>
                    314:       driver for StarFive JH7100 pin configuration.
                    315:   <li>New stftemp
                    316:       driver for StarFive JH7100 temperature sensor.
                    317:   <li>New <a href="https://man.openbsd.org/sxirintc.4">sxirintc(4)</a>
                    318:       driver for Allwinner wakeup interrupt controller.
                    319:   <li>New gpiorestart
                    320:       driver for system reset via GPIO pin.
1.12      benno     321:   <li>Added support for more power sensors to <a
                    322:        href="https://man.openbsd.org/ipmi.4">ipmi(4)</a>.
1.14      benno     323:   <li>Added support for the <a
                    324:        href="https://man.openbsd.org/ehci.4">ehci(4)</a> controller on
1.18      jsg       325:        Marvell 3720 boards.
1.19      benno     326:   <li>Extended <a href="https://man.openbsd.org/ksmn.4">ksmn(4)</a> to show CCD temperatures if available.
                    327:   <li>Fixed missing interrupts for trackpads on some machines after
                    328:        resume by making sure <a
                    329:        href="https://man.openbsd.org/amdgpio.4">amdgpio(4)</a> restores pin
                    330:        configuration on resume.
1.1       deraadt   331:   </ul>
                    332:
                    333: <li>New or improved network hardware support:
                    334:   <ul>
1.6       mbuhl     335:   <li>Enabled checksum offloads in <a href="https://man.openbsd.org/igc.4"
                    336:       >igc(4)</a>.
1.19      benno     337:   <li>Increased rx buffer size on <a href="https://man.openbsd.org/uaq.4">uaq(4)</a> to 62kB.
1.22      jsg       338:   <li>Repaired <a href="https://man.openbsd.org/rge.4">rge(4)</a> hardware VLAN tagging.
1.19      benno     339:   <li>Provide statistics via kstats for <a href="https://man.openbsd.org/mvneta.4">mvneta(4)</a>.
                    340:   <li>Enabled <a href="https://man.openbsd.org/aq.4">aq(4)</a> on arm64.
                    341:   <li>Implemented and enabled IPv4, TCP, and UDP checksum offloading for
                    342:        <a href="https://man.openbsd.org/igc.4">igc(4)</a>.
                    343:   <li>Fixed a panic triggered by ifconfig bnxt0 down by changing <a
                    344:        href="https://man.openbsd.org/bnxt.4">bnxt(4)</a> devices to not run
                    345:        rx and tx interrupt handlers when the interface is not running.
1.1       deraadt   346:   </ul>
                    347:
                    348: <li>Added or improved wireless network drivers:
                    349:   <ul>
1.19      benno     350:   <li>Made device matching in <a
1.22      jsg       351:        href="https://man.openbsd.org/iwx.4">iwx(4)</a> more similar to Linux
1.19      benno     352:        iwlwifi.
1.14      benno     353:   <li>Added support for AX210/AX211 devices to <a href="https://man.openbsd.org/iwx.4">iwx(4)</a>.
                    354:   <li>Fixed <a href="https://man.openbsd.org/iwx.4">iwx(4)</a> setting
                    355:        of HT/VHT bits in rate flags of the Tx command that could cause a
                    356:        firmware panic.
1.19      benno     357:   <li>Added handling of 9k devices which do not support antenna B to <a
                    358:        href="https://man.openbsd.org/iwm.4">iwm(4)</a>.
                    359:   <li>Fixed <a href="https://man.openbsd.org/bwfm.4">bwfm(4)</a>
                    360:        ifconfig media display on devices with sta_info command version 3.
1.20      jsg       361:   <li>Make sure drivers initialize all of ieee80211_rxinfo struct.
1.1       deraadt   362:   </ul>
                    363:
                    364: <li>IEEE 802.11 wireless stack improvements and bugfixes:
                    365:   <ul>
                    366:   <li>...
                    367:   </ul>
                    368:
                    369: <li>Installer and upgrade improvements:
                    370:   <ul>
1.14      benno     371:   <li>Fixed the watchdog in the installer so that the watchdog is reset
                    372:        after each download and each set installation.
1.19      benno     373:   <li>Ensured that when running <a
                    374:        href="https://man.openbsd.org/sysupgrade.8">sysupgrade(8)</a> on
                    375:        -stable that it will move to the next release, not -current.
                    376:   <li>Added the -b option to <a
                    377:        href="https://man.openbsd.org/sysupgrade.8">sysupgrade(8)</a> to set
                    378:        an alternative base directory to which the installation files will be
                    379:        downloaded to.
                    380:   <li>Increased the <a
                    381:        href="https://man.openbsd.org/disklabel.8">disklabel(8)</a> auto
                    382:        partitioner's maximum size for /usr to 30G.
1.1       deraadt   383:   </ul>
                    384:
                    385: <li>Security improvements:
                    386:   <ul>
1.19      benno     387:   <li>Implemented privilege separation in <a href="https://man.openbsd.org/xlock.1">xlock(1)</a>.
1.26      deraadt   388:   <li>The TZ environment variable no longer supports absolute paths, to fit better fit into the <a href="https://man.openbsd.org/pledge.2">pledge(2)</a> bypass model.
1.25      deraadt   389:   <li>AF_UNIX socket <a href="https://man.openbsd.org/bind.2">bind(2)</a> and <a href="https://man.openbsd.org/connect.2">connect(2)</a> now follow <a href="https://man.openbsd.org/unveil.2">unveil(2)</a> configuration..
1.1       deraadt   390:   </ul>
                    391:
1.12      benno     392: <li>Changes in the network stack:
                    393:   <ul>
1.13      benno     394:   <li>Relaxed address availability check for <a
                    395:        href="https://man.openbsd.org/multicast.4">multicast(4)</a> binds so
                    396:        processes listening for the same multicast address do not need to be
                    397:        the same UID.
                    398:   <li>Introduced dedicated link entries for snapshots to <a
                    399:        href="https://man.openbsd.org/pfsync.4">pfsync(4)</a>.
1.14      benno     400:   <li>Changed <a href="https://man.openbsd.org/pf.4">pf(4)</a> handling
                    401:        of IGMP and ICMP6 MLD packets to allow multicast control packets to
                    402:        work by default.
                    403:   <li>Made <a href="https://man.openbsd.org/pf.4">pf(4)</a> more paranoid about IGMP/MKP messages.
1.19      benno     404:   <li>Fixed a logic bug in pf_find_state() that could cause <a
                    405:         href="https://man.openbsd.org/pf.4">pf(4)</a> to incorrectly block a
                    406:         packet.
1.14      benno     407:   <li>Allow forwarding to and from IPs in the 240/4 range.
1.18      jsg       408:   <li>Corrected the Virtual Ethernet Bridge <a
1.14      benno     409:        href="https://man.openbsd.org/veb.4">veb(4)</a> to avoid calling
                    410:        if_enqueue from an smr critical section.
                    411:   <li>Fixed a kernel panic in <a
                    412:        href="https://man.openbsd.org/pf.4">pf(4)</a> if IP options with an
                    413:        ICMP payload were truncated. Such packets will now be dropped instead.
1.12      benno     414:   </ul>
                    415:
1.1       deraadt   416: <li>Routing daemons and other userland network improvements:
                    417:   <ul>
1.11      benno     418:   <li>IPsec support was improved:
                    419:   <ul>
                    420:   </ul>
                    421:   <li>In <a href="https://man.openbsd.org/bgpd.conf.5">bgpd(8)</a>,
                    422:   <ul>
                    423:        <li>Implement max-communities filter to limit the number of allowed
                    424:                communities, ext-communities and large-communities.
                    425:        <li>Fix insertion of additional non-transitive extended communities when
                    426:                sending out prefixes.
                    427:        <li>Relax IP address limitation by allowing prefixes in 240/4.
                    428:        <li>Implement RFC 9234 - Route Leak Prevention and Detection Using Roles
                    429:                in UPDATE and OPEN Messages.
                    430:        <li>Full support for RFC 7911 - Advertisement of Multiple Paths in BGP.
                    431:        <li>Improve FIB code, handle IPv6 scoped addresses properly.
                    432:        <li>Add <a href="https://man.openbsd.org/bgplgd.8">bgplgd(8)</a>,
1.18      jsg       433:                a FastCGI server providing a REST API of bgpctl.
1.16      jsg       434:        <li>Bugfix: <a href="https://man.openbsd.org/bgpd.8">bgpd(8)</a> could
                    435:            fail to invalidate nexthops and incorrectly leave them in the FIB or
                    436:            Adj-RIB-Out.
1.11      benno     437:        <li>Speedup <a href="https://man.openbsd.org/bgpctl.8">bgpctl</a>
                    438:                <code>show rib 10/8 or-longer</code> and <code>show rib 10/8
                    439:                or-shorter</code>
                    440:        <li>Switch various static hash tables to RB trees improving
                    441:                performance on large systems
                    442:        <li>Export per neighbor pending update and withdraw statistics
                    443:        <li>Fix race between a neighbor session reset and its update message
                    444:                backlog
                    445:        <li>Improve handling of nexthop reachability state changes
                    446:   </ul>
                    447:   <li><a href="https://man.openbsd.org/rpki-client.8">rpki-client(8)</a> saw some changes:
                    448:   <ul>
1.12      benno     449:        <li>Allowed more than one CRL URI in certificates.
1.11      benno     450:        <li>Do not apply timezone offsets when converting X509 times.  X509
                    451:                times are in UTC and comparing them to times in different timezones
                    452:                would cause validity problems.
                    453:        <li>Add support for an operator-configurable skiplist facility.
                    454:                Operators can specify a list of FQDNs which should not be contacted
                    455:                when synchronizing the local cache to the network.
                    456:        <li>Emit a warning when a RRDP session serial number decreases.
                    457:        <li>DER decoding functions were refactored to leverage ASN.1 templates.
                    458:        <li>Add support to validate & inspect .sig files containing RPKI Signed
                    459:                Checklists in filemode (-f). (draft-ietf-sidrops-rpki-rsc-08)
                    460:        <li>Print various statistics after the completion of the main process.
                    461:        <li>Add support to decode & print TAL (RFC 8630) details in filemode (-f).
                    462:        <li>Emit objects in Concatenated JSON format when filemode (-f) and the JSON
                    463:                output flag (-j) are combined.
1.13      benno     464:        <li>Add support for validating Autonomous System Provider Authorization
1.11      benno     465:                (ASPA) objects conforming to draft-ietf-sidrops-aspa-profile-10.
                    466:                Validated ASPA payloads are visible in JSON and filemode (-f) output.
                    467:        <li>Set rsync connection I/O idle timeout to 15 seconds.
1.13      benno     468:        <li>Unify the maximum idle I/O and connect timeouts for rsync & HTTPS.
1.18      jsg       469:        <li>rpki-client now performs stricter EE certificate validation:
1.11      benno     470:        <ul>
                    471:                <li>Disallow AS Resources extensions in ROA EE certificates.
                    472:                <li>Disallow Subject Information Access (SIA) extensions in RPKI
                    473:                        Signed Checklist (RSC) EE certs.
                    474:                <li>Check the resources in ROAs and RSCs against EE certs.
                    475:        </ul>
                    476:        <li>Improve readability and add various information being printed in
                    477:                verbose mode.
                    478:        <li>Extend filemode (-f) output and print X.509 certificates in PEM
                    479:                format when increased verbosity (-vv) is specified.
                    480:        <li>Shorten the RRDP I/O idle timeout.
                    481:        <li>Introduce a deadline timer that aborts all repository synchronization
                    482:                after seven eights of timeout (-s). With this rpki-client has improved
1.13      benno     483:                chances to complete and produce an output even when a CA is excessively
1.11      benno     484:                slow.
                    485:        <li>Abort a currently running RRDP request process when the per-repository
                    486:                timeout is reached.
                    487:        <li>Permit multiple AccessDescription entries in SIA X.509 extensions. While
                    488:                fetching from secondary locations is not yet supported, rpki-client will
1.13      benno     489:                not treat occurrence as a fatal error.
1.11      benno     490:        <li>Resolve a potential for a race condition in non-atomic RRDP deltas.
                    491:        <li>Fix some memory leaks.
                    492:        <li>Improve compliance with the HTTP protocol specification.
                    493:   </ul>
                    494:
1.14      benno     495:   <li>In <a href="https://man.openbsd.org/ospfd.8">ospfd(8)</a>,
1.11      benno     496:        relax the limitations on what is an acceptable unicast IP. There are no
                    497:        more experiments in IPv4 and so there is less reason for network
                    498:        daemons to deny formerly experimental IP space.  Multicast IPs
1.13      benno     499:        (224/4) and loopback (127/8) are still disallowed.
1.14      benno     500:   <li>Added check to <a
                    501:        href="https://man.openbsd.org/acme-client.1">acme-client(1)</a> to
                    502:        ensure the challenge token is turned into a filename that is base64url
                    503:        encoded.
                    504:   <li>Added RFC 9234 "BGP Role" support to <a
                    505:        href="https://man.openbsd.org/tcpdump.8">tcpdump(8)</a>
1.19      benno     506:   <li>Have <a
                    507:        href="https://man.openbsd.org/tcpdump.8">tcpdump(8)</a> print
                    508:        ASnumbers in 'asplain' format instead the old 'asdot' format.
                    509:   <li>Fixed a crash in libpcap when it would walk off the end of the array performing frees.
                    510:   <li>Made -X connect SOCKS work with IPv6 adresses in <a href="https://man.openbsd.org/nc.1">nc(1)</a>.
                    511:
1.11      benno     512:
1.1       deraadt   513:   </ul>
                    514:
                    515: <li><a href="https://man.openbsd.org/tmux">tmux(1)</a> improvements and bug fixes:
                    516:   <ul>
1.19      benno     517:   <li>Added an ACL list for multiple users attaching to the <a
                    518:        href="https://man.openbsd.org/tmux.1">tmux(1)</a> socket.
                    519:   <li>Ensured cursor remains on selected item on menu in <a
                    520:        href="https://man.openbsd.org/tmux.1">tmux(1)</a>.
                    521:
1.1       deraadt   522:   </ul>
                    523:
1.2       jsg       524: <li>LibreSSL version 3.6.0
1.1       deraadt   525:   <ul>
                    526:   <li>New Features
                    527:     <ul>
                    528:     <li>...
                    529:     </ul>
                    530:
                    531:   <li>Portable Improvements
                    532:     <ul>
                    533:     <li>...
                    534:     </ul>
                    535:
                    536:   <li>Compatibility Changes
                    537:     <ul>
                    538:     <li>...
                    539:     </ul>
                    540:
                    541:   <li>Bug fixes
                    542:     <ul>
                    543:     <li>...
                    544:     </ul>
                    545:
                    546:   <li>Internal Improvements
                    547:     <ul>
                    548:     <li>...
                    549:     </ul>
                    550:
                    551:   <li>Documentation improvements
                    552:     <ul>
                    553:     <li>...
                    554:     </ul>
                    555:   </ul>
                    556:
1.2       jsg       557: <li>OpenSSH 9.1
1.1       deraadt   558:   <ul>
                    559:   <li>...
                    560:   </ul>
                    561:
                    562: <li>mandoc 1.14.6 plus several bugfixes, including:
                    563:   <ul>
1.12      benno     564:   <li>Fixed calculation of the width of spanned columns in <a
                    565:        href="https://man.openbsd.org/mandoc">mandoc(1)</a>.
1.14      benno     566:   <li>Made <a href="https://man.openbsd.org/mandoc.1">mandoc(1)</a>'s
                    567:        roff_expand() parse left-to-right rather than right-to-left.
1.19      benno     568:   <li>Implemented a rudimentary version of the <a
                    569:        href="https://man.openbsd.org/roff.7">roff(7)</a> <code>\A</code>
                    570:        escape sequence for <a
                    571:        href="https://man.openbsd.org/mandoc.1">mandoc(1)</a>.
                    572:   <li>Matched groff behavior to allow arbitrary argument delimiters for
                    573:        \C in <a href="https://man.openbsd.org/mandoc.1">mandoc(1)</a>.
                    574:   <li>Improved accessibility of <a
                    575:        href="https://man.openbsd.org/mandoc.1">mandoc(1)</a> -T html -O toc
                    576:        output by using the &lt;nav&gt; element in the DPUB-ARIA doc-toc role.
1.1       deraadt   577:   </ul>
                    578:
                    579: <li>Ports and packages:
                    580:   <p>Many pre-built packages for each architecture:
                    581:   <!-- number of FTP packages minus SHA256, SHA256.sig, index.txt -->
                    582:   <ul style="column-count: 3">
1.27    ! naddy     583:     <li>aarch64:    11261
        !           584:     <li>amd64:      11451
1.1       deraadt   585:     <li>arm:         XXXX
1.27    ! naddy     586:     <li>i386:       10225
1.1       deraadt   587:     <li>mips64:      XXXX
                    588:     <li>powerpc:     XXXX
                    589:     <li>powerpc64:   XXXX
                    590:     <li>riscv64:     XXXX
                    591:     <li>sparc64:     XXXX
                    592:   </ul>
                    593:
                    594:   <p>Some highlights:
                    595:   <ul style="column-count: 3">
1.3       sthen     596:     <li>Asterisk 16.28.0, 18.14.0 and 19.6.0
1.1       deraadt   597:     <li>Audacity 2.4.2
1.3       sthen     598:     <li>CMake 3.24.2
                    599:     <li>Chromium 105.0.5195.125
                    600:     <li>Emacs 28.2
                    601:     <li>FFmpeg 4.4.2
1.1       deraadt   602:     <li>GCC 8.4.0 and 11.2.0
1.3       sthen     603:     <li>GHC 9.2.4
                    604:     <li>GNOME 42.4
                    605:     <li>Go 1.19.1
                    606:     <li>JDK 8u342, 11.0.16 and 17.0.4
                    607:     <li>KDE Applications 22.08.1
                    608:     <li>KDE Frameworks 5.98.0
                    609:     <li>Krita 5.1.1
1.1       deraadt   610:     <li>LLVM/Clang 13.0.0
1.3       sthen     611:     <li>LibreOffice 7.4.1.2
1.1       deraadt   612:     <li>Lua 5.1.5, 5.2.4 and 5.3.6
1.3       sthen     613:     <li>MariaDB 10.9.3
                    614:     <li>Mono 6.12.0.182
                    615:     <li>Mozilla Firefox 105.0.1 and ESR 102.3.0
                    616:     <li>Mozilla Thunderbird 102.3.0
                    617:     <li>Mutt 2.2.7 and NeoMutt 20220429
                    618:     <li>Node.js 16.17.1
1.1       deraadt   619:     <li>OCaml 4.12.1
1.3       sthen     620:     <li>OpenLDAP 2.6.3
                    621:     <li>PHP 7.4.30, 8.0.23 and 8.1.10
                    622:     <li>Postfix 3.7.2
                    623:     <li>PostgreSQL 14.5
                    624:     <li>Python 2.7.18, 3.9.14 and 3.10.7
                    625:     <li>Qt 5.15.6 and 6.3.1
                    626:     <li>R 4.2.1
                    627:     <li>Ruby 2.7.6, 3.0.4 and 3.1.2
                    628:     <li>Rust 1.63.0
                    629:     <li>SQLite 3.39.3
                    630:     <li>Shotcut 22.06.23
                    631:     <li>Sudo 1.9.11.2
                    632:     <li>Suricata 6.0.6
                    633:     <li>Tcl/Tk 8.5.19 and 8.6.12
1.1       deraadt   634:     <li>TeX Live 2021
1.3       sthen     635:     <li>Vim 9.0.0192 and Neovim 0.7.2
1.1       deraadt   636:     <li>Xfce 4.16
                    637:   </ul>
                    638:   <p>
                    639:
                    640: <li>As usual, steady improvements in manual pages and other documentation.
                    641:
                    642: <li>The system includes the following major components from outside suppliers:
                    643:   <ul>
1.2       jsg       644:     <li>Xenocara (based on X.Org 7.7 with xserver 21.1.4 + patches,
1.15      jsg       645:         freetype 2.12.1, fontconfig 2.13.94, Mesa 22.1.7, xterm 372,
1.1       deraadt   646:         xkeyboard-config 2.20, fonttosfnt 1.2.2 and more)
                    647:     <li>LLVM/Clang 13.0.0 (+ patches)
                    648:     <li>GCC 4.2.1 (+ patches) and 3.3.6 (+ patches)
                    649:     <li>Perl 5.32.1 (+ patches)
1.2       jsg       650:     <li>NSD 4.6.0
                    651:     <li>Unbound 1.16.3
1.1       deraadt   652:     <li>Ncurses 5.7
                    653:     <li>Binutils 2.17 (+ patches)
                    654:     <li>Gdb 6.3 (+ patches)
1.2       jsg       655:     <li>Awk September 12, 2022
                    656:     <li>Expat 2.4.9
1.1       deraadt   657:   </ul>
                    658:
                    659: </ul>
                    660: </section>
                    661:
                    662: <hr>
                    663:
                    664: <section id=install>
                    665: <h3>How to install</h3>
                    666: <p>
                    667: Please refer to the following files on the mirror site for
                    668: extensive details on how to install OpenBSD 7.2 on your machine:
                    669:
                    670: <ul>
                    671: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/alpha/INSTALL.alpha">
                    672:        .../OpenBSD/7.2/alpha/INSTALL.alpha</a>
                    673: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/amd64/INSTALL.amd64">
                    674:        .../OpenBSD/7.2/amd64/INSTALL.amd64</a>
                    675: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/arm64/INSTALL.arm64">
                    676:        .../OpenBSD/7.2/arm64/INSTALL.arm64</a>
                    677: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/armv7/INSTALL.armv7">
                    678:        .../OpenBSD/7.2/armv7/INSTALL.armv7</a>
                    679: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/hppa/INSTALL.hppa">
                    680:        .../OpenBSD/7.2/hppa/INSTALL.hppa</a>
                    681: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/i386/INSTALL.i386">
                    682:        .../OpenBSD/7.2/i386/INSTALL.i386</a>
                    683: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/landisk/INSTALL.landisk">
                    684:        .../OpenBSD/7.2/landisk/INSTALL.landisk</a>
1.8       jsg       685: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/loongson/INSTALL.loongson">
                    686:        .../OpenBSD/7.2/loongson/INSTALL.loongson</a>
1.1       deraadt   687: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/luna88k/INSTALL.luna88k">
                    688:        .../OpenBSD/7.2/luna88k/INSTALL.luna88k</a>
                    689: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/macppc/INSTALL.macppc">
                    690:        .../OpenBSD/7.2/macppc/INSTALL.macppc</a>
                    691: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/octeon/INSTALL.octeon">
                    692:        .../OpenBSD/7.2/octeon/INSTALL.octeon</a>
                    693: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/powerpc64/INSTALL.powerpc64">
                    694:        .../OpenBSD/7.2/powerpc64/INSTALL.powerpc64</a>
                    695: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/riscv64/INSTALL.riscv64">
                    696:        .../OpenBSD/7.2/riscv64/INSTALL.riscv64</a>
                    697: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/sparc64/INSTALL.sparc64">
                    698:        .../OpenBSD/7.2/sparc64/INSTALL.sparc64</a>
                    699: </ul>
                    700: </section>
                    701:
                    702: <hr>
                    703:
                    704: <section id=quickinstall>
                    705: <p>
                    706: Quick installer information for people familiar with OpenBSD, and the use of
                    707: the "<a href="https://man.openbsd.org/disklabel.8">disklabel</a> -E" command.
                    708: If you are at all confused when installing OpenBSD, read the relevant
                    709: INSTALL.* file as listed above!
                    710:
                    711: <h3>OpenBSD/alpha:</h3>
                    712:
                    713: <p>
                    714: If your machine can boot from CD, you can write <i>install72.iso</i> or
                    715: <i>cd72.iso</i> to a CD and boot from it.
                    716: Refer to INSTALL.alpha for more details.
                    717:
                    718: <h3>OpenBSD/amd64:</h3>
                    719:
                    720: <p>
                    721: If your machine can boot from CD, you can write <i>install72.iso</i> or
                    722: <i>cd72.iso</i> to a CD and boot from it.
                    723: You may need to adjust your BIOS options first.
                    724:
                    725: <p>
                    726: If your machine can boot from USB, you can write <i>install72.img</i> or
                    727: <i>miniroot72.img</i> to a USB stick and boot from it.
                    728:
                    729: <p>
                    730: If you can't boot from a CD, floppy disk, or USB,
                    731: you can install across the network using PXE as described in the included
                    732: INSTALL.amd64 document.
                    733:
                    734: <p>
                    735: If you are planning to dual boot OpenBSD with another OS, you will need to
                    736: read INSTALL.amd64.
                    737:
                    738: <h3>OpenBSD/arm64:</h3>
                    739:
                    740: <p>
                    741: Write <i>install72.img</i> or <i>miniroot72.img</i> to a disk and boot from it
                    742: after connecting to the serial console.  Refer to INSTALL.arm64 for more
                    743: details.
                    744:
                    745: <h3>OpenBSD/armv7:</h3>
                    746:
                    747: <p>
                    748: Write a system specific miniroot to an SD card and boot from it after connecting
                    749: to the serial console.  Refer to INSTALL.armv7 for more details.
                    750:
                    751: <h3>OpenBSD/hppa:</h3>
                    752:
                    753: <p>
                    754: Boot over the network by following the instructions in INSTALL.hppa or the
                    755: <a href="hppa.html#install">hppa platform page</a>.
                    756:
                    757: <h3>OpenBSD/i386:</h3>
                    758:
                    759: <p>
                    760: If your machine can boot from CD, you can write <i>install72.iso</i> or
                    761: <i>cd72.iso</i> to a CD and boot from it.
                    762: You may need to adjust your BIOS options first.
                    763:
                    764: <p>
                    765: If your machine can boot from USB, you can write <i>install72.img</i> or
                    766: <i>miniroot72.img</i> to a USB stick and boot from it.
                    767:
                    768: <p>
                    769: If you can't boot from a CD, floppy disk, or USB,
                    770: you can install across the network using PXE as described in
                    771: the included INSTALL.i386 document.
                    772:
                    773: <p>
                    774: If you are planning on dual booting OpenBSD with another OS, you will need to
                    775: read INSTALL.i386.
                    776:
                    777: <h3>OpenBSD/landisk:</h3>
                    778:
                    779: <p>
                    780: Write <i>miniroot72.img</i> to the start of the CF
                    781: or disk, and boot normally.
1.8       jsg       782:
                    783: <h3>OpenBSD/loongson:</h3>
                    784:
                    785: <p>
                    786: Write <i>miniroot72.img</i> to a USB stick and boot bsd.rd from it
                    787: or boot bsd.rd via tftp.
                    788: Refer to the instructions in INSTALL.loongson for more details.
1.1       deraadt   789:
                    790: <h3>OpenBSD/luna88k:</h3>
                    791:
                    792: <p>
                    793: Copy 'boot' and 'bsd.rd' to a Mach or UniOS partition, and boot the bootloader
                    794: from the PROM, and then bsd.rd from the bootloader.
                    795: Refer to the instructions in INSTALL.luna88k for more details.
                    796:
                    797: <h3>OpenBSD/macppc:</h3>
                    798:
                    799: <p>
                    800: Burn the image from a mirror site to a CDROM, and power on your machine
                    801: while holding down the <i>C</i> key until the display turns on and
                    802: shows <i>OpenBSD/macppc boot</i>.
                    803:
                    804: <p>
                    805: Alternatively, at the Open Firmware prompt, enter <i>boot cd:,ofwboot
                    806: /7.2/macppc/bsd.rd</i>
                    807:
                    808: <h3>OpenBSD/octeon:</h3>
                    809:
                    810: <p>
                    811: After connecting a serial port, boot bsd.rd over the network via DHCP/tftp.
                    812: Refer to the instructions in INSTALL.octeon for more details.
                    813:
                    814: <h3>OpenBSD/powerpc64:</h3>
                    815:
                    816: <p>
                    817: To install, write <i>install72.img</i> or <i>miniroot72.img</i> to a
                    818: USB stick, plug it into the machine and choose the <i>OpenBSD
                    819: install</i> menu item in Petitboot.
                    820: Refer to the instructions in INSTALL.powerpc64 for more details.
                    821:
                    822: <h3>OpenBSD/riscv64:</h3>
                    823:
                    824: <p>
                    825: To install, write <i>install72.img</i> or <i>miniroot72.img</i> to a
                    826: USB stick, and boot with that drive plugged in.
                    827: Make sure you also have the microSD card plugged in that shipped with the
                    828: HiFive Unmatched board.
                    829: Refer to the instructions in INSTALL.riscv64 for more details.
                    830:
                    831: <h3>OpenBSD/sparc64:</h3>
                    832:
                    833: <p>
                    834: Burn the image from a mirror site to a CDROM, boot from it, and type
                    835: <i>boot cdrom</i>.
                    836:
                    837: <p>
                    838: If this doesn't work, or if you don't have a CDROM drive, you can write
                    839: <i>floppy72.img</i> or <i>floppyB72.img</i>
                    840: (depending on your machine) to a floppy and boot it with <i>boot
                    841: floppy</i>. Refer to INSTALL.sparc64 for details.
                    842:
                    843: <p>
                    844: Make sure you use a properly formatted floppy with NO BAD BLOCKS or your install
                    845: will most likely fail.
                    846:
                    847: <p>
                    848: You can also write <i>miniroot72.img</i> to the swap partition on
                    849: the disk and boot with <i>boot disk:b</i>.
                    850:
                    851: <p>
                    852: If nothing works, you can boot over the network as described in INSTALL.sparc64.
                    853: </section>
                    854:
                    855: <hr>
                    856:
                    857: <section id=upgrade>
                    858: <h3>How to upgrade</h3>
                    859: <p>
1.10      benno     860: If you already have an OpenBSD 7.1 system, and do not want to reinstall,
1.1       deraadt   861: upgrade instructions and advice can be found in the
                    862: <a href="faq/upgrade72.html">Upgrade Guide</a>.
                    863: </section>
                    864:
                    865: <hr>
                    866:
                    867: <section id=sourcecode>
                    868: <h3>Notes about the source code</h3>
                    869: <p>
                    870: <code>src.tar.gz</code> contains a source archive starting at <code>/usr/src</code>.
                    871: This file contains everything you need except for the kernel sources,
                    872: which are in a separate archive.
                    873: To extract:
                    874: <blockquote><pre>
                    875: # <kbd>mkdir -p /usr/src</kbd>
                    876: # <kbd>cd /usr/src</kbd>
                    877: # <kbd>tar xvfz /tmp/src.tar.gz</kbd>
                    878: </pre></blockquote>
                    879: <p>
                    880: <code>sys.tar.gz</code> contains a source archive starting at <code>/usr/src/sys</code>.
                    881: This file contains all the kernel sources you need to rebuild kernels.
                    882: To extract:
                    883: <blockquote><pre>
                    884: # <kbd>mkdir -p /usr/src/sys</kbd>
                    885: # <kbd>cd /usr/src</kbd>
                    886: # <kbd>tar xvfz /tmp/sys.tar.gz</kbd>
                    887: </pre></blockquote>
                    888: <p>
                    889: Both of these trees are a regular CVS checkout.  Using these trees it
                    890: is possible to get a head-start on using the anoncvs servers as
                    891: described <a href="anoncvs.html">here</a>.
                    892: Using these files
                    893: results in a much faster initial CVS update than you could expect from
                    894: a fresh checkout of the full OpenBSD source tree.
                    895: </section>
                    896:
                    897: <hr>
                    898:
                    899: <section id=ports>
                    900: <h3>Ports Tree</h3>
                    901: <p>
                    902: A ports tree archive is also provided.  To extract:
                    903: <blockquote><pre>
                    904: # <kbd>cd /usr</kbd>
                    905: # <kbd>tar xvfz /tmp/ports.tar.gz</kbd>
                    906: </pre></blockquote>
                    907: <p>
                    908: Go read the <a href="faq/ports/index.html">ports</a> page
                    909: if you know nothing about ports
                    910: at this point.  This text is not a manual of how to use ports.
                    911: Rather, it is a set of notes meant to kickstart the user on the
                    912: OpenBSD ports system.
                    913: <p>
                    914: The <i>ports/</i> directory represents a CVS checkout of our ports.
                    915: As with our complete source tree, our ports tree is available via
                    916: <a href="anoncvs.html">AnonCVS</a>.
                    917: So, in order to keep up to date with the -stable branch, you must make
                    918: the <i>ports/</i> tree available on a read-write medium and update the tree
                    919: with a command like:
                    920: <blockquote><pre>
                    921: # <kbd>cd /usr/ports</kbd>
                    922: # <kbd>cvs -d anoncvs@server.openbsd.org:/cvs update -Pd -rOPENBSD_7_2</kbd>
                    923: </pre></blockquote>
                    924: <p>
                    925: [Of course, you must replace the server name here with a nearby anoncvs
                    926: server.]
                    927: <p>
                    928: Note that most ports are available as packages on our mirrors. Updated
                    929: ports for the 7.2 release will be made available if problems arise.
                    930: <p>
                    931: If you're interested in seeing a port added, would like to help out, or just
                    932: would like to know more, the mailing list
                    933: <a href="mail.html">ports@openbsd.org</a> is a good place to know.
                    934: </section>
                    935: </body>
                    936: </html>