ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/src/trunk/UPDATING
Revision: 7221
Committed: Sun Aug 9 23:56:13 2015 UTC (8 years, 10 months ago) by laffer1
File size: 47105 byte(s)
Log Message:
xz 5.0.8

File Contents

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

Properties

Name Value
svn:keywords MidnightBSD=%H