ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/src/trunk/UPDATING
Revision: 7141
Committed: Sat Jul 25 19:06:06 2015 UTC (8 years, 9 months ago) by laffer1
File size: 45663 byte(s)
Log Message:
document reallocarray in libc

File Contents

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

Properties

Name Value
svn:keywords MidnightBSD=%H