summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2023-07-07tprof(8): Add support for Skylake-X and Cascade Lake.msaitoh
2023-07-07Modify comment. No functional change.msaitoh
2023-07-06Add Alder Lake-N.msaitoh
2023-07-05CPU model 0x5a is not Atom E3500 but Atom Z3500.msaitoh
2023-07-01Don't call UP script when an IP address becomes deprecated.mlelstv
2023-06-24Fix typo.msaitoh
2023-06-24Fix typo in comment.msaitoh
2023-06-24Fix typo in comment.msaitoh
2023-06-23paxctl(8): brush upuwe
Tell the user how to list flags right away, not at the very end. Do not repeat "for the program" 6 times for each flag letter, it's a noise by itself already and the italics of .Ar program exacerbates it. Make the list of flags compact but manually add breaks between the pairs of enable/disable flags.
2023-06-23paxctl(8): fix markupuwe
2023-06-23Use Fl for options.wiz
2023-06-23paxctl(8): Introduce -0 option to clear all PaX flag bits in ELF note.rin
Part of PR toolchain/52675
2023-06-22Bump date for previous commit.nat
XXX pullup-10.
2023-06-21adjust for new fontconfig files.mrg
2023-06-20Manual page fixups.nat
Fix EXAMPLES section. Use correct flags when used with pad(4). Use correct encoding format (sinear_le). XXX pullup-10.
2023-06-19Silence wrong maybe-uninitialized raised by GCC/x86_64 10.4.0 -Os.rin
2023-06-09If the install medium does not come with any openssl trusted root certs,martin
tell ftp(1) not to verify trust chains when doing https downloads.
2023-06-03adapt to ${CC_WNO_STRINGOP_TRUNCATION}lukem
2023-06-03adapt to ${CC_WNO_IMPLICIT_FALLTHROUGH}lukem
Use ${CC_WNO_IMPLICIT_FALLTHROUGH} instead of the older style more complex expressions.
2023-06-03adapt to ${CC_WNO_ADDRESS_OF_PACKED_MEMBER}lukem
Simplify CWARNFLAGS to use ${CC_WNO_ADDRESS_OF_PACKED_MEMBER} which works for both clang and gcc, and remove compiler-specific equivalents.
2023-06-03bsd.own.mk: rename GCC_NO_* to CC_WNO_*lukem
Rename compiler-warning-disable variables from GCC_NO_warning to CC_WNO_warning where warning is the full warning name as used by the compiler. GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGH Using the convention CC_compilerflag, where compilerflag is based on the full compiler flag name.
2023-06-03bsd.own.mk: rename to CC_WNO_ADDRESS_OF_PACKED_MEMBERlukem
Provide a single variable CC_WNO_ADDRESS_OF_PACKED_MEMBER with options for both clang and gcc, to replace CLANG_NO_ADDR_OF_PACKED_MEMBER CC_NO_ADDR_OF_PACKED_MEMBER GCC_NO_ADDR_OF_PACKED_MEMBER Using the convention CC_compilerflag, where compilerflag is based on the full compiler flag name.
2023-06-01mtree(8): a few markup fixesuwe
Didn't touch the section that describes the spec file format. We have the format documented here, in mtree(8), and we also have the format description in mtree(5) that comes from libarchive.
2023-05-28With the latest changes, pad(4) will return partial reads to allow amlelstv
more fine grained pacing of audio data. But this broke bta2dpd which relied on full buffers returned (like reading from a file). Replace the single read() in bta2dpd with a loop that fetches a full buffer. This restores the old behaviour but loops in userland instead of the kernel at the cost of a few extra system calls.
2023-05-27fix word endings toin -> tion in comments.andvar
2023-05-24obsolete mkstr(1) and xstr(1)lukem
These were only used on PDP-11 for two programs we don't ship, and have been obsolete since the VAX days. xstr never worked in the build.sh cross-build environment (22 years), or parallel make environment (nearly 28 years), didn't work in the orignal 386bsd import, and has never been needed in NetBSD as we don't have the older BSD programs (pascal, pre-nvi ex) that needed mkstr/xstr on PDP-11. PR toolchain/35964
2023-05-17installboot(8): fix up markupuwe
Don't overuse .Sy - when everything is highlighted, nothing is. Use .Ic for options &c to get correct PostScript output (both are bold in plain text). Use Aq Ar inside .Pa, as both Pa and Ar are rendered as underscored text in plain text output, and the distinction is lost. Don't set examples in bold, but give them .Pp space around - they are much easier to read this way. Use consistent -width in FILES.
2023-05-16installboot(8): formatting improvementslukem
Use Ar foo instead of <foo>; this is mdoc. Other formatting tweaks.
2023-05-13change a typo in sizeof(struct queueue *) to sizeof(nqueue[0])andvar
riastradh recommends using array[0] instead of pointer.
2023-05-09Handle OpenSSL-3.xchristos
2023-05-09Handle OpenSSL-3.xchristos
2023-05-09deal with OpenSSL-3.xchristos
2023-05-07Don't allow "wgconfig add peer ..." to accept invalid options.oster
Addresses PR bin/57392 .
2023-05-07s/inferface/interface/andvar
2023-05-01s/betwen/between/ and s/singed/signed/.andvar
2023-04-26Us daemons don't need no unions - just wait, the easy way.kre
2023-04-18Move date setting into cd9660_populate_iso_dir_record so there is nochristos
path that leaves it unset. From FreeBSD https://reviews.freebsd.org/D39258
2023-04-18We previously attempted to emit Rock Ridge NM records only when the namechristos
represented by the Rock Ridge extensions would actually differ. We would omit the record for an all-upper-case directory name, however Linux (and perhaps other operating systems) map names with no NM record to lowercase. This affected only directories, as file names have an implicit ";1" version number appended and thus always differ. To solve, just emit NM records for all entries other than DOT and DOTDOT . We could continue to omit the NM record for directories that would avoid mapping (for example, one named 1234.567) but this does not seem worth the complexity. From FreeBSD https://reviews.freebsd.org/D39258
2023-04-18The boot catalog pointer is a DWord, but we previously populated it viachristos
cd9660_bothendian_dword which overwrote four unused bytes following it. See El Torito 1.0 (1995) Figure 7 for details. Found by Coverity on FreeBSD
2023-04-18See RRIP 4.1.4 Description of the "NM" System Use Entry for details.christos
From FreeBSD
2023-04-18The bit definitions for the TF_* timestamp bits (TF_MODIFY, etc.) werechristos
incorrect, and timestamps were written in the wrong order. See RRIP 4.1.6 Description of the "TF" System Use Entry for details. From: https://reviews.freebsd.org/D39221
2023-04-18tprof.8: fix typo, s/speficied/specified/gutteridge
2023-04-17tprof(8): fix markup nitsuwe
2023-04-17tprof.8: new sentence, new linegutteridge
2023-04-17Use the default counter if -e argument is not specified.msaitoh
monitor command: The default counter is selected if -e argument is not specified. list command: Print the name of the default counter for monitor and top command.
2023-04-17Add two note to the tprof(8)'s manual page.msaitoh
- "list" command prints the maximum number of counters that can be used simultaneously. - multiple -e arguments can be specified.
2023-04-12crash(8): Add powerpc support.riastradh
XXX pullup-8 XXX pullup-9 XXX pullup-10
2023-04-12KNF. No functional change.msaitoh
2023-04-10Add Cometlake support.msaitoh
2023-04-05remove some double ee typos in comments.andvar