Commit Graph

4249 Commits

Author SHA1 Message Date
wiz 1bd28fc4e3 tmux-2.5 out. 2017-05-31 14:18:36 +00:00
bouyer ddcfa75974 Update status of bouyer-socketcan 2017-05-27 21:06:26 +00:00
bouyer 1f23490b7e Note can(4) 2017-05-27 21:05:02 +00:00
christos 2bcef12e42 add file 2017-05-25 00:12:34 +00:00
riastradh b76da0ab97 Note removal of MKCRYPTO_RC5 and MKCRYPTO. 2017-05-21 15:36:37 +00:00
riastradh ef315f7931 Remove MKCRYPTO option.
Originally, MKCRYPTO was introduced because the United States
classified cryptography as a munition and restricted its export.  The
export controls were substantially relaxed fifteen years ago, and are
essentially irrelevant for software with published source code.

In the intervening time, nobody bothered to remove the option after
its motivation -- the US export restriction -- was eliminated.  I'm
not aware of any other operating system that has a similar option; I
expect it is mainly out of apathy for churn that we still have it.
Today, cryptography is an essential part of modern computing -- you
can't use the internet responsibly without cryptography.

The position of the TNF board of directors is that TNF makes no
representation that MKCRYPTO=no satisfies any country's cryptography
regulations.

My personal position is that the availability of cryptography is a
basic human right; that any local laws restricting it to a privileged
few are fundamentally immoral; and that it is wrong for developers to
spend effort crippling cryptography to work around such laws.

As proposed on tech-crypto, tech-security, and tech-userlevel to no
objections:

https://mail-index.netbsd.org/tech-crypto/2017/05/06/msg000719.html
https://mail-index.netbsd.org/tech-security/2017/05/06/msg000928.html
https://mail-index.netbsd.org/tech-userlevel/2017/05/06/msg010547.html

P.S.  Reviewing all the uses of MKCRYPTO in src revealed a lot of
*bad* crypto that was conditional on it, e.g. DES in telnet...  That
should probably be removed too, but on the grounds that it is bad,
not on the grounds that it is (nominally) crypto.
2017-05-21 15:28:36 +00:00
pgoyette a372bceac2 Introduce new localcount(9) reference-count primitives. 2017-05-19 00:01:33 +00:00
jdolecek 21c32e49aa mention recent vioscsi/virtio changes 2017-05-16 23:00:42 +00:00
roy 432708cb55 Note import of dhcpcd-7.0.0-rc1 2017-05-10 11:05:17 +00:00
christos 6c1b86451b new OpenPAM 2017-05-06 19:56:41 +00:00
christos 6cacb5f5a7 new acpica 2017-04-30 23:19:11 +00:00
mbalmer c267f80a92 Lua updated to versionb 5.3.4 2017-04-26 13:59:56 +00:00
mbalmer 3a521b15da Lua is at version 5.3.4 now 2017-04-26 13:58:01 +00:00
pgoyette 69091aba3a Add my new prg-localcount2 branch, to take over from the previous one
which I messed up somehow.
2017-04-26 10:07:45 +00:00
pgoyette f029f15347 Abandon pgoyette-localcount branch due to unrecoverable CVS "pilot
errors".  Work will be salvaged and reappear on a new branch, soon.
2017-04-26 07:51:23 +00:00
christos 8234550e6a new tzcode. 2017-04-25 13:20:41 +00:00
christos 8c06a4888e new tmux. 2017-04-23 18:23:32 +00:00
mbalmer 1fe8d1aee4 Upstream Lua is at version 5.3.4. 2017-04-23 10:46:54 +00:00
plunky a95eaab00e state correct location for install-image (RELEASEDIR/images) 2017-04-22 07:48:19 +00:00
wiz fb007dbb9b tmux-2.4 out. 2017-04-21 12:20:25 +00:00
joerg 29339fc58f Update libarchive and pkg_install. 2017-04-20 14:39:36 +00:00
wiz ff6c2ab51c Use Fl and Xr. New sentence, new line. 2017-04-20 09:47:41 +00:00
ozaki-r 1300188462 Introduce MKSTRIPSYM build option
If it's yes, all local symbols of shared libraries are stripped
(default). If it's no, only temporary local symbols are stripped;
for example, symbols of static functions are kept. Keeping such
symbols is useful on using DTrace for userland libraries and
getting a backtrace from a rump server loading modules (shared
libraries).

Proposed and discussed on tech-kern and tech-toolchain
2017-04-20 09:29:10 +00:00
jdolecek ad3f018705 ld(4) already improved to arbitrary ioctls, and nvme(4) updated to support
both DIOCGCACHE and DIOCCACHESYNC
2017-04-19 21:48:58 +00:00
christos 58d0ae12d1 new OpenSSH 2017-04-18 18:44:06 +00:00
roy 32859d4ec3 Note import of dhcpcd-7.0.0-beta3 2017-04-14 10:02:49 +00:00
roy 3ea4b10738 Backdate a note about adding RO_MSGFILTER. 2017-04-14 10:01:48 +00:00
christos 63bd6fc88f new ntpd 2017-04-13 20:18:22 +00:00
christos e24baaa1a0 new bind 2017-04-13 19:12:09 +00:00
christos 53f9164e33 mention new dc 2017-04-10 16:44:46 +00:00
scole d07fad4d63 Add ia64 ski emulator hack 2017-04-09 19:02:23 +00:00
kamil 6708e51bcd ptrace(2): Add operations to single step specified threads:
PT_SETSTEP and PT_CLEARSTEP

Sponsored by <The NetBSD Foundation>
2017-04-08 01:29:31 +00:00
kamil fbd2c6be23 Update TODO.ptrace
Remove entries:
  - research support PT_SYSCALL & PT_STEP combined like in Linux
  - GDB Remote Protocol expects a case with a step with a signal to be sent,
    this is currently unsupported on NetBSD

Implemented as PT_SETSTEP and PT_CLEARSTEP.

Remove:
  - support QPassSignals (PT_SET_SIGPASS/PT_GET_SIGPASS) in the kernel, a way to
    stop routing a set of signals to tracer as they are uninteresting - GDB and
    LLDB expect this feature

This interface has been abandoned and will be handled on the debugger level.

Sponsored by <The NetBSD Foundation>
2017-04-08 01:08:36 +00:00
roy 58a867f167 Note import of dhcpcd-7.0.0-beta2 2017-04-02 19:37:03 +00:00
abhinav 224ca15f65 Sqlite 3.18.0 is out. 2017-04-02 13:56:35 +00:00
roy 85c53fb9a6 Note import of dhcpcd-7.0.0-beta1 2017-03-31 21:07:02 +00:00
ozaki-r a0123401b6 Write about bpf's statistic counters 2017-03-30 06:50:53 +00:00
ozaki-r 6dc0e16b98 Write about lingering obsolete variables due to kvm(3) 2017-03-30 04:37:58 +00:00
kre 4f3a1f302d tzdata updated to 2017b. 2017-03-21 19:26:40 +00:00
wiz 7c2da65e86 Fix typo. 2017-03-20 12:16:07 +00:00
kre 62e20444ec The sh $(()) update is signifigant enough to mention... 2017-03-20 12:06:03 +00:00
tsutsui d7673846d0 Mention about addition of luna68k's front panel LCD driver. 2017-03-19 11:22:32 +00:00
christos 1f4672f93c new mdocml; fix sqlite 2017-03-18 15:25:40 +00:00
snj f00e6d8d74 add netbsd-7-1 2017-03-15 06:17:39 +00:00
snj 5883a0181b libevent is at 2.1.8, not 2.1.18 2017-03-14 21:22:59 +00:00
kre 26a1b1f31d Christos updated tzcode to 2017a 2017-03-12 15:07:30 +00:00
christos 8072f4356e new sqlite3 tzcode 2017-03-11 18:24:22 +00:00
maya 85fb2748b6 Remove already fixed HACKS entry. correct path to makeinfo Makefile for
easy reference.
2017-03-11 09:12:13 +00:00
msaitoh ff07a3d986 Add ixv(4) to MP-safe component's list. 2017-03-11 07:23:13 +00:00
ozaki-r c5fe62ba0f Add ixg(4) 2017-03-11 06:40:19 +00:00