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

Annotation of www/72.html, Revision 1.12

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">
                     47: RWQTKNnK3CZZ8Lid7/kWPO1WxjEsTeuxiXbJSSg6RDir9OJmV+t7GrOo
                     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.9       bluhm      92:   <li>pf(4) automatically allows IGMP and ICMP6 MLD packets with
                     93:     router alert option.
                     94:     Special allow-opts rules are no longer needed for multicast
                     95:     discovery.
                     96:   <li>Implement "show all routes" to print routing tables in ddb(4).
                     97:   <li>Count dropped network packets due to low memory in netstat(1).
1.12    ! benno      98:   <li>Simplified machine command handling in <a
        !            99:        href="https://man.openbsd.org/ddb.4">ddb(4)</a>.
        !           100:   <li>Changed to a simpler formula to calculate a default kern.maxthread
        !           101:        value: 2*NPROCESS.
        !           102:   <li>Enabled <a href="https://man.openbsd.org/kstat.4">kstat(4)</a>, a
        !           103:        device that exports kernel statistics that can be read by <a
        !           104:        href="https://man.openbsd.org/kstat.4">kstat(4)</a>.
1.1       deraadt   105:   </ul>
                    106:
                    107: <li>SMP Improvements
                    108:   <ul>
1.9       bluhm     109:   <li>Make route timer MP safe and use pool rttmr.
                    110:   <li>Use kernel lock to protect parts of ARP, ND6 and PPPoE that
                    111:     are not MP safe.
                    112:     Lookup of existing ARP entry is MP safe and can run in parallel.
                    113:   <li>Start up to 4 softnet tasks to run IP input and forwarding
                    114:     in parallel on multiple cores.
                    115:   <li>Run IPv4 packet reassembly in parallel.
                    116:   <li>Run IPv6 hop-by-hop options processing in parallel.
                    117:   <li>Add a mutex to rate limiting functions to make them MP safe.
                    118:   <li>Introduce mutex and reference counter for internet protocol
                    119:     control block.
                    120:   <li>Protect UDP, raw IP, and divert packet input routines
                    121:     with a per socket mutex.
                    122:   <li>Protect recv(2) system call for UDP and raw IP packets with
                    123:     a per socket mutex and shared netlock.
                    124:     Allows to receive packets while forwarding in parallel.
                    125:   <li>Protect multicast deliver loop for UDP and raw IP sockets with rwlock.
                    126:   <li>Only grab netlock in IGMP and MDL6 timer when necessary.
                    127:   <li>TCP slow timer runs without netlock.
                    128:   <li>Rework rwlock so that a writer will get the lock eventually.
                    129:     Readers cannot share the lock forever.
                    130:     This prevents starvation of the writer.
                    131:   <li>Run interface media ioctl with shared netlock so packets
                    132:     can be processed while running ifconfig(8).
                    133:   <li>btrace(8) can be used to debug reference counting.
                    134:   <li>Use MP safe refcount for interface addresses.
1.1       deraadt   135:   <li>...
                    136:   </ul>
                    137:
                    138: <li>Direct Rendering Manager
                    139:   <ul>
1.5       jsg       140:   <li>Updated <a href="https://man.openbsd.org/drm.4">drm(4)</a>
                    141:       to Linux 5.15.69
                    142:   <li><a href="https://man.openbsd.org/inteldrm.4">inteldrm(4)</a>:
                    143:       support for Alder Lake, Raptor Lake
1.1       deraadt   144:   <li>...
                    145:   </ul>
                    146:
                    147: <li>VMM/VMD improvements
                    148:   <ul>
1.11      benno     149:   <li>Improved error handling and logging in <a
                    150:        href="https://man.openbsd.org/vmd.8">vmd(8)</a>
                    151:   <li>Unify all internal structures and interfaces between <a
                    152:        href="https://man.openbsd.org/vmd.8">vmd(8)</a>, <a
                    153:        href="https://man.openbsd.org/vmctl.8">vmctl(8)</a> and <a
                    154:        href="https://man.openbsd.org/vmm.4">vmm(4)</a> to use bytes for
                    155:        memeory and disk sizes.
                    156:   <li>fix rebooting a received vm in <a
                    157:         href="https://man.openbsd.org/vmd.8">vmd(8)</a>.
                    158:   <li>Have <a href="https://man.openbsd.org/vmd.8">vmd(8)</a> provide
                    159:        a copy of bios at 4g boundary, SeaBIOS and newer Linux kernels expect
                    160:        it there.
                    161:   <li>In <a href="https://man.openbsd.org/vmd.8">vmd(8)</a>, fix off by
                    162:        one in vm memory range check.
                    163:   <li>In <a href="https://man.openbsd.org/vmd.8">vmd(8)</a>, add
                    164:        support for mmio assist. In <a
                    165:        href="https://man.openbsd.org/vmm.4">vmm(4)</a>, send all port io
                    166:        emulation to userland.
                    167:   <li>Have <a href="https://man.openbsd.org/vmd.8">vmd(8)</a> compute
                    168:        i8254 read-back command latch from singular timestamp.
                    169:   <li>Improve the command line parsing in <a
                    170:         href="https://man.openbsd.org/vmctl.8">vmctl(8)</a>.
                    171:   <li>Let <a href="https://man.openbsd.org/vmm.4">vmm(4)</a> allow
                    172:        reading MSR_TSC on Intel hosts.
                    173:   <li>In <a href="https://man.openbsd.org/vmm.4">vmm(4)</a>, reference
                    174:        count vm's and vcpu's.
                    175:   <li>In <a href="https://man.openbsd.org/vmm.4">vmm(4)</a>, zero
                    176:        virtual addresses of vcpu state pages after freeing.
                    177:   <li>Fix `vmctl send` on Intel hosts by load the vmcs before reading
                    178:        vcpu registers in <a href="https://man.openbsd.org/vmm.4">vmm(4)</a>.
                    179:   <li>Fix `vmctl receive` on Intel hosts by adding an additional fault
                    180:        type in <a href="https://man.openbsd.org/vmm.4">vmm(4)</a>.
                    181:   <li>Add additional <a href="https://man.openbsd.org/dt.4">dt(4)</a>
                    182:        tracepoints in various <a
                    183:        href="https://man.openbsd.org/vmm.4">vmm(4)</a> codepaths.
1.1       deraadt   184:   </ul>
                    185:
                    186: <li>Various new userland features:
                    187:   <ul>
1.12    ! benno     188:   <li>Added <a href="https://man.openbsd.org/kstat.1">kstat(1)</a>, a
        !           189:        utility to display kernel statistics collected by <a
        !           190:        href="https://man.openbsd.org/kstat.4">kstat(4)</a>.
1.1       deraadt   191:   </ul>
                    192:
                    193: <li>Various bugfixes and tweaks in userland:
                    194:   <ul>
1.12    ! benno     195:   <li>Changed <a href="https://man.openbsd.org/compress">compress(1)</a>
        !           196:        to print a more accurate message when -v is used with -k.
        !           197:   <li>Fixed <a href="https://man.openbsd.org/openrsync">openrsync(1)</a>
        !           198:        on sparc64 by eliminating a redundant second conversion of the int
        !           199:        value from little to host endian.
        !           200:   <li>Made use of the fact that repositories are unique objects in <a
        !           201:        href="https://man.openbsd.org/pkg_add">pkg_add(1)</a> and annotated
        !           202:        the quirks repository as cached, allowing for a large speed increase.
        !           203:   <li>Fixed <a href="https://man.openbsd.org/kbd.8">kbd(8)</a> so it
        !           204:        doesn't fail silently when executed by a regular user.
1.1       deraadt   205:   </ul>
                    206:
                    207: <li>Improved hardware support and driver bugfixes, including:
                    208:   <ul>
1.7       jsg       209:   <li>New <a href="https://man.openbsd.org/arm64/aplaudio.4">aplaudio(4)</a>
                    210:       driver for Apple audio subsystem.
                    211:   <li>New <a href="https://man.openbsd.org/arm64/aplmca.4">aplmca(4)</a>
                    212:       driver for Apple MCA controller.
                    213:   <li>New <a href="https://man.openbsd.org/arm64/aplsart.4">aplsart(4)</a>
                    214:       driver for Apple SART address filter.
                    215:   <li>New alpdc, apldchidev, apldckbd, apldcms, and aplrtk drivers for
                    216:       keyboard and trackpad on Apple M2 laptops.
                    217:   <li>New <a href="https://man.openbsd.org/arm64/qcgpio.4">qcgpio(4)</a>
                    218:       driver for Qualcomm Snapdragon GPIO controller.
                    219:   <li>New <a href="https://man.openbsd.org/arm64/qciic.4">qciic(4)</a>
                    220:       driver for Qualcomm Snapdragon GENI I2C controller.
                    221:   <li>New <a href="https://man.openbsd.org/riscv64/sfgpio.4">sfgpio(4)</a>
                    222:       driver for SiFive GPIO controller.
                    223:   <li>New <a href="https://man.openbsd.org/riscv64/stfclock.4">stfclock(4)</a>
                    224:       driver for StarFive JH7100 clock controller.
                    225:   <li>New <a href="https://man.openbsd.org/riscv64/stfpinctrl.4">stfpinctrl(4)</a>
                    226:       driver for StarFive JH7100 pin configuration.
                    227:   <li>New stftemp
                    228:       driver for StarFive JH7100 temperature sensor.
                    229:   <li>New <a href="https://man.openbsd.org/sxirintc.4">sxirintc(4)</a>
                    230:       driver for Allwinner wakeup interrupt controller.
                    231:   <li>New gpiorestart
                    232:       driver for system reset via GPIO pin.
1.12    ! benno     233:   <li>Added support for more power sensors to <a
        !           234:        href="https://man.openbsd.org/ipmi.4">ipmi(4)</a>.
        !           235:
1.1       deraadt   236:   </ul>
                    237:
                    238: <li>New or improved network hardware support:
                    239:   <ul>
1.6       mbuhl     240:   <li>Enabled checksum offloads in <a href="https://man.openbsd.org/igc.4"
                    241:       >igc(4)</a>.
1.1       deraadt   242:   <li>...
                    243:   </ul>
                    244:
                    245: <li>Added or improved wireless network drivers:
                    246:   <ul>
1.12    ! benno     247:   <li>Made device matching in <a href="https://man.openbsd.org/iwx.4">iwx(4)</a> more similar to linux iwlwifi.
1.1       deraadt   248:   </ul>
                    249:
                    250: <li>IEEE 802.11 wireless stack improvements and bugfixes:
                    251:   <ul>
                    252:   <li>...
                    253:   </ul>
                    254:
                    255: <li>Installer and upgrade improvements:
                    256:   <ul>
                    257:   <li>...
                    258:   </ul>
                    259:
                    260: <li>Security improvements:
                    261:   <ul>
                    262:   <li>...
                    263:   </ul>
                    264:
1.12    ! benno     265: <li>Changes in the network stack:
        !           266:   <ul>
        !           267:        <li>Relaxed address availability check for <a
        !           268:                href="https://man.openbsd.org/multicast.4">multicast(4)</a> binds so
        !           269:                processes listening for the same multicast address do not need to be
        !           270:                the same UID.
        !           271:
        !           272:   </ul>
        !           273:
1.1       deraadt   274: <li>Routing daemons and other userland network improvements:
                    275:   <ul>
1.11      benno     276:   <li>IPsec support was improved:
                    277:   <ul>
                    278:   </ul>
                    279:   <li>In <a href="https://man.openbsd.org/bgpd.conf.5">bgpd(8)</a>,
                    280:   <ul>
                    281:        <li>Implement max-communities filter to limit the number of allowed
                    282:                communities, ext-communities and large-communities.
                    283:        <li>Fix insertion of additional non-transitive extended communities when
                    284:                sending out prefixes.
                    285:        <li>Relax IP address limitation by allowing prefixes in 240/4.
                    286:        <li>Implement RFC 9234 - Route Leak Prevention and Detection Using Roles
                    287:                in UPDATE and OPEN Messages.
                    288:        <li>Full support for RFC 7911 - Advertisement of Multiple Paths in BGP.
                    289:        <li>Improve FIB code, handle IPv6 scoped addresses properly.
                    290:        <li>Add <a href="https://man.openbsd.org/bgplgd.8">bgplgd(8)</a>,
                    291:                a fastcgi server providing a REST API of bgpctl.
                    292:        <li>Bugfix: bgpd(8) could fail to invalidate nexthops and incorrectly
                    293:                leave them in the FIB or Adj-RIB-Out.
                    294:        <li>Speedup <a href="https://man.openbsd.org/bgpctl.8">bgpctl</a>
                    295:                <code>show rib 10/8 or-longer</code> and <code>show rib 10/8
                    296:                or-shorter</code>
                    297:        <li>Switch various static hash tables to RB trees improving
                    298:                performance on large systems
                    299:        <li>Export per neighbor pending update and withdraw statistics
                    300:        <li>Fix race between a neighbor session reset and its update message
                    301:                backlog
                    302:        <li>Improve handling of nexthop reachability state changes
                    303:   </ul>
                    304:   <li><a href="https://man.openbsd.org/rpki-client.8">rpki-client(8)</a> saw some changes:
                    305:   <ul>
1.12    ! benno     306:        <li>Allowed more than one CRL URI in certificates.
1.11      benno     307:        <li>Do not apply timezone offsets when converting X509 times.  X509
                    308:                times are in UTC and comparing them to times in different timezones
                    309:                would cause validity problems.
                    310:        <li>Add support for an operator-configurable skiplist facility.
                    311:                Operators can specify a list of FQDNs which should not be contacted
                    312:                when synchronizing the local cache to the network.
                    313:        <li>Emit a warning when a RRDP session serial number decreases.
                    314:        <li>DER decoding functions were refactored to leverage ASN.1 templates.
                    315:        <li>Add support to validate & inspect .sig files containing RPKI Signed
                    316:                Checklists in filemode (-f). (draft-ietf-sidrops-rpki-rsc-08)
                    317:        <li>Print various statistics after the completion of the main process.
                    318:        <li>Add support to decode & print TAL (RFC 8630) details in filemode (-f).
                    319:        <li>Emit objects in Concatenated JSON format when filemode (-f) and the JSON
                    320:                output flag (-j) are combined.
                    321:        <li>Add suport for validating Autonomous System Provider Authorization
                    322:                (ASPA) objects conforming to draft-ietf-sidrops-aspa-profile-10.
                    323:                Validated ASPA payloads are visible in JSON and filemode (-f) output.
                    324:        <li>Set rsync connection I/O idle timeout to 15 seconds.
                    325:        <li>Unify the maximum idle I/O and connect timeouts for RSYNC & HTTPS.
                    326:        <li>Rpki-client now performs stricter EE certificate validation:
                    327:        <ul>
                    328:                <li>Disallow AS Resources extensions in ROA EE certificates.
                    329:                <li>Disallow Subject Information Access (SIA) extensions in RPKI
                    330:                        Signed Checklist (RSC) EE certs.
                    331:                <li>Check the resources in ROAs and RSCs against EE certs.
                    332:        </ul>
                    333:        <li>Improve readability and add various information being printed in
                    334:                verbose mode.
                    335:        <li>Extend filemode (-f) output and print X.509 certificates in PEM
                    336:                format when increased verbosity (-vv) is specified.
                    337:        <li>Shorten the RRDP I/O idle timeout.
                    338:        <li>Introduce a deadline timer that aborts all repository synchronization
                    339:                after seven eights of timeout (-s). With this rpki-client has improved
                    340:                chances to complete and produce an output even when a CA is excessivly
                    341:                slow.
                    342:        <li>Abort a currently running RRDP request process when the per-repository
                    343:                timeout is reached.
                    344:        <li>Permit multiple AccessDescription entries in SIA X.509 extensions. While
                    345:                fetching from secondary locations is not yet supported, rpki-client will
                    346:                not treat occurence as a fatal error.
                    347:        <li>Resolve a potential for a race condition in non-atomic RRDP deltas.
                    348:        <li>Fix some memory leaks.
                    349:        <li>Improve compliance with the HTTP protocol specification.
                    350:   </ul>
                    351:
                    352:   <li>In <a href="https://man.openbsd.org/rpki-client.8">ospfd(8)</a>,
                    353:        relax the limitations on what is an acceptable unicast IP. There are no
                    354:        more experiments in IPv4 and so there is less reason for network
                    355:        daemons to deny formerly experimental IP space.  Multicast IPs
                    356:        (224/4) and loopback (127/8) are stil disallowed.
                    357:
1.1       deraadt   358:   </ul>
                    359:
                    360: <li><a href="https://man.openbsd.org/tmux">tmux(1)</a> improvements and bug fixes:
                    361:   <ul>
                    362:   <li>...
                    363:   </ul>
                    364:
1.2       jsg       365: <li>LibreSSL version 3.6.0
1.1       deraadt   366:   <ul>
                    367:   <li>New Features
                    368:     <ul>
                    369:     <li>...
                    370:     </ul>
                    371:
                    372:   <li>Portable Improvements
                    373:     <ul>
                    374:     <li>...
                    375:     </ul>
                    376:
                    377:   <li>Compatibility Changes
                    378:     <ul>
                    379:     <li>...
                    380:     </ul>
                    381:
                    382:   <li>Bug fixes
                    383:     <ul>
                    384:     <li>...
                    385:     </ul>
                    386:
                    387:   <li>Internal Improvements
                    388:     <ul>
                    389:     <li>...
                    390:     </ul>
                    391:
                    392:   <li>Documentation improvements
                    393:     <ul>
                    394:     <li>...
                    395:     </ul>
                    396:   </ul>
                    397:
1.2       jsg       398: <li>OpenSSH 9.1
1.1       deraadt   399:   <ul>
                    400:   <li>...
                    401:   </ul>
                    402:
                    403: <li>mandoc 1.14.6 plus several bugfixes, including:
                    404:   <ul>
1.12    ! benno     405:   <li>Fixed calculation of the width of spanned columns in <a
        !           406:        href="https://man.openbsd.org/mandoc">mandoc(1)</a>.
1.1       deraadt   407:   </ul>
                    408:
                    409: <li>Ports and packages:
                    410:   <p>Many pre-built packages for each architecture:
                    411:   <!-- number of FTP packages minus SHA256, SHA256.sig, index.txt -->
                    412:   <ul style="column-count: 3">
                    413:     <li>aarch64:     XXXX
                    414:     <li>amd64:       XXXX
                    415:     <li>arm:         XXXX
                    416:     <li>i386:        XXXX
                    417:     <li>mips64:      XXXX
                    418:     <li>powerpc:     XXXX
                    419:     <li>powerpc64:   XXXX
                    420:     <li>riscv64:     XXXX
                    421:     <li>sparc64:     XXXX
                    422:   </ul>
                    423:
                    424:   <p>Some highlights:
                    425:   <ul style="column-count: 3">
1.3       sthen     426:     <li>Asterisk 16.28.0, 18.14.0 and 19.6.0
1.1       deraadt   427:     <li>Audacity 2.4.2
1.3       sthen     428:     <li>CMake 3.24.2
                    429:     <li>Chromium 105.0.5195.125
                    430:     <li>Emacs 28.2
                    431:     <li>FFmpeg 4.4.2
1.1       deraadt   432:     <li>GCC 8.4.0 and 11.2.0
1.3       sthen     433:     <li>GHC 9.2.4
                    434:     <li>GNOME 42.4
                    435:     <li>Go 1.19.1
                    436:     <li>JDK 8u342, 11.0.16 and 17.0.4
                    437:     <li>KDE Applications 22.08.1
                    438:     <li>KDE Frameworks 5.98.0
                    439:     <li>Krita 5.1.1
1.1       deraadt   440:     <li>LLVM/Clang 13.0.0
1.3       sthen     441:     <li>LibreOffice 7.4.1.2
1.1       deraadt   442:     <li>Lua 5.1.5, 5.2.4 and 5.3.6
1.3       sthen     443:     <li>MariaDB 10.9.3
                    444:     <li>Mono 6.12.0.182
                    445:     <li>Mozilla Firefox 105.0.1 and ESR 102.3.0
                    446:     <li>Mozilla Thunderbird 102.3.0
                    447:     <li>Mutt 2.2.7 and NeoMutt 20220429
                    448:     <li>Node.js 16.17.1
1.1       deraadt   449:     <li>OCaml 4.12.1
1.3       sthen     450:     <li>OpenLDAP 2.6.3
                    451:     <li>PHP 7.4.30, 8.0.23 and 8.1.10
                    452:     <li>Postfix 3.7.2
                    453:     <li>PostgreSQL 14.5
                    454:     <li>Python 2.7.18, 3.9.14 and 3.10.7
                    455:     <li>Qt 5.15.6 and 6.3.1
                    456:     <li>R 4.2.1
                    457:     <li>Ruby 2.7.6, 3.0.4 and 3.1.2
                    458:     <li>Rust 1.63.0
                    459:     <li>SQLite 3.39.3
                    460:     <li>Shotcut 22.06.23
                    461:     <li>Sudo 1.9.11.2
                    462:     <li>Suricata 6.0.6
                    463:     <li>Tcl/Tk 8.5.19 and 8.6.12
1.1       deraadt   464:     <li>TeX Live 2021
1.3       sthen     465:     <li>Vim 9.0.0192 and Neovim 0.7.2
1.1       deraadt   466:     <li>Xfce 4.16
                    467:   </ul>
                    468:   <p>
                    469:
                    470: <li>As usual, steady improvements in manual pages and other documentation.
                    471:
                    472: <li>The system includes the following major components from outside suppliers:
                    473:   <ul>
1.2       jsg       474:     <li>Xenocara (based on X.Org 7.7 with xserver 21.1.4 + patches,
                    475:         freetype 2.12.1, fontconfig 2.13.94, Mesa 22.1.7, xterm 372,
1.1       deraadt   476:         xkeyboard-config 2.20, fonttosfnt 1.2.2 and more)
                    477:     <li>LLVM/Clang 13.0.0 (+ patches)
                    478:     <li>GCC 4.2.1 (+ patches) and 3.3.6 (+ patches)
                    479:     <li>Perl 5.32.1 (+ patches)
1.2       jsg       480:     <li>NSD 4.6.0
                    481:     <li>Unbound 1.16.3
1.1       deraadt   482:     <li>Ncurses 5.7
                    483:     <li>Binutils 2.17 (+ patches)
                    484:     <li>Gdb 6.3 (+ patches)
1.2       jsg       485:     <li>Awk September 12, 2022
                    486:     <li>Expat 2.4.9
1.1       deraadt   487:   </ul>
                    488:
                    489: </ul>
                    490: </section>
                    491:
                    492: <hr>
                    493:
                    494: <section id=install>
                    495: <h3>How to install</h3>
                    496: <p>
                    497: Please refer to the following files on the mirror site for
                    498: extensive details on how to install OpenBSD 7.2 on your machine:
                    499:
                    500: <ul>
                    501: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/alpha/INSTALL.alpha">
                    502:        .../OpenBSD/7.2/alpha/INSTALL.alpha</a>
                    503: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/amd64/INSTALL.amd64">
                    504:        .../OpenBSD/7.2/amd64/INSTALL.amd64</a>
                    505: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/arm64/INSTALL.arm64">
                    506:        .../OpenBSD/7.2/arm64/INSTALL.arm64</a>
                    507: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/armv7/INSTALL.armv7">
                    508:        .../OpenBSD/7.2/armv7/INSTALL.armv7</a>
                    509: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/hppa/INSTALL.hppa">
                    510:        .../OpenBSD/7.2/hppa/INSTALL.hppa</a>
                    511: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/i386/INSTALL.i386">
                    512:        .../OpenBSD/7.2/i386/INSTALL.i386</a>
                    513: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/landisk/INSTALL.landisk">
                    514:        .../OpenBSD/7.2/landisk/INSTALL.landisk</a>
1.8       jsg       515: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/loongson/INSTALL.loongson">
                    516:        .../OpenBSD/7.2/loongson/INSTALL.loongson</a>
1.1       deraadt   517: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/luna88k/INSTALL.luna88k">
                    518:        .../OpenBSD/7.2/luna88k/INSTALL.luna88k</a>
                    519: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/macppc/INSTALL.macppc">
                    520:        .../OpenBSD/7.2/macppc/INSTALL.macppc</a>
                    521: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/octeon/INSTALL.octeon">
                    522:        .../OpenBSD/7.2/octeon/INSTALL.octeon</a>
                    523: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/powerpc64/INSTALL.powerpc64">
                    524:        .../OpenBSD/7.2/powerpc64/INSTALL.powerpc64</a>
                    525: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/riscv64/INSTALL.riscv64">
                    526:        .../OpenBSD/7.2/riscv64/INSTALL.riscv64</a>
                    527: <li><a href="https://ftp.openbsd.org/pub/OpenBSD/7.2/sparc64/INSTALL.sparc64">
                    528:        .../OpenBSD/7.2/sparc64/INSTALL.sparc64</a>
                    529: </ul>
                    530: </section>
                    531:
                    532: <hr>
                    533:
                    534: <section id=quickinstall>
                    535: <p>
                    536: Quick installer information for people familiar with OpenBSD, and the use of
                    537: the "<a href="https://man.openbsd.org/disklabel.8">disklabel</a> -E" command.
                    538: If you are at all confused when installing OpenBSD, read the relevant
                    539: INSTALL.* file as listed above!
                    540:
                    541: <h3>OpenBSD/alpha:</h3>
                    542:
                    543: <p>
                    544: If your machine can boot from CD, you can write <i>install72.iso</i> or
                    545: <i>cd72.iso</i> to a CD and boot from it.
                    546: Refer to INSTALL.alpha for more details.
                    547:
                    548: <h3>OpenBSD/amd64:</h3>
                    549:
                    550: <p>
                    551: If your machine can boot from CD, you can write <i>install72.iso</i> or
                    552: <i>cd72.iso</i> to a CD and boot from it.
                    553: You may need to adjust your BIOS options first.
                    554:
                    555: <p>
                    556: If your machine can boot from USB, you can write <i>install72.img</i> or
                    557: <i>miniroot72.img</i> to a USB stick and boot from it.
                    558:
                    559: <p>
                    560: If you can't boot from a CD, floppy disk, or USB,
                    561: you can install across the network using PXE as described in the included
                    562: INSTALL.amd64 document.
                    563:
                    564: <p>
                    565: If you are planning to dual boot OpenBSD with another OS, you will need to
                    566: read INSTALL.amd64.
                    567:
                    568: <h3>OpenBSD/arm64:</h3>
                    569:
                    570: <p>
                    571: Write <i>install72.img</i> or <i>miniroot72.img</i> to a disk and boot from it
                    572: after connecting to the serial console.  Refer to INSTALL.arm64 for more
                    573: details.
                    574:
                    575: <h3>OpenBSD/armv7:</h3>
                    576:
                    577: <p>
                    578: Write a system specific miniroot to an SD card and boot from it after connecting
                    579: to the serial console.  Refer to INSTALL.armv7 for more details.
                    580:
                    581: <h3>OpenBSD/hppa:</h3>
                    582:
                    583: <p>
                    584: Boot over the network by following the instructions in INSTALL.hppa or the
                    585: <a href="hppa.html#install">hppa platform page</a>.
                    586:
                    587: <h3>OpenBSD/i386:</h3>
                    588:
                    589: <p>
                    590: If your machine can boot from CD, you can write <i>install72.iso</i> or
                    591: <i>cd72.iso</i> to a CD and boot from it.
                    592: You may need to adjust your BIOS options first.
                    593:
                    594: <p>
                    595: If your machine can boot from USB, you can write <i>install72.img</i> or
                    596: <i>miniroot72.img</i> to a USB stick and boot from it.
                    597:
                    598: <p>
                    599: If you can't boot from a CD, floppy disk, or USB,
                    600: you can install across the network using PXE as described in
                    601: the included INSTALL.i386 document.
                    602:
                    603: <p>
                    604: If you are planning on dual booting OpenBSD with another OS, you will need to
                    605: read INSTALL.i386.
                    606:
                    607: <h3>OpenBSD/landisk:</h3>
                    608:
                    609: <p>
                    610: Write <i>miniroot72.img</i> to the start of the CF
                    611: or disk, and boot normally.
1.8       jsg       612:
                    613: <h3>OpenBSD/loongson:</h3>
                    614:
                    615: <p>
                    616: Write <i>miniroot72.img</i> to a USB stick and boot bsd.rd from it
                    617: or boot bsd.rd via tftp.
                    618: Refer to the instructions in INSTALL.loongson for more details.
1.1       deraadt   619:
                    620: <h3>OpenBSD/luna88k:</h3>
                    621:
                    622: <p>
                    623: Copy 'boot' and 'bsd.rd' to a Mach or UniOS partition, and boot the bootloader
                    624: from the PROM, and then bsd.rd from the bootloader.
                    625: Refer to the instructions in INSTALL.luna88k for more details.
                    626:
                    627: <h3>OpenBSD/macppc:</h3>
                    628:
                    629: <p>
                    630: Burn the image from a mirror site to a CDROM, and power on your machine
                    631: while holding down the <i>C</i> key until the display turns on and
                    632: shows <i>OpenBSD/macppc boot</i>.
                    633:
                    634: <p>
                    635: Alternatively, at the Open Firmware prompt, enter <i>boot cd:,ofwboot
                    636: /7.2/macppc/bsd.rd</i>
                    637:
                    638: <h3>OpenBSD/octeon:</h3>
                    639:
                    640: <p>
                    641: After connecting a serial port, boot bsd.rd over the network via DHCP/tftp.
                    642: Refer to the instructions in INSTALL.octeon for more details.
                    643:
                    644: <h3>OpenBSD/powerpc64:</h3>
                    645:
                    646: <p>
                    647: To install, write <i>install72.img</i> or <i>miniroot72.img</i> to a
                    648: USB stick, plug it into the machine and choose the <i>OpenBSD
                    649: install</i> menu item in Petitboot.
                    650: Refer to the instructions in INSTALL.powerpc64 for more details.
                    651:
                    652: <h3>OpenBSD/riscv64:</h3>
                    653:
                    654: <p>
                    655: To install, write <i>install72.img</i> or <i>miniroot72.img</i> to a
                    656: USB stick, and boot with that drive plugged in.
                    657: Make sure you also have the microSD card plugged in that shipped with the
                    658: HiFive Unmatched board.
                    659: Refer to the instructions in INSTALL.riscv64 for more details.
                    660:
                    661: <h3>OpenBSD/sparc64:</h3>
                    662:
                    663: <p>
                    664: Burn the image from a mirror site to a CDROM, boot from it, and type
                    665: <i>boot cdrom</i>.
                    666:
                    667: <p>
                    668: If this doesn't work, or if you don't have a CDROM drive, you can write
                    669: <i>floppy72.img</i> or <i>floppyB72.img</i>
                    670: (depending on your machine) to a floppy and boot it with <i>boot
                    671: floppy</i>. Refer to INSTALL.sparc64 for details.
                    672:
                    673: <p>
                    674: Make sure you use a properly formatted floppy with NO BAD BLOCKS or your install
                    675: will most likely fail.
                    676:
                    677: <p>
                    678: You can also write <i>miniroot72.img</i> to the swap partition on
                    679: the disk and boot with <i>boot disk:b</i>.
                    680:
                    681: <p>
                    682: If nothing works, you can boot over the network as described in INSTALL.sparc64.
                    683: </section>
                    684:
                    685: <hr>
                    686:
                    687: <section id=upgrade>
                    688: <h3>How to upgrade</h3>
                    689: <p>
1.10      benno     690: If you already have an OpenBSD 7.1 system, and do not want to reinstall,
1.1       deraadt   691: upgrade instructions and advice can be found in the
                    692: <a href="faq/upgrade72.html">Upgrade Guide</a>.
                    693: </section>
                    694:
                    695: <hr>
                    696:
                    697: <section id=sourcecode>
                    698: <h3>Notes about the source code</h3>
                    699: <p>
                    700: <code>src.tar.gz</code> contains a source archive starting at <code>/usr/src</code>.
                    701: This file contains everything you need except for the kernel sources,
                    702: which are in a separate archive.
                    703: To extract:
                    704: <blockquote><pre>
                    705: # <kbd>mkdir -p /usr/src</kbd>
                    706: # <kbd>cd /usr/src</kbd>
                    707: # <kbd>tar xvfz /tmp/src.tar.gz</kbd>
                    708: </pre></blockquote>
                    709: <p>
                    710: <code>sys.tar.gz</code> contains a source archive starting at <code>/usr/src/sys</code>.
                    711: This file contains all the kernel sources you need to rebuild kernels.
                    712: To extract:
                    713: <blockquote><pre>
                    714: # <kbd>mkdir -p /usr/src/sys</kbd>
                    715: # <kbd>cd /usr/src</kbd>
                    716: # <kbd>tar xvfz /tmp/sys.tar.gz</kbd>
                    717: </pre></blockquote>
                    718: <p>
                    719: Both of these trees are a regular CVS checkout.  Using these trees it
                    720: is possible to get a head-start on using the anoncvs servers as
                    721: described <a href="anoncvs.html">here</a>.
                    722: Using these files
                    723: results in a much faster initial CVS update than you could expect from
                    724: a fresh checkout of the full OpenBSD source tree.
                    725: </section>
                    726:
                    727: <hr>
                    728:
                    729: <section id=ports>
                    730: <h3>Ports Tree</h3>
                    731: <p>
                    732: A ports tree archive is also provided.  To extract:
                    733: <blockquote><pre>
                    734: # <kbd>cd /usr</kbd>
                    735: # <kbd>tar xvfz /tmp/ports.tar.gz</kbd>
                    736: </pre></blockquote>
                    737: <p>
                    738: Go read the <a href="faq/ports/index.html">ports</a> page
                    739: if you know nothing about ports
                    740: at this point.  This text is not a manual of how to use ports.
                    741: Rather, it is a set of notes meant to kickstart the user on the
                    742: OpenBSD ports system.
                    743: <p>
                    744: The <i>ports/</i> directory represents a CVS checkout of our ports.
                    745: As with our complete source tree, our ports tree is available via
                    746: <a href="anoncvs.html">AnonCVS</a>.
                    747: So, in order to keep up to date with the -stable branch, you must make
                    748: the <i>ports/</i> tree available on a read-write medium and update the tree
                    749: with a command like:
                    750: <blockquote><pre>
                    751: # <kbd>cd /usr/ports</kbd>
                    752: # <kbd>cvs -d anoncvs@server.openbsd.org:/cvs update -Pd -rOPENBSD_7_2</kbd>
                    753: </pre></blockquote>
                    754: <p>
                    755: [Of course, you must replace the server name here with a nearby anoncvs
                    756: server.]
                    757: <p>
                    758: Note that most ports are available as packages on our mirrors. Updated
                    759: ports for the 7.2 release will be made available if problems arise.
                    760: <p>
                    761: If you're interested in seeing a port added, would like to help out, or just
                    762: would like to know more, the mailing list
                    763: <a href="mail.html">ports@openbsd.org</a> is a good place to know.
                    764: </section>
                    765: </body>
                    766: </html>