Commit Graph

299707 Commits

Author SHA1 Message Date
mlelstv 8af6a569af missed commit for iscsid_volumes 2023-02-03 15:59:04 +00:00
mlelstv b526349c2e Add start script to attach iscsi volumes at boot.
The default is to execute the script (iscsid_volumes=YES), so if you have
any volumes defined, you should also start iscsid (iscsid=YES) to avoid
error messages.
2023-02-03 13:53:40 +00:00
mlelstv 707eebbc0b Make multiboot1 continue with common boot code and not skip CPU type
detection.

Fixes PR 57017 and PR 56935.
2023-02-03 09:21:58 +00:00
skrll 33f800a4a9 MPIDR is 64bits. Without this AFF3 would always be zero.
Spotted by Cyprien.
2023-02-03 08:08:33 +00:00
skrll 3fe32fcbac Remove useless/harmful casts in debug messages. MPIDR AFF3 would not
be printed before.
2023-02-03 08:05:27 +00:00
msaitoh 144a9adddc Use thermal sensor code for IXGBE_DEV_ID_X550EM_A_10G_T, too.
PCI device ID 0x15c8 also use X557-AT PHY, so create the thermal sensor
sysctl for it, too.
2023-02-03 05:43:55 +00:00
msaitoh 8f5615f339 Regen. 2023-02-03 05:32:10 +00:00
msaitoh 90a24c5330 Add Samsung SM990. 2023-02-03 05:31:52 +00:00
rillig d4904ec87b lint: clean up
In symtab_search, most of the conditions were redundant, so remove them.

In read_byte, using CHAR_MASK was conceptually wrong, as that constant
is from the target platform while the lexical analysis happens on the
host platform.  It was unnecessary as well, as a hypothetical host
platform with 36-bit chars might encode the characters from the basic
source character set as numbers higher than 0x0_0000_00ff.  Since lint
assumes that both the source character set as well as the execution
character set are the same and based on 8-bit bytes, nothing changes.

No functional change.
2023-02-02 22:23:30 +00:00
uwe d1ec716407 devsw_attach(9): Use semantic markup instead of .Em 2023-02-02 14:09:52 +00:00
wiz a64523a0e4 openssh 9.2p1 is out 2023-02-02 13:27:16 +00:00
pgoyette 4667baf400 Fix markup. 2023-02-02 13:25:41 +00:00
mlelstv e66f4605a1 Data units read/written are counted in 1000s of 512 bytes.
Convert to human-readable value.
2023-02-02 08:21:32 +00:00
wiz 42f5b68c81 Add missing dot in abbreviation. 2023-02-01 20:24:22 +00:00
mrg 8190b96aae for MKDEBUG builds, set CXXFLAGS += -g1 for all GCC binaries.
reduces the size of a non-x11 i386 build by 38% - 992MiB -> 612MiB,
and likely similar reductions elsewhere.  it also reduced the build
time by about 3%, perhaps from less IO to write and less data to
compress.  for amd64, the size was reduced 1137MiB -> 741MiB, about
35%, though i don't have timing guesses here.

note that these are sizes of .gz not .xz (i enable pigz for my
builds), and this probably has a much greater benefit for xz builds
as the sets creation phase is much slower there.
2023-02-01 19:38:20 +00:00
uwe 9e9fc3f711 ddbping - restore the original narration of the example, NFCI
Adjust previous change so that it only replaces my home-grown define
for the end marker with the new official DDB_END_CMD marker that it
introduced.  Undo the rest of that last change.

As the author of this example I'm pretty sure what example I wanted to
set and this narration order is an important part of it.
2023-02-01 10:22:20 +00:00
gutteridge d9df1d8cf6 mutex.9: add a small detail to the history section 2023-02-01 03:27:45 +00:00
andvar 96dad784b6 fix few typos in comments. 2023-01-31 21:11:24 +00:00
riastradh 071c66bde3 module(9): Make error message for multiple MODULE decls more obvious. 2023-01-31 13:21:37 +00:00
riastradh 72bf6c3073 sys/modules/drmkms_pci: Remove drm_agpsupport.c.
This was moved to a separate drmkms_agp module.

XXX pullup-10
XXX pullup-9, maybe (not sure any of modularized drmkms works in 9, though)
2023-01-31 13:09:54 +00:00
riastradh 551ca113e1 sys/modules/drmkms: Remove GPU scheduler files.
These have been moved out to drmkms_sched.kmod.

XXX pullup-10
2023-01-31 13:09:04 +00:00
simonb a411c1a557 Note that strchrnul() first appeared in glibc 2.1.1 and appeared in
FreeBSD 10 before it appeared in NetBSD 8.
2023-01-31 01:42:32 +00:00
christos 28f2f55f42 add t_strchrnul 2023-01-30 19:51:33 +00:00
christos e20f737644 PR/57205: Dag-Erling Smørgrav: Add tests strchrnul(3), fix strchr pasto
from strlen.
2023-01-30 19:49:49 +00:00
jschauma b0a3116ca9 auto-extend suffix length if required
If the input cannot be split into the number of files resulting from the
default suffix length, automatically extend the suffix length rather than
bailing out with 'too many files'.

Suffixes are extended such that the resulting files continue to sort
lexically and "cat *" would reproduce the input.  For example, splitting
a 1M lines file into (default) 1000 lines per file would yield files
named 'xaa', 'xab', ..., 'xyy', 'xyz', 'xzaaa', 'xzaab', ..., 'xzanl'.

If '-a' is specified, the suffix length is not auto-extended.

This behavior matches GNU sort(1) since around version 8.16.
2023-01-30 15:22:02 +00:00
andvar 59f23108d5 s/isses/issues/ 2023-01-30 13:45:26 +00:00
christos 77cb5d98b2 Apply https://sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=4d74aab7aa562fe79d4669cdad0c32610531cbc0#patch1
to fix the vax issue (thanks @tsutsu for finding the patch)
2023-01-29 23:39:12 +00:00
maya 11fbdb110b Make sure to mount /var/shm
Programs such as firefox seem to require it,
and this file is used by the live image as well.
2023-01-29 22:12:25 +00:00
rillig e0bb9f7cf5 lint: properly clean up when leaving a function definition 2023-01-29 18:37:20 +00:00
rillig b5b35fa5a0 lint: fix definition of __func__ 2023-01-29 18:16:48 +00:00
rillig 7dd63c1c67 lint: rename functions for function definition
No functional change.
2023-01-29 18:13:56 +00:00
rillig e80194217c lint: demonstrate wrong declaration of __func__ 2023-01-29 17:36:26 +00:00
skrll be52f6a48d Trailing whitespace 2023-01-29 17:20:48 +00:00
rillig 2f05763014 lint: don't warn about negative '>>' when the actual value is positive 2023-01-29 17:13:10 +00:00
rillig 6b8b6837b1 tests/lint: merge tests for '>>' 2023-01-29 17:02:09 +00:00
tsutsui ad037c6141 Make a vax bootloader work on 8MB VAXen.
64KB (0x800000 - 0x7f0000) is not enough for the bootloader itself
and more spaces are required for heap on loading a kernel.
 https://mail-index.netbsd.org/port-vax/2023/01/24/msg004149.html

"Go ahead" from ragge@.  Should be pulled up to netbsd-10 and netbsd-9.
2023-01-29 17:00:12 +00:00
reinoud b17c955ea6 Remove old prototypes from writing that shouldn't have been comitted at all! 2023-01-29 16:07:14 +00:00
thorpej e439aff6b2 Add and entry for the EXAR XR17V354 4-port UART.
From Håkan Engvall.
PR kern/57202
2023-01-29 15:17:51 +00:00
thorpej ff5bfaa297 Regen for EXAR XR17V354.
PR kern/57202
2023-01-29 15:08:02 +00:00
thorpej dfb182ddaf Add ID for the EXAR XR17V354 PCIe UART.
From Håkan Engvall.
PR kern/57202
2023-01-29 15:07:32 +00:00
rillig 720f816f1c lint: inline an expression, clean up comments
No functional change.
2023-01-29 13:57:35 +00:00
rillig e13e21105e lint: untangle conditions in promote_c90
No functional change.
2023-01-29 13:47:16 +00:00
mlelstv a4c7533a87 fix typo 2023-01-29 09:24:33 +00:00
mrg 3b22396b89 build framework for embedded brotli.
need to figure out a way to handle tools build vs installed build
before we can enable it in freetype itself.
2023-01-29 07:54:11 +00:00
mrg 8c70e5df69 add brotli to x11 src dirs. 2023-01-29 06:55:44 +00:00
christos 6b1042a65c revert previous, seems to lose data. 2023-01-28 14:54:43 +00:00
jmcneill 78de745f49 Regen 2023-01-28 13:13:17 +00:00
jmcneill e0e5768dcf Catch up to 20 years of HTML and URL changes. 2023-01-28 13:12:16 +00:00
msaitoh 2f8c60d111 Remove two entries. Those were pulled up to netbsd-10 branch. 2023-01-28 12:41:07 +00:00
msaitoh 97018bda69 amdsmn(4),amdzentemp(4): Add Zen3+ Rembrandt(19h/4xh) & Zen4 Genoa(19h/1xh). 2023-01-28 12:36:52 +00:00