ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/src/trunk/UPDATING
Revision: 7789
Committed: Mon Sep 5 16:43:09 2016 UTC (7 years, 9 months ago) by laffer1
File size: 54305 byte(s)
Log Message:
briefly mention new sysctl net.inet.tcp.experimental.initcwnd10

File Contents

# Content
1 Updating Information for MidnightBSD users.
2
3 20160905:
4 Add a resource limit for the total number of kqueues
5 available to the user. Kqueue now saves the ucred of the
6 allocating thread, to correctly decrement the counter on close.
7 Based on FreeBSD SVN 256849
8
9 20160904:
10 Introduced experimental TCP sysctls starting with
11 net.inet.tcp.experimental.initcwnd10
12
13 20160814:
14 switched default desktop port to midnightbsd-desktop. This gives us flexibility to change it
15 in the release after the fact.
16
17 tzdata 2016a
18
19 20160811:
20 libdispatch 210
21
22 Added quirks for several models of SSDs to enable advanced format/4k mode. List includes
23 Samsung 830, 840, 850 and 750 series, Intel x25 and a few Toshiba models. Also
24 added WD Red drives.
25
26 Updated list of pci device vendors.
27
28 Updated list of usb devices.
29
30 20160807:
31 Implement several changes to libmport to fix some memory corruption issues.
32
33 20160806:
34 sqlite3 3.13.0
35
36 20160805:
37 Merged fixes for libmport that improve error handling when installing packages. Also
38 support mkdir -p like behavior for plist entries.
39
40 20160531:
41 Fix four security issues with MidnightBSD.
42
43 The implementation of TIOCGSERIAL ioctl(2) does not clear the output
44 struct before sending to userland in the linux emulation layer.
45
46 The compat 43 stat(2) system call exposes kernel stack to userland.
47
48 libarchive - CVE-2015-2304 and CVE-2013-0211 fix issues with
49 cpio directory traversal and an integer signedness error in the archive
50 write zip data routine.
51
52
53 20160528:
54 Fixed minor issues with mined(1) and msearch(1).
55
56 20160526:
57 Add support for Ivybridge and Haswell Intel CPUs to hwpmc(4).
58
59 Fix libpmc(3) build with clang compiler.
60
61 20160519:
62 Kernel Security updates
63
64 atkbd(4) - Incorrect signedness comparison in the ioctl(2) handler allows a malicious
65 local user to overwrite a portion of the kernel memory.
66
67 Incorrect argument handling in sendmsg(2)
68
69 Incorrect argument handling in the socket code allows malicious local
70 user to overwrite large portion of the kernel memory.
71
72 20160505:
73 OpenSSL security patch
74
75 The padding check in AES-NI CBC MAC was rewritten to be in constant time
76 by making sure that always the same bytes are read and compared against
77 either the MAC or padding bytes. But it no longer checked that there was
78 enough data to have both the MAC and padding bytes. [CVE-2016-2107]
79
80 An overflow can occur in the EVP_EncodeUpdate() function which is used for
81 Base64 encoding of binary data. [CVE-2016-2105]
82
83 An overflow can occur in the EVP_EncryptUpdate() function, however it is
84 believed that there can be no overflows in internal code due to this problem.
85 [CVE-2016-2106]
86
87 When ASN.1 data is read from a BIO using functions such as d2i_CMS_bio()
88 a short invalid encoding can casuse allocation of large amounts of memory
89 potentially consuming excessive resources or exhausting memory.
90 [CVE-2016-2109]
91
92 20160412:
93 0.8 stable branch created. Continue development as 0.9.
94
95 Fix several issues with wait6 system call addition.
96
97 20160409:
98 libmport now supports two new plist formats:
99 @(root,wheel,4775) myfile
100 @dir(root,wheel,775) mydir
101
102 On delete, absoluate paths are now handled properly.
103
104 20160317:
105 OpenSSH doesn't have the luck of the Irish.
106
107 Fix a security issue with OpenSSH X11 forwarding that can allow an attacker
108 run shell commands on the call to xauth.
109
110 Incorrect argument validation in sysarch(2)
111
112 A special combination of sysarch(2) arguments, specify a request to
113 uninstall a set of descriptors from the LDT. The start descriptor
114 is cleared and the number of descriptors are provided. Due to invalid
115 use of a signed intermediate value in the bounds checking during argument
116 validity verification, unbound zero'ing of the process LDT and adjacent
117 memory can be initiated from usermode.
118
119 Patch obtained from FreeBSD.
120
121 20160229:
122 top now displays information on ZFS arc cache.
123
124 20160228:
125 llvm + clang 3.3 is now the default compiler in MidnightBSD.
126
127 20160222:
128 Introduce pipe2 to linux emulation layer.
129
130 20160114:
131 OpenSSL
132
133 The signature verification routines will crash with a NULL pointer dereference
134 if presented with an ASN.1 signature using the RSA PSS algorithm and absent
135 mask generation function parameter. [CVE-2015-3194]
136
137 When presented with a malformed X509_ATTRIBUTE structure, OpenSSL will leak
138 memory. [CVE-2015-3195]
139
140 If PSK identity hints are received by a multi-threaded client then the values
141 are incorrectly updated in the parent SSL_CTX structure. [CVE-2015-3196]
142
143 Fix security on bsnmpd configuration file during installation.
144
145 TCP MD5 signature denial of service
146
147 A programming error in processing a TCP connection with both TCP_MD5SIG
148 and TCP_NOOPT socket options may lead to kernel crash.
149
150 SCTP
151
152 A lack of proper input checks in the ICMPv6 processing in the SCTP stack
153 can lead to either a failed kernel assertion or to a NULL pointer
154 dereference. In either case, a kernel panic will follow.
155
156 20160102:
157 Happy New Year
158
159 20151101:
160 Increase kern.ipc.somaxconn default to 256.
161
162 20151017:
163 Add initial statistics api to libmport and a driver to print
164 it in mport(1).
165
166 20151002:
167 Revised rpcbind(8) patch to fix issues with NIS
168
169 20150930:
170 In rpcbind(8), netbuf structures are copied directly, which would result in
171 two netbuf structures that reference to one shared address buffer. When one
172 of the two netbuf structures is freed, access to the other netbuf structure
173 would result in an undefined result that may crash the rpcbind(8) daemon.
174
175 20150926:
176 libmport now supports @preexec, @postexec, @preunexec and @postunexec
177 to replace @exec and @unexec.
178
179 pre exec runs afer pre-install scripts but before actual installation
180
181 post exec runs after install but before post install scripts and
182 pkg message.
183
184 pre unexec runs before pre uninstall scripts
185
186 post unexec runs before de-install scripts and after file removal.
187
188 20150917:
189 Fix kqueue write events for files > 2GB
190
191 20150825:
192 kernel:
193 fix a security issue on amd64 where the GS segment CPU register can be changed via
194 userland value in kernel mode by using an IRET with #SS or #NP exceptions.
195
196 openssh:
197 A programming error in the privileged monitor process of the sshd(8)
198 service may allow the username of an already-authenticated user to be
199 overwritten by the unprivileged child process.
200
201 A use-after-free error in the privileged monitor process of he sshd(8)
202 service may be deterministically triggered by the actions of a
203 compromised unprivileged child process.
204
205 A use-after-free error in the session multiplexing code in the sshd(8)
206 service may result in unintended termination of the connection.
207
208 20150818:
209 expat security fix
210
211 20150815:
212 libc changes:
213 setmode(3) now returns errno consistently on error.
214 libc will compile without error using clang
215
216 20150814:
217 wait6 system call added.
218
219 date(1) now handles non numeric numbers passed to -r
220 like GNU coreutils for improved compatibility.
221
222 20150811:
223 ata(4) AMD Hudson2 SATA controller support.
224 Intel lynxpoint SATA.
225
226 Fix some const warnings when building several device drivers
227 with llvm/clang.
228
229 Sync cas(4) with FreeBSD 9-stable.
230
231 Fix some minor issues with ath(4).
232
233 20150809:
234 xz 5.0.8
235
236 20150808:
237 libmport now logs installation and removal of packages to syslog.
238
239 20150805:
240 routed - fix a potential security issue where traffic from outside
241 the network can disrupt routing.
242
243 bsd patch - fix a bug with ed(1) scripts allowing unsanitized input
244 to run.
245
246 20150802:
247 jansson 2.7 library added. (libjansson is a JSON library in C)
248
249 20150728:
250 Heimdal 1.5.2 (kerberos implementation)
251
252 OpenSSL 1.0.1o
253
254 cpucontrol(8) now supports VIA CPUs. Synced with FreeBSD 9.2.
255
256 TCP Resassemly resource exhaustion bug:
257 There is a mistake with the introduction of VNET, which converted the
258 global limit on the number of segments that could belong to reassembly
259 queues into a per-VNET limit. Because mbufs are allocated from a
260 global pool, in the presence of a sufficient number of VNETs, the
261 total number of mbufs attached to reassembly queues can grow to the
262 total number of mbufs in the system, at which point all network
263 traffic would cease.
264 Obtained from: FreeBSD 8
265
266 OpenSSH
267
268 Fix two security vulnerabilities:
269 OpenSSH clients does not correctly verify DNS SSHFP records when a server
270 offers a certificate. [CVE-2014-2653]
271
272 OpenSSH servers which are configured to allow password authentication
273 using PAM (default) would allow many password attempts. A bug allows
274 MaxAuthTries to be bypassed. [CVE-2015-5600]
275
276
277 Switch to bsdpatch (from FreeBSD & OpenBSD)
278
279 20150726:
280 BSD Sort updated
281
282 sqlite 3.8.10.2
283
284 20150725:
285 Import reallocarray from OpenBSD's libc.
286
287 The reallocarray() function is similar to realloc() except it operates on
288 nmemb members of size size and checks for integer overflow in the
289 calculation nmemb * size.
290
291 20150722:
292 Fix a bug where TCP connections transitioning to LAST_ACK
293 state can get stuck. This can result in a denial of service.
294
295 20150715:
296 libmport now supports @shell and @sample in plists. This means that
297 a shell port can automatically add an entry to /etc/shells and remove
298 it upon uninstallation. For sample files, a copy is made without the
299 .sample extension if one does not exist and it is removed automatically
300 only if the md5 hash of the two files is the same.
301
302 20150709:
303 flex 2.5.39
304
305 20150702:
306 ZFS in MidnightBSD now supports lz4 compression. You can enable it
307 with zfs set compression=lz4 pool/path.
308
309 Verify it's working with
310 zfs get compressratio pool/path
311 du -h -s *
312
313 Note you must write new data when turning on compression to see
314 changes. Existing files are not compressed.
315
316 Note: While we used the same basic implementation of lz4 that
317 FreeBSD and OpenZFS uses, we did not yet implement features support
318 and the zfs version still reports 28. This may come in a future update
319 to ZFS.
320
321 20150621:
322 libmport now automatically stops services when deleting packages.
323
324 The package must have installed an rc.d script in /usr/local/etc
325 for this to work. This is equivalent to running service <name> onestop
326
327 20150618:
328 Sendmail
329
330 With the recent changes to OpenSSL to block 512 bit certificates,
331 sendmail can't connect with TLS to some servers.
332
333 Increase the default size to 1024 bit for client connections to
334 match the server configuration.
335
336 ZFS
337
338 Added ZFS TRIM support which is enabled by default. To disable
339 ZFS TRIM support set vfs.zfs.trim.enabled=0 in loader.conf.
340
341 Creating new ZFS pools and adding new devices to existing pools
342 first performs a full device level TRIM which can take a significant
343 amount of time. The sysctl vfs.zfs.vdev.trim_on_init can be set to 0
344 to disable this behaviour.
345
346 ZFS TRIM requires the underlying device support BIO_DELETE which
347 is currently provided by methods such as ATA TRIM and SCSI UNMAP
348 via CAM, which are typically supported by SSD's.
349
350 Stats for ZFS TRIM can be monitored by looking at the sysctl's
351 under kstat.zfs.misc.zio_trim.
352
353 rc.d
354
355 Reworked handling of cleanvar and FILESYSTEMS so that FILESYSTEMS
356 implies everything is mounted and ready to go.
357
358 Changed how ip6addressctl maps IPv6 on startup.
359
360 20150613:
361 tzdata 2015d
362
363 20150612:
364 OpenSSL 0.9.8zg
365
366 20150419:
367 MidnightBSD 0.6 stable branch created. Continue 0.7
368 development.
369
370 20150418:
371 sqlite 3.8.9
372
373 20150407:
374 Fix two security vulnerabilities:
375
376 The previous fix for IGMP had an overflow issue. This has been corrected.
377
378 ipv6: The Neighbor Discover Protocol allows a local router to advertise a
379 suggested Current Hop Limit value of a link, which will replace
380 Current Hop Limit on an interface connected to the link on the MidnightBSD
381 system.
382
383 20150319:
384 OpenSSL 0.9.8.zf
385
386 mksh R50e
387
388 Apple mDNSResponder 561.1.1
389
390 20150306:
391 Upgrade OpenSSL to 0.9.8ze
392
393 20150225:
394 Fix two security vulnerabilities.
395
396 1. BIND servers which are configured to perform DNSSEC validation and which
397 are using managed keys (which occurs implicitly when using
398 "dnssec-validation auto;" or "dnssec-lookaside auto;") may exhibit
399 unpredictable behavior due to the use of an improperly initialized
400 variable.
401
402 CVE-2015-1349
403
404 2. An integer overflow in computing the size of IGMPv3 data buffer can result
405 in a buffer which is too small for the requested operation.
406
407 This can result in a DOS attack.
408
409 20141211:
410 Fix a security issue with file and libmagic that can allow
411 an attacker to create a denial of service attack on any
412 program that uses libmagic.
413
414 20141109:
415 Fix building perl during buildworld when the GDBM port is installed.
416
417 20141106:
418 tzdata 2014i
419
420 20141102:
421 serf 1.3.8
422
423 20141031:
424 tnftp 20141031 fixes a security vulnerability with tnftp,
425 CVE-2014-8517.
426
427 20141028:
428 OpenSSL 0.9.8zc
429
430 20141021:
431 Fix several security vulnerabilities in routed, rtsold,
432 and namei with respect to Capsicum sandboxes looking up
433 nonexistent path names and leaking memory.
434
435 The input path in routed(8) will accept queries from any source and
436 attempt to answer them. However, the output path assumes that the
437 destination address for the response is on a directly connected
438 network.
439
440 Due to a missing length check in the code that handles DNS parameters,
441 a malformed router advertisement message can result in a stack buffer
442 overflow in rtsold(8).
443
444 20141011:
445 mksh R50d - fix field splitting regression and null
446 pointer dereference
447
448 xz 5.0.7
449
450 OpenSSH 6.6p1
451
452 20141004:
453 mksh R50c - security update for environment var bug with
454 foo vs foo+
455
456 20141002:
457 sqlite 3.8.6
458
459 sudo 1.7.8 - some issues with the current version, but we're slowly
460 getting up to date.
461
462 20141001:
463 mksh R50b
464
465 libmport now supports plist commands @dir, @owner, @group, @mode.
466
467 sudo 1.7.6p2
468
469 20140916:
470 Fix a security issue with TCP SYN.
471
472 When a segment with the SYN flag for an already existing connection arrives,
473 the TCP stack tears down the connection, bypassing a check that the
474 sequence number in the segment is in the expected window.
475
476 20140909:
477 Fixed a bug with our clearenv(3) implementation that caused segfaults
478 with some programs including Dovecot.
479
480 OpenSSL security patch:
481
482 The receipt of a specifically crafted DTLS handshake message may cause OpenSSL
483 to consume large amounts of memory. [CVE-2014-3506]
484
485 The receipt of a specifically crafted DTLS packet could cause OpenSSL to leak
486 memory. [CVE-2014-3507]
487
488 A flaw in OBJ_obj2txt may cause pretty printing functions such as
489 X509_name_oneline, X509_name_print_ex et al. to leak some information from
490 the stack. [CVE-2014-3508]
491
492 OpenSSL DTLS clients enabling anonymous (EC)DH ciphersuites are subject to
493 a denial of service attack. [CVE-2014-3510]
494
495 20140902:
496 We're now 0.6-CURRENT
497
498 Update USB quirks to support K70 Corsair keyboard, and several
499 other devices.
500
501 20140827:
502 Perl 5.18.2
503
504 20140728:
505 Jails now run shutdown scripts.
506
507 20140710:
508 Fix a vulnerability in the control message API. A buffer is not properly cleared
509 before sharing with userland.
510
511 20140701:
512 MKSH R50
513
514 20140630:
515 File 5.19
516
517 20140605:
518 Fix four security issues with OpenSSL
519
520 20140604:
521 Sendmail failed to properly set close-on-exec for open file descriptors.
522
523 ktrace page fault kernel trace entries were set to an incorrect size which resulted
524 in a leak of information.
525
526 20140430:
527 Fix a TCP reassembly bug that could result in a DOS attack
528 of the system. It may be possible to obtain portions
529 of kernel memory as well.
530
531 20140411:
532 Update zlib to 1.2.7
533
534 20140122:
535 Support for username with length 32. Previous limit was 16
536
537 20140114:
538 Fix two security vulnerabilities.
539
540 bsnmpd contains a stack overflow when sent certain queries.
541
542 bind 9.8 when using NSEC3-signed zones zones, will crash with special
543 crafted packets.
544
545 20131228:
546 Imported FreeBSD 9.2 usb stack (plus z87 patches from stable)
547
548 Updated em(4), igb(4) and ixgbe(4)
549
550 MidnightBSD now works with Z87 Intel chipsets.
551
552 20131207:
553 Remove sparc64 architecture. It hasn't been working for awhile
554 and it's not useful for desktops anymore.
555
556 20131205:
557 OpenSSH 6.4p1
558
559 20131203:
560 Perl 5.18.1 imported.
561
562 Update less to v458
563
564 20131130:
565 Remove named from base. We still include the client utilities for
566 now until replacements can be found.
567
568 20131004:
569 rarpd supports vlan(4) and has a pid flag. (from FreeBSD)
570
571 20130917:
572 Support for 65,536 routing tables was added. A new fib specific
573 field has been added to mbuf. This is an increase from 16.
574
575 20130910:
576 Security updates: (kern.osreldate 5001)
577
578 nullfs(5)
579
580 The nullfs(5) implementation of the VOP_LINK(9) VFS operation does not
581 check whether the source and target of the link are both in the same
582 nullfs instance. It is therefore possible to create a hardlink from a
583 location in one nullfs instance to a file in another, as long as the
584 underlying (source) filesystem is the same.
585
586 ifioctl
587
588 As is commonly the case, the IPv6 and ATM network layer ioctl request
589 handlers are written in such a way that an unrecognized request is
590 passed on unmodified to the link layer, which will either handle it or
591 return an error code.
592
593 Network interface drivers, however, assume that the SIOCSIFADDR,
594 SIOCSIFBRDADDR, SIOCSIFDSTADDR and SIOCSIFNETMASK requests have been
595 handled at the network layer, and therefore do not perform input
596 validation or verify the caller's credentials. Typical link-layer
597 actions for these requests may include marking the interface as "up"
598 and resetting the underlying hardware.
599
600 20130824:
601 Fix a bug in sendmail 8.14.7 that interferes with how it
602 handles AAAA records interoperating with Microsoft DNS servers.
603 FreeBSD has already reported this to Sendmail and a fix
604 will be included in the next release.
605
606 Subversion 1.8.1 is now in the base system as a static
607 binary. It has limited functionality, but can be used to
608 checkout/commit code. It is named svnlite.
609
610 20130822:
611 Fix two security vulnerabilities.
612
613 Fix an integer overflow in IP_MSFILTER (IP MULTICAST).
614 This could be exploited to read memory by a user process.
615
616 When initializing the SCTP state cookie being sent in INIT-ACK chunks,
617 a buffer allocated from the kernel stack is not completely initialized.
618
619 Import xz 5.0.4
620
621 Import sqlite 3.7.17
622
623 Import BIND 9.8.5-P2
624
625 20130814:
626 mksh R48 imported.
627
628 Sendmail 8.14.7 imported.
629
630 20130717:
631 libmport bug was fixed causing hash verification to fail.
632
633 virtio(4) imported from FreeBSD 9-stable. SCSI support not
634 included.
635
636 20130612:
637 RELENG_0_4 created for 0.4. Development continues on 0.5.
638
639 20130402:
640 Update BIND and OpenSSL to resolve security advisories.
641
642 20130305:
643 MKSH R44 imported.
644
645 20130213:
646 MKSH R42b imported
647
648 20130211:
649 MKSH R42 imported
650
651 20130125:
652 MKSH R41 imported
653
654 20130122:
655 OpenSSH 5.8p2 imported
656
657 SQLite 3.7.15.2 imported
658
659 Fixed a longstanding bug in libmport extrating new index files.
660
661 20120710:
662 BSD licensed sort imported from FreeBSD-CURRENT
663
664 For now, GNU sort is installed as gnusort, but it will
665 go away in time.
666
667 20120708:
668 tcsh 6.18.01 imported.
669
670 NetBSD's iconv imported.
671
672 libc gains strnlen(3), memrchr(3), stpncpy(3).
673
674 20120612:
675 BIND security update related to CVE-2012-1667.
676
677 Zero length resource records can cause BIND to crash resulting
678 in a DOS attack or information disclosure.
679
680 20120407:
681 mksh R40f (fixes regression)
682
683 20120328:
684 mksh R40e
685
686 Perl 5.14.2
687
688 20120229:
689 cpucontrol(8) and cpuctl(4) added from FreeBSD 7-stable.
690
691 20120209:
692 mDNSResponder 333.10 imported
693
694 20111227:
695 import raid5 module for GEOM, graid5(8)
696
697 This is experimental and known to use a lot of kernel
698 memory.
699
700 20111223:
701 telnetd: fix a root exploit from a fixed buffer that was not checked
702
703 pam: don't allow escape from policy path. Exploitable in KDE, etc.
704
705 Fix pam_ssh module:
706
707 If the pam_ssh module is enabled, attackers may be able to gain access
708 to user accounts which have unencrypted SSH private keys.
709
710 This has to due with the way that openssl works. It ignores unencrpted data.
711
712 Fix security issue with chroot and ftpd.
713
714 nsdispatch(3) doesn't know it's working in a chroot and some
715 operations can cause files to get reloaded causing a security
716 hole in things like ftpd.
717
718 20111217:
719 libdialog/dialog upgraded to an lgpl version. As it's not
720 backwardly compatable, include the old libdialog as libodialog
721
722 20111212:
723 mksh r40d imported
724
725 20111210:
726 re(4) and rl(4) updated to support new chips.
727
728 GEOM synced with FreeBSD 7-stable.
729
730 MidnightBSD GPT partition types created in sys/gpt.h and
731 setup in boot loader and GEOM.
732
733 amdsbwd(4) (amd watchdog for south bridge) updated to support
734 8xx series chipset.
735
736 20111207:
737 import bsd grep from FreeBSD/OpenBSD.
738
739 MK_BSD_GREP controls which grep is installed
740 as grep with the other as bsdgrep or gnugrep.
741
742 20111122:
743 mksh vR40c imported.
744
745 20111117:
746 BIND 9.6 ESV R5 P1
747
748 20111107:
749 tzdata 2011n
750
751 20111026:
752 mDNSResponder v320
753
754 BIND 9.6 ESV R5
755
756 20111022:
757 cflow 0.0.6 imported
758
759 20111020:
760 less v436 imported
761
762 amdsbwd(4) AMD southbridge watchdog
763
764 20111019:
765 awk 20110810 imported
766
767 et(4) Agere Gigabit Ethernet/Fast Ethernet driver added, but
768 not included in GENERIC kernel. The kernel module needs
769 testing before we can include it in GENERIC.
770
771 intr_bind code ported to allow an IRQ to be bound to one
772 specific CPU core.
773
774 20111017:
775 Time Zone Data v. 2011l (Released 10 October 2011)
776
777 Updated list of countries (iso3166) to work with new timezone data.
778
779 20111015:
780 Introduce CPU Affinity in MidnightBSD. cpuset(1) can be used
781 to control which core or group of cores can be used for a given
782 process. Several new system calls were added to support this
783 functionality in the running kernel and for 32bit binary
784 compatibility on amd64.
785
786 The scheduler default has been changed to ULE in i386 and
787 amd64. Changes were made to both schedulers (4BSD AND ULE)
788 for this feature.
789
790 This work is based on Jeff Roberson's FreeBSD 7.1 patches.
791
792 20111004:
793 Fix a problem with unix socket handling caused by the recent
794 patch to unix socket path handling. This allows network
795 apps to work under the linuxolator again.
796
797 20111001:
798 Import libfetch & fetch(1) from FreeBSD 9. Passive FTP is
799 now default and an environment variable must be set to use
800 active.
801
802 20110930:
803 Introduce quirks handling for several umass devices including
804 USB cameras. Add workaround for Cyberpower UPS devices.
805
806 Bring in further bug fixes from FreeBSD and NetBSD for alc(4).
807 Stale ip/tcp header pointers are no longer used, lockups fixed
808 when network cable is unplugged on bootup, enable TX checksum
809 offloading.
810
811 Add a new man page for gcache(8), a useful geom class when
812 working with large raid3 sets.
813
814 Restore previous workaround for Cypress pata storage controller.
815
816 20110929:
817 Sync ath(4) with FreeBSD 7.3.
818
819 The following modules are no longer available, and should be
820 removed from loader.conf:
821 ath_hal ath_rate_amrr ath_rate_onoe ath_rate_sample
822
823 alc(4) would hibernate when a cable was unplugged and often
824 required bring the interface down and up to "wake up" so that
825 a connection could be established. Disable hibernation.
826
827 20110928:
828 Fix security issues with gzip and compress related to .Z
829 files that are corrupted.
830
831 Fix path validation with unix domain sockets.
832
833 20110917:
834 Remove dependance on mports perl for generating releases as
835 it's in the base system.
836
837 20110914:
838 Import xz 5.0.3 with liblzma 5.0.3
839
840 20110813:
841 synced the sparc64 GENERIC kernel configuration with amd64.
842
843 20110806:
844 sqlite 3.7.7.1 imported
845
846 msearch(1), libmsearch and msearch.import added. msearch(1) provides
847 a full text search command line tool. libmsearch can also be used
848 to build a graphical based search in the future. You can enable
849 index building for msearch in periodic.conf or manually run the
850 /usr/libexec/msearch.index tool. Full text indexes take considerable
851 space in /var. I'm using approximately 500MB currently.
852
853 Fix a long standing bug with the periodic script to check package
854 versions. This will be obsolete with mport though.
855
856 20110710:
857 kdb_enter_why added to MidnightBSD to allow the kernel debugger to
858 know why it's in use and thus script can be run.
859
860 Yet another problem with the perl manifest was fixed
861
862 20110709:
863 cpufreq(1) is a new utility to monitor CPU frequency which may change
864 with use of powerd(8) and cpufreq(4).
865
866 20110612:
867 Update mksh to R40
868
869 Catch up ObsoleteFiles.inc to remove Perl 5.10.x. Good to run when
870 updating current (cd /usr/src && make check-old)
871
872 20110528:
873 Fix CVE-2011-1910 in BIND 9.6.x. This affects caching resolvers.
874
875 20110526:
876 newfs:
877 Raised the default blocksize for UFS/FFS filesystems from
878 16K to 32K and the default fragment size from 2K to 4K.
879
880 This should slightly imporve performance on "advanced format"
881 hard drives such as the WD EARS drives. Drives of this type
882 have emulation modes that slow down with lower sizes. Of course
883 the drive must still be aligned properly when using fdisk.
884
885 20110521:
886 mport tool now has a deleteall command. This can be used to remove
887 all packages from a system.
888
889 A few bugs with the perl 5.14 import have been fixed.
890
891 20110518:
892 Perl 5.14.0
893
894 20110517:
895 Sendmail 8.14.5
896
897 20110314:
898 DRM/DRI code updated to support newer video cards. (FreeBSD 7.1)
899
900 cdevpriv wrappers added
901
902 nss_mdns hack introduced to work around linking problem.
903
904 dnsextd fixed after update to mDNSResponder code.
905
906 20110308:
907 Introduce liblzma & xz 5.0.1 to the base system
908
909 Patch for OpenSSL security issue CVE-2011-0014.
910
911 "OSREVISION 4004"
912
913 nsswitch module for multicast dns (nss_mdns) added.
914
915 tzdata2011c
916
917 20110220:
918 cam(4) syncronized with FreeBSD 7.3.
919
920 20110219:
921 amdtemp(4) updated to support sensors framework.
922
923 20110217:
924 Perl 5.10.1 imported
925
926 20110216:
927 Introduce igb(4) and split Intel Gigabit Ethernet adapters between
928 igb(4) and em(4). Newer devices use igb(4). The code has moved
929 to sys/dev/e1000 for both devices in the kernel. igb(4) has
930 been placed in GENERIC on i386 and amd64.
931
932 Update bfe(4) to support newer devices and WOL.
933
934 20110215:
935 age(4) added.
936
937 20110208:
938 BIND 9.6.3 which fixes a bug with DNSSEC records getting added.
939
940 20110206:
941 eeemon(4) added to monitor Asus Eee PC.
942
943 20110205:
944 OpenSSH 5.7p1
945
946 GNU sort 6.9 (coreutils)
947
948 20110203:
949 one true awk 20100523 imported
950
951 sqlite 3.7.5
952
953 OpenSSL 0.9.8q
954
955 20110202:
956 tcsh 6.17.00
957
958 file 5.05
959
960 20110122:
961 Import it(4) and lm(4), with support for Super I/O hardware monitors. This
962 uses the sensors framework ported by Constantine A. Murenin (GSOC2007)
963
964 20110120:
965 BIND 9.6.2-P3
966
967 sudo 1.7.4-p6
968
969 20110115:
970 Add experimental jme(4) for Jmicron ethernet devices.
971
972 20101130:
973 A double free exists in the SSL client ECDH handling code, when
974 processing specially crafted public keys with invalid prime
975 numbers. [CVE-2010-2939]
976
977 20101120:
978 Several portions of the kernel and userland code related to UFS file
979 systems (and UFS2) cannot properly handle inode counts above 2^31 due
980 to use of int types. Based on a patch from FreeBSD, I've modified
981 our UFS2 implementation to handle unsigned values for inode counts
982 which should allow for file systems greater than 16TB.
983
984 newfs and growfs was also modified.
985
986 20101110:
987 Fix a security issue with pseudofs which could result in running code in kernel
988 context or a kernel panic depending on system configuration. This affects file
989 systems such as procfs for instance.
990
991 20101021:
992 sysrc is a utility to print and modify name/value pairs in /etc/rc.conf easily.
993 This is similar to functions present in many linux distros. The utility was
994 written by Devin Teske for FreeBSD.
995
996 20100920:
997 bzip2 security patch for integer overflow.
998
999 20100905:
1000 MidnightBSD RELENG_0_3 branch created. Aggressive development continues here
1001 for 0.4.
1002
1003 20100902:
1004 Fix a security issue with libutil that allows users to bypass cpu limits in
1005 login.conf in some cases. This combined with OpenSSH for example can allow
1006 the user to get more resources than they're allowed.
1007
1008 20100822:
1009 Import Apple's mDNSResponder (mdnsd).
1010
1011 20100814:
1012 libdispatch added to MidnightBSD. This provides functionality found in
1013 Mac OS X's GCD. We do not have blocks support yet. As this code is
1014 licensed under Apache 2, we create a new MK_APACHE option so that
1015 it's not required for all users to run code under a license they
1016 may not like.
1017
1018 20100713:
1019 mbuf readonly fix related to sendfile(2) data corruption.
1020
1021 20100704:
1022 brainfuck(1) imported from MirBSD.
1023
1024 20100505:
1025 zlib 1.2.5
1026
1027 20100430:
1028 Sudo 1.7.2p6 imported
1029
1030 20100321:
1031 Update zlib to 1.2.4
1032
1033 20100319:
1034 Removed i586 from default i386 generic kernel.
1035
1036 20100317:
1037 Update to tzdata2010e (time zones). This includes changes in
1038 Mexico.
1039
1040 Add support for several newer sound cards via hda including
1041 ATI and Realtek chipsets.
1042
1043 20100313:
1044 CPU detection has been changed. VIA Padlock detection added.
1045
1046 20100312:
1047 Fix a number of bugs and compiler warnings in libmport. Handle
1048 plus signs in paths for mport.check-fake
1049
1050 20100311:
1051 mksh R39c
1052
1053 20100309:
1054 Sudo 1.7.2p5
1055
1056 sqlite3 3.6.23
1057
1058 mksh R39b
1059
1060 libffi (ffi) 3.0.9
1061
1062 20100206:
1063 WITHOUT_LIB32 is no longer needed on AMD64. GCC was fixed to
1064 properly pass arguments to ld.
1065
1066 re(4) and rl(4) have been updated to support several new
1067 realtek chipsets. Performance has been improved on re(4).
1068
1069 20100204:
1070 Fix a bug cropping up on AMD64 MidnightBSD with sftp
1071 segfaulting.
1072
1073 20100116:
1074 Import ash changes from FreeBSD (bin/sh) 8-Stable.
1075
1076 BIND 9.6.1-P2
1077
1078 20100110:
1079 Import Sendmail 8.14.4. Fix for SSL vulnerability.
1080
1081 posix_spawn(3) added to MidnightBSD libc. Users may need to build and
1082 install libc before doing a full buildworld when upating from 0.2 or
1083 older current systems.
1084
1085 kqueue(2) was modified to support portions of libdispatch functionality.
1086
1087 20100106:
1088 Bind security update. Fix a bug with DNSSEC that causes negative
1089 cache entries and thus a possible DNS cache poisoning attack.
1090
1091 Fix a bug in ZFS that can reset permissions on system crashes.
1092
1093 20091228:
1094 amdtemp(4) was added. It allows one to monitor to the temperature
1095 of an AMD CPU such as a Phenom.
1096
1097 20091205:
1098 OpenSSL security fix
1099
1100 The SSL version 3 and TLS protocols support session renegotiation without
1101 cryptographically tying the new session parameters to the old parameters.
1102
1103 20091128:
1104 OpenBSD sensors framework imported including sensorsd(8)
1105
1106 20091126:
1107 OpenNTPD 4.4 import
1108
1109 Update OpenSSH to 5.3p1
1110
1111 mksh R39
1112
1113 20091124:
1114 cpdup updated from DragonFly to 1.15
1115
1116 tzdata2009s updated with latest timezone data for November 2009.
1117
1118 20091010:
1119 amd64 users should use WITHOUT_LIB32=yes in /etc/make.conf for now
1120 to test current.
1121
1122 Revert unicode filename fixes from ntfs code. This was causing chaos
1123 on amd64 systems.
1124
1125 20091006:
1126 Update timezone data with tzdata2009n with the Pakistan and
1127 Argentina changes.
1128
1129 Sync several userland utilities with versions from FreeBSD 7.0 in
1130 sbin and usr.sbin.
1131
1132 20090919:
1133 Update timezone data with tzdate2009m from September 2009.
1134
1135 20090729:
1136 Patch for Bind 9 security vulnerability. a dynmaic update packet
1137 can trigger an assertion and cause named to exit
1138
1139 20090606:
1140 Remove PCC from the base system. This compiler will not work
1141 as a system compiler for us as we've got some userland investment
1142 in C++ code and may have Objective-C in the future. We're stuck
1143 with a solution that supports these three languages at a minimum.
1144
1145 I had wanted to keep it as an optional compiler because it is
1146 fast, however too many users want to try to use it for the base
1147 system which makes no sense.
1148
1149 A hack was added for Cypress based usb hard drive enclosures to
1150 the kernel. This should cut down on commands it claims to support
1151 but does not (at the cam layer). Found while testing ZFS on
1152 an external device.
1153
1154 20090520:
1155 The powerd daemon no longer starts automatically to improve
1156 compatibility with many systems. However, there is a new
1157 installer option in the startup section to enable it. This
1158 makes it easier to enable for users that have working systems. I thought it was only a problem on older hardware, but it freaks
1159 out my new Phenom too.
1160
1161 20090502:
1162 OpenSSH 5.2p1 import
1163
1164 ale(4) connected to the build. (kernel module only)
1165
1166 20090501:
1167 Imported makefs utility from NetBSD/FreeBSD
1168
1169 20090422:
1170 OpenSSL security update
1171
1172 The function ASN1_STRING_print_ex does not properly validate the lengths
1173 of BMPString or UniversalString objects before attempting to print them.
1174
1175 20090415:
1176 Created a Symbol.map for libc/ohash symbols
1177
1178 Updated several usr/bin usr/sbin utilities.
1179
1180 Corrected a bug with Makefile.inc1 causing the bootstrap
1181 tools to fail.
1182
1183 20090405:
1184 xorg 7.4 wants to configure its input devices via hald which does not
1185 yet work with USB. If the keyboard/mouse does not work in xorg then
1186 add
1187 Option "AllowEmptyInput" "off"
1188 to your ServerLayout section. This will cause X to use the configured
1189 kbd and mouse sections from your xorg.conf
1190
1191 20090403:
1192 mksh was disconnected a few day ago do to bugs with
1193 buildworld and mports. Now, connect it back
1194 for use as /bin/sh with a conditional called
1195 MK_ASH. By default, ash is the standard /bin/sh
1196 but we may change this later. This will allow further
1197 testing by users and developers of mksh without
1198 causing an unpleasant default experience. In the
1199 long run, we need to fix mksh compatibility.
1200
1201 20090328:
1202 Bring in mksh R37 from CVS. The dot.mkshrc files for root
1203 and skel were changed. mksh(1) now replaces ash aka sh(1)
1204 as the default /bin/sh. Please report bugs with
1205 ports, etc. The ash code will remain in the repo for awhile
1206 as I decide if we'll add something like MK_SHELL_ASH as
1207 an optional build parameter.
1208
1209 ahd was disconnected from the lint environment until
1210 the compiler bug is sorted (by updating gcc?)
1211
1212 Remove freebsd-tips from fortune files and change the
1213 default for login and profile.
1214
1215 20090327:
1216 Update libarchive to 2.5.5, tar, and add bsdcpio.
1217
1218 Also previously, ctriv has been connecting Perl 5.10
1219 to the build (part of os). This will have an impact
1220 on mports.
1221
1222 20090325:
1223 Update Bind to 9.4.3-P1
1224
1225 Update mksh to R36b
1226
1227 Update tcpdump to 3.9.8, fix libpcap to work with current.
1228
1229 Update pnpinfo, sync with FreeBSD.
1230
1231 20090115:
1232 Fix a problem with DNSSEC and BIND.
1233
1234 20090110:
1235 For applications using OpenSSL for SSL connections, an invalid SSL
1236 certificate may be interpreted as valid. This could for example be
1237 used by an attacker to perform a man-in-the-middle attack.
1238
1239 Other applications which use the OpenSSL EVP API may similarly be
1240 affected.
1241
1242 Stop cross site request forgery attacks in lukemftpd
1243
1244 20090104:
1245 Import GNU libreadline 5.2
1246
1247 20090101:
1248 Update time zone data to 2008i.
1249
1250 20081231:
1251 Correct a problem where bluetooth and netgraph sockets are not
1252 properly initialized.
1253
1254 Happy 2009.
1255
1256 20081206:
1257 Due to the massive change in the underlying system under way,
1258 we're naming the next release 1.0. The sys/sys/param.h was
1259 changed accordingly. ipfilter and ncurses were corrected
1260 using __MidnightBSD__ tests in the code.
1261
1262 The GENERIC kernel config was caught up on i386 today. Consider
1263 i386 still broken, but amd64 is running again.
1264
1265 mdoc.local was updated with the new MidnightBSD version info.
1266
1267 batt(1) was rewritten in C. It now supports several flags and
1268 runs about 8 times faster on my laptop. The default output
1269 shows the number of minutes of battery life remaining and the
1270 percentage. You can use -u to display the number of batteries or
1271 -c to get script friendly output. Consult the man page for more.
1272
1273 20081204:
1274 Work has completed on importing ZFS, jemalloc, several
1275 new devices, SCTP, updated pf, a new tempfs, linuxolator 2.6 kernel
1276 support, improved locking for file desc., audit (openbsm),
1277 openssl .98e, nfe, imporved intel high def audio, midi, updated
1278 intel gigabit (em), support for several wifi cards (intel), ...
1279
1280 Renamed 0.3-CURRENT officially. Switched to using MidnightBSD version
1281 data from param.h instead of the FreeBSD version. This means
1282 testing is now possible in the ports tree for the version
1283 and that any ports or code relying on the FreeBSD version from
1284 sys/sys/param.h will need to be fixed.
1285
1286 20080905:
1287 update nve(4) to support new hardware.
1288
1289 20080801:
1290 Import OpenBSM 1.0
1291
1292 Modify src/release to create 3 isos instead of 2 for packages.
1293
1294 etc/rc.d/firstboot now enables kdm, gnustep + slim and bsdstats.
1295
1296 Many ia64, alpha, powerpc items were removed.
1297
1298 The recent diffutils 2.8.7 import was fixed.
1299
1300 20080703:
1301 pcc was not installed properly when setting DESTDIR for live cds,
1302 or posibly jails.
1303
1304 20080627:
1305 Add firmware(9), WEP, CCMP, TKIP to GENERIC.
1306
1307 Add glabel to GENERIC.
1308
1309 Intel ICH8 mobile chipset used on some iMacs included with ata.
1310
1311 pcc connected to the build on i386. (alternative compiler)
1312
1313 ath added to GENERIC. (Atheros wireless NICs) on amd64/i386
1314
1315 20080528:
1316 Sendmail 8.14.3
1317
1318 20080516:
1319 ssh-vulnkey allows you to look for vulnerable ssh keys that
1320 were generated on Debian and Ubuntu hosts over the last
1321 few years. sshd can block offending keys with a configuration
1322 option.
1323
1324 The elf note on binaries is now set to MidnightBSD.
1325
1326 20080514:
1327 Fixed a number of problems with pcc. It is not yet connected
1328 to the build, but usable on i386 hosts. You may use it
1329 by make; make install in /usr/src/usr.bin/pcc. It will
1330 install in /usr/local as some of the files conflict with
1331 GCC versions. __MidnightBSD__ is defined in PCC as well.
1332
1333 System headers were fixed to allow pcc to compile many binaries
1334 on MidnightBSD. bin/cp will work now for instance.
1335
1336 20080430:
1337 __MidnightBSD__ is now defined via gcc. This can be tested
1338 to determine we're running on MidnightBSD in the preprocessor.
1339
1340 20080429:
1341 Import bind 9.4.2 with threading
1342
1343 libpthread (KSE) and libthr are built earlier
1344
1345 pcvt(4) removed!
1346
1347 Alias added for core2 cpus.
1348
1349 Alpha and PC98 only utilities removed from usr/sbin
1350
1351 syslogd, adduser, rmuser, mergemaster and mailwrapper have been
1352 improved. See the man pages for info.
1353
1354 periodic scripts will not send emails with empty message bodies.
1355 See mailwrapper fix.
1356
1357 20080410:
1358 Sync cpdup with DragonFly. Add parallel transaction support and
1359 -l flag to line-buffer stdout and stderr.
1360
1361 20080406:
1362 Import bzip2 1.05
1363 Import OpenSSH 4.9p1
1364
1365 20080322:
1366 The default umask was changed to 022.
1367
1368 /usr/X11R6 paths were removed from several config files.
1369
1370 .mkshrc files are now installed for root.
1371
1372 20080316:
1373 FIx a problem with gif0 tunnels and neighbors with IPV6.
1374
1375 20080312:
1376 Add lndir from X.org. This aides in the porting of MirPorts.
1377
1378 New OS versions were added to the mapage code (groff)
1379
1380 20080310:
1381 Correct a buffer overflow in ppp.
1382
1383 20080308:
1384 Remove /usr/X11R6 from manpath config.
1385
1386 20080307:
1387 Atheros driver no longer has several options set
1388 which corrects building in tinderbox on all three platforms.
1389
1390 Added a new macro to sx.h which returns true if the current
1391 thread holds an exclusive lock on a specifix sx.
1392
1393 Removed OS/2's HPFS file system. It's not maintained and
1394 I don't know anyone using OS/2 or ecomstation these days.
1395 My copy is in the closet collecting dust.
1396
1397 20080306:
1398 Synced tinderbox with FreeBSD. Modified it for MidnightBSD.
1399 Developers can now use it to check src builds.
1400
1401 20080303:
1402 Add mksh to /etc/shells, made some adjustments to options
1403 for mksh builds per suggestion upstream.
1404
1405 USB HID table updated with modern hardware list.
1406
1407 Updated BSD family true (we're not in there yet)
1408
1409 iso3166 file updated and import of tzdata2007k for
1410 new time zones.
1411
1412 Updated mksh to latest version R33.
1413
1414 20080228:
1415 Remplaced the random IP id generation code with a new
1416 version by Amit Klein.
1417
1418 20080221:
1419 Sendfile write only permissions fix.
1420
1421 Removed some HPFS and PC98 code.
1422
1423 iso639 file sycned with DragonFly.
1424
1425 20080128:
1426 Changed NTP configuration so that ips aren't cached
1427 so multiple servers are used.
1428
1429 Fix an issue with fork() in libpthread.
1430
1431 20080121:
1432 Add virtualization detection to set the HZ rate
1433 according to a VM present. VMWare and Parallels
1434 should work better like this.
1435
1436 Change to full x11 install in sysinstall. Add
1437 xorg 7 support.
1438
1439 20080115:
1440 Fix the handling of PTY's. CVE-2008-0216
1441
1442 20080105:
1443 mport delete code added, USE_MPORT_TOOLS knob aded.
1444
1445 20080101:
1446 Happy New Year
1447
1448 20071123:
1449 Update sendmail to 8.14.2
1450
1451 20071120:
1452 Update system compiler to gcc 3.4.6.
1453
1454 20071023:
1455 Updated mksh to R31d.
1456
1457 20070911:
1458 Updated mksh to version R31b.
1459
1460 Fixed stderr output in libpthread. Previously it was
1461 written to stdout.
1462
1463 20070831:
1464 Added dot.mkshrc file to support the recent change to
1465 mksh from OpenBSD's ksh derived from pdksh.
1466
1467 Added new firewall configuration. ipfw is enabled by default
1468 with a "desktop" configuration. Consult /etc/rc.firewall
1469 or ipfw show to see the ruleset used. You can disable
1470 ipfw by setting firewall_enable="NO" in /etc/rc.conf This
1471 change only effects IPv4. IPv6 does not have a firewall
1472 enabled by default.
1473
1474 20070814:
1475 Removed GNU tar source. We've been using BSD tar
1476 for awhile.
1477
1478 20070806:
1479 Finished removing umapfs and autofs from the tree.
1480
1481 20070804:
1482 BIND and Tcpdump have been patched for recent vulnerabilities.
1483
1484 We switched to BSD cpio (pax).
1485
1486 20070719:
1487 Imported cpdup from DragonFly as /bin/cpdup
1488
1489 20070716:
1490 Update GNU cpio to 2.8.
1491
1492 20070410:
1493 cvs was updated to 1.12.13. cvsbug was removed.
1494 cvs now behaves similarly to DragonFly's cvs with
1495 most of their local changes.
1496
1497 20070409:
1498 RELENG_0_1 was created. More aggresive changes will
1499 continue here.
1500
1501 20070406:
1502 Back out propolice. propolice caused several problems
1503 with our threading libraries libthr and libpthread.
1504 curthread was often NULL after the patch and many
1505 multithreaded applications would crash. We plan to
1506 work on either bringing in gcc 4.1 or developing a new
1507 patch which also corrects our threading issues later.
1508
1509 It is more important to have a stable system for our
1510 mport work and other projects at this time.
1511
1512 This is not a clean removal. It is recommended that you
1513 have a recently SNAP CD handy. You can either reinstall
1514 or perform a make buildworld and make buildkernel and
1515 make installkernel. Reboot on the cd and copy the contents
1516 of /bin, /sbin, /lib, /libexec, and /usr/bin, /usr/sbin,
1517 /usr/lib, and /usr/libexec to the respective directories on
1518 your disk. Then you should be able to boot into single user
1519 mode and run make installworld. You will need to run
1520 chflags noschg on some of the files if you can't overwrite
1521 them.
1522
1523 You will get __guard missing errors since we had to remove
1524 this from libc.
1525
1526 You will need to rebuild any ports built while propolice was
1527 installed.
1528
1529 20070401:
1530 Importing propolice into MidnightBSD. Propolice is going to
1531 provide us with much greater security and stability in the
1532 long run. If upgrading from a pre-propolice system, please
1533 follow the these instructions:
1534
1535 cd /usr/src/lib/libc && make obj && make && make install
1536 cd /usr/src/gnu/usr.bin/cc && make obj && make && make install
1537 cd /usr/src/lib/libpthread && make obj && make && make install
1538 cd /usr/src/lib/libthr && make obj && make && make install
1539 buildworld and kernel
1540
1541 It is adviced that any mports which were installed and/or built
1542 prior to the propolice update also be updated. If any errors
1543 or issue are encounted, please contact security@midnightbsd.org
1544 and we will be sure to investigate and come up with an expeditious
1545 fix.
1546
1547 20070314:
1548 Remove send-pr from src.
1549
1550 Switch to NetBSD's gzip.
1551
1552 Bump MBSD minor revision.
1553
1554 20070313:
1555 Imported OpenSSH 4.6p1.
1556
1557 Imported FreeBSD's libarchive and updated tar to work with it.
1558
1559 Disabled debug statements cluttering up /var/log/messages for
1560 the tcp autobuf patch applied previously.
1561
1562 20070312:
1563 Synced several audio changes from FreeBSD 6.1. Removed the
1564 BSD Daemon files from src/share.
1565
1566 20070308:
1567 Added mfi which supports LSI Logic MegaRAID SAS devices including
1568 the Dell perc5i.
1569
1570 20070206:
1571 Imported OpenBSD's sudo into source. Please install
1572 /usr/src/usr.bin/sudo/lib first before building.
1573
1574 Those who install from a snapshot after this date
1575 will not be effected.
1576
1577 20070119:
1578 Added audit group. Be sure to add audit to your /etc/group file
1579 before installing world.
1580
1581 hostapd was updated to 0.4.8.
1582
1583 An accidental commit in usr.sbin/bluetooth/hccontrol was fixed to
1584 unbreak world.
1585
1586 wpa_supplicant was updated.
1587
1588 For stability and compatibility reasons, it was decided that MidnightBSD
1589 sync with FreeBSD 6.1 Release. Nearly every change between the original
1590 fork date of February 24, 2006 and the release of FreeBSD 6.1 in May
1591 2006 will be merged. Beyond this, MidnightBSD will be a "real" fork and
1592 will not sync every little change with FreeBSD.
1593
1594 20061231:
1595 Updated COPYRIGHT for 2007.
1596
1597 Updated and bumped libutil after importing NetBSD efun(3) functions.
1598
1599 Added MidnightBSD_version and bumped the FreeBSD version as we've
1600 synced all commits between the fork and that version. It is now safe
1601 to assume MidnightBSD is compatible with FreeBSD RELENG_6 from
1602 Feb 26, 2006.
1603
1604 Added spell(1) and deroff(1) from NetBSD. Also added additional
1605 dict files to work with it. /usr/share/dict/american,
1606 /usr/share/dict/british and /usr/share/dict/special/math
1607
1608 Numerous man page and bug fixes.
1609
1610 20061226:
1611 Setup /usr/share/examples/cvsup SUPfiles for the new
1612 MidnightBSD CVSup server.
1613
1614 Fix a bug in burncd where it would continue forever while
1615 erasing CDRW media.
1616
1617 Add csup to /usr/bin. csup is a CVSup replacement written
1618 in C.
1619
1620 Fixed a bug with bsnmpd build from Oct 30.
1621
1622 Corrected some race conditions and fixed a few bugs in
1623 geom. Imported changes from FreeBSD RELENG_6.
1624
1625 20061225:
1626 Fixed a typo in src/lib/libc/sparc64/fpu/fpu_implode.c
1627 that caused long double to long and long long
1628 conversion of negative numbers to always result in -1.
1629
1630 20061221:
1631 Fixed acpi_battery.c to not report an ERROR if no
1632 batteries are present.
1633
1634 Performed some minor updates on the RL and RE NIC drivers.
1635 RL should no longer panic when trying to print errors.
1636
1637 Corrected a bug with TTY.
1638
1639 20061218:
1640 Corrected a bug with libpthread where newly created suspended
1641 threads don't get scheduled.
1642
1643 20061206:
1644 Fixed a typo with the firewire security patch.
1645
1646 20061129:
1647 Minor cleanups to utilities in bin.
1648
1649 Fixed msdos file system short file name behavior to match
1650 FreeBSD.
1651
1652 20061031:
1653 Updated man pages in section 7.
1654
1655 20061030:
1656 Updated sys/dev/drm to support intel 915 and radeon
1657 r300 cards properly.
1658
1659 Synced snmpd with FreeBSD-stable.
1660
1661 Fixed a bug in rm which could cause data loss.
1662
1663 20061027:
1664 Added Intel ICH8 and nForce 5 support to ATA. cam, mpt,
1665 random, kbdmux, atkbd, and usb were updated. Changes
1666 to clearing registers on SSE enabled processors (i386)
1667 commited.
1668
1669 lukemftpd updated.
1670
1671 openssh rc script was altered which effects initial
1672 seeding.
1673
1674 20061014:
1675 Workaround for em driver problem on shared IRQ.
1676
1677 Started removal of alpha support.
1678
1679 20061013:
1680 ATA driver was updated. USB/USB1/USB2 types added.
1681
1682 20061010:
1683 OpenSSH was updated to 4.4p1.
1684
1685 20060909:
1686 OpenNTPD was added to MidnightBSD. Run make delete-old to remove
1687 the old ntpd daemon.
1688
1689 cat has a new option -D which allows you to timestamp output
1690 on a per line basis.
1691
1692 The kernel has a keyboard mux which allows you to have multiple
1693 keyboard connected simultaneously. USB keyboard support was also
1694 improved with this patch.
1695
1696 The Intel em driver was updated. Network performance was greatly
1697 increased on many systems. Additional models are supported.
1698
1699 The ATA driver was patched to fix a potential deadlock.
1700
1701 Bind was patched to fix a potential denial of service condition.
1702
1703 20060817:
1704 ksh has been added to the base system. If you previously had
1705 the port installed, it will be overwritten on the next buildworld.
1706
1707
1708
1709 To build a kernel
1710 -----------------
1711 If you are updating from a prior version of MidnightBSD (even one just
1712 a few days old), you should follow this procedure. With a
1713 /usr/obj tree with a fresh buildworld,
1714 make -DALWAYS_CHECK_MAKE buildkernel KERNCONF=YOUR_KERNEL_HERE
1715 make -DALWAYS_CHECK_MAKE installkernel KERNCONF=YOUR_KERNEL_HERE
1716
1717 To test a kernel once
1718 ---------------------
1719 If you just want to boot a kernel once (because you are not sure
1720 if it works, or if you want to boot a known bad kernel to provide
1721 debugging information) run
1722 make installkernel KERNCONF=YOUR_KERNEL_HERE KODIR=/boot/testkernel
1723 nextboot -k testkernel
1724
1725 To just build a kernel when you know that it won't mess you up
1726 --------------------------------------------------------------
1727 This assumes you are already running a 6.X system. Replace
1728 ${arch} with the architecture of your machine (e.g. "i386",
1729 "amd64", "ia64", "pc98", "sparc64", etc).
1730
1731 cd src/sys/${arch}/conf
1732 config KERNEL_NAME_HERE
1733 cd ../compile/KERNEL_NAME_HERE
1734 make depend
1735 make
1736 make install
1737
1738 If this fails, go to the "To build a kernel" section.
1739
1740 To rebuild everything and install it on the current system.
1741 -----------------------------------------------------------
1742 # Note: sometimes if you are running current you gotta do more than
1743 # is listed here if you are upgrading from a really old current.
1744
1745 <make sure you have good level 0 dumps>
1746 make buildworld
1747 make kernel KERNCONF=YOUR_KERNEL_HERE
1748 [1]
1749 <reboot in single user> [3]
1750 mergemaster -p [5]
1751 make installworld
1752 make delete-old
1753 mergemaster [4]
1754 <reboot>
1755
1756
1757 To cross-install current onto a separate partition
1758 --------------------------------------------------
1759 # In this approach we use a separate partition to hold
1760 # current's root, 'usr', and 'var' directories. A partition
1761 # holding "/", "/usr" and "/var" should be about 2GB in
1762 # size.
1763
1764 <make sure you have good level 0 dumps>
1765 <boot into -stable>
1766 make buildworld
1767 make buildkernel KERNCONF=YOUR_KERNEL_HERE
1768 <maybe newfs current's root partition>
1769 <mount current's root partition on directory ${CURRENT_ROOT}>
1770 make installworld DESTDIR=${CURRENT_ROOT}
1771 cd src/etc; make distribution DESTDIR=${CURRENT_ROOT} # if newfs'd
1772 make installkernel KERNCONF=YOUR_KERNEL_HERE DESTDIR=${CURRENT_ROOT}
1773 cp /etc/fstab ${CURRENT_ROOT}/etc/fstab # if newfs'd
1774 <edit ${CURRENT_ROOT}/etc/fstab to mount "/" from the correct partition>
1775 <reboot into current>
1776 <do a "native" rebuild/install as described in the previous section>
1777 <maybe install compatibility libraries from src/lib/compat>
1778 <reboot>
1779
1780
1781 To upgrade in-place from 5.x-stable or higher to 6.x-stable
1782 -----------------------------------------------------------
1783 <make sure you have good level 0 dumps>
1784 make buildworld [9]
1785 make kernel KERNCONF=YOUR_KERNEL_HERE [8]
1786 [1]
1787 <reboot in single user> [3]
1788 mergemaster -p [5]
1789 make installworld
1790 make delete-old
1791 mergemaster -i [4]
1792 <reboot>
1793
1794 Make sure that you've read the UPDATING file to understand the
1795 tweaks to various things you need. At this point in the life
1796 cycle of current, things change often and you are on your own
1797 to cope. The defaults can also change, so please read ALL of
1798 the UPDATING entries.
1799
1800 Also, if you are tracking -current, you must be subscribed to
1801 freebsd-current@freebsd.org. Make sure that before you update
1802 your sources that you have read and understood all the recent
1803 messages there. If in doubt, please track -stable which has
1804 much fewer pitfalls.
1805
1806 [1] If you have third party modules, such as vmware, you
1807 should disable them at this point so they don't crash your
1808 system on reboot.
1809
1810 [3] From the bootblocks, boot -s, and then do
1811 fsck -p
1812 mount -u /
1813 mount -a
1814 cd src
1815 adjkerntz -i # if CMOS is wall time
1816 Also, when doing a major release upgrade, it is required that
1817 you boot into single user mode to do the installworld.
1818
1819 [4] Note: This step is non-optional. Failure to do this step
1820 can result in a significant reduction in the functionality of the
1821 system. Attempting to do it by hand is not recommended and those
1822 that pursue this avenue should read this file carefully, as well
1823 as the archives of freebsd-current and freebsd-hackers mailing lists
1824 for potential gotchas.
1825
1826 [5] Usually this step is a noop. However, from time to time
1827 you may need to do this if you get unknown user in the following
1828 step. It never hurts to do it all the time.
1829
1830 [8] In order to have a kernel that can run the 5.x binaries
1831 needed to do an installworld, you must include the COMPAT_FREEBSD5
1832 option in your kernel. Failure to do so may leave you with a system
1833 that is hard to boot to recover. A similar kernel option COMPAT_FREEBSD5
1834 is required to run the 5.x binaries on more recent kernels.
1835
1836 Make sure that you merge any new devices from GENERIC since the
1837 last time you updated your kernel config file.
1838
1839 [9] When checking out sources, you must include the -P flag to have
1840 cvs prune empty directories.
1841
1842 If CPUTYPE is defined in your /etc/make.conf, make sure to use the
1843 "?=" instead of the "=" assignment operator, so that buildworld can
1844 override the CPUTYPE if it needs to.
1845
1846 MAKEOBJDIRPREFIX must be defined in an environment variable, and
1847 not on the command line, or in /etc/make.conf. buildworld will
1848 warn if it is improperly defined.
1849
1850 Copyright information:
1851
1852 Copyright 1998-2005 M. Warner Losh. All Rights Reserved.
1853
1854 Redistribution, publication, translation and use, with or without
1855 modification, in full or in part, in any form or format of this
1856 document are permitted without further permission from the author.
1857
1858 THIS DOCUMENT IS PROVIDED BY WARNER LOSH ``AS IS'' AND ANY EXPRESS OR
1859 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1860 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1861 DISCLAIMED. IN NO EVENT SHALL WARNER LOSH BE LIABLE FOR ANY DIRECT,
1862 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1863 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1864 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1865 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
1866 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
1867 IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1868 POSSIBILITY OF SUCH DAMAGE.
1869
1870 If you find this document useful, and you want to, you may buy the
1871 author a beer.
1872
1873 Contact Warner Losh if you have any questions about your use of
1874 this document.
1875
1876 $FreeBSD: src/UPDATING,v 1.416.2.18 2006/02/22 11:51:57 yar Exp $
1877 $MidnightBSD$

Properties

Name Value
svn:keywords MidnightBSD=%H