xref: /freebsd/UPDATING (revision d65850eb5f9218c4e2f1ad58989f4f49246ec263)
157199806SWarner LoshUpdating Information for FreeBSD current users
253dfde79SWarner Losh
3f8c77507SWarner LoshThis file is maintained by imp@village.org.  Please send new entries
4dc0dbf5cSWarner Loshdirectly to him.  See end of file for further details.  For commonly
516de1a07SWarner Loshdone items, please see the end of the file.  Search for 'COMMON
616de1a07SWarner LoshITEMS:'
716de1a07SWarner Losh
8*d65850ebSWarner Losh20000522:
9*d65850ebSWarner Losh	A new set up binutils went into the tree today.  Anybdoy
10*d65850ebSWarner Losh	building a kernel after this point is advised that they need
11*d65850ebSWarner Losh	to rebuild their binutils (or better yet do a
12*d65850ebSWarner Losh	buildworld/installworld) before building a new kernel.
13*d65850ebSWarner Losh
148039cedeSWarner Losh20000513:
158039cedeSWarner Losh	The ethernet drivers were all updated to clean up the BPF handling.
168039cedeSWarner Losh
17*d65850ebSWarner Losh20000510:
188039cedeSWarner Losh	The problems with boot blocks on the alphas have been corrected.
198039cedeSWarner Losh	This will require some care in updating alphas.  A new libstand
208039cedeSWarner Losh	is requires for the boot blocks to build properly.
218039cedeSWarner Losh
228039cedeSWarner Losh20000503:
238039cedeSWarner Losh	Recompile all kld modules.  Proper version dependency info
248039cedeSWarner Losh	is now available.
258039cedeSWarner Losh
26*d65850ebSWarner Losh20000502:
27*d65850ebSWarner Losh	Modules have been disconnected from the buildworld tree and
28*d65850ebSWarner Losh	connected to the kernel building instead.
29*d65850ebSWarner Losh
308039cedeSWarner Losh2000427:
318039cedeSWarner Losh	You may need to build gperf
328039cedeSWarner Losh		cd /usr/src/gnu/usr.bin/gperf && make depend all install
338039cedeSWarner Losh	when upgrading from 4.0 -> current.  The build system now uses
348039cedeSWarner Losh	an option only in -current.
358039cedeSWarner Losh
362b8dd5f4SWarner Losh20000417:
372b8dd5f4SWarner Losh	The method that we brand ELF binaries has changed to be more
382b8dd5f4SWarner Losh	acceptible to the binutils maintainers.  You will need to
392b8dd5f4SWarner Losh	rebrand your ELF binaries that aren't native.  One problem
402b8dd5f4SWarner Losh	binary is the Linux ldconfig.  After your make world, but
412b8dd5f4SWarner Losh	before you reboot, you'll neeed to issue:
422b8dd5f4SWarner Losh		brandelf -t Linux /compat/linux/sbin/ldconfig
432b8dd5f4SWarner Losh	if you have Linux compatibility enabled on your machine.
442b8dd5f4SWarner Losh
458d9f1945SWarner Losh20000320:
462b8dd5f4SWarner Losh	If you have really bad/marginal IDE drives, you may find they
472b8dd5f4SWarner Losh	don't work well.  Use pio mode instead.  The easiest way to
482b8dd5f4SWarner Losh	cope if you have a problem combination is to add:
498d9f1945SWarner Losh		/sbin/sysctl -w hw.atamodes=pio,pio,pio,pio
502b8dd5f4SWarner Losh	to the start of /etc/rc.conf.
518d9f1945SWarner Losh
52f8ab1dd6SWarner Losh20000319:
53f8ab1dd6SWarner Losh	The ISA and PCI compatability shims have been connected to the
54f8ab1dd6SWarner Losh	options COMPAT_OLDISA and COMPAT_OLDPCI.  If you are using old
55f8ab1dd6SWarner Losh	style PCI or ISA drivers (i.e. tx, voxware, etc.) you must
56f8ab1dd6SWarner Losh	include the appropriate option in your kernel config.  Drivers
57f8ab1dd6SWarner Losh	using the shims should be updated or they won't ship with
58f8ab1dd6SWarner Losh	5.0-RELEASE, targeted for 2001.
59f8ab1dd6SWarner Losh
6019cada77SWarner Losh20000318:
6119cada77SWarner Losh	We've entered the tradtional post release dumping party.
6219cada77SWarner Losh	Large kernel changes are being committed and are in the
6319cada77SWarner Losh	works.  It is important to keep the systems' klds and kernel
6419cada77SWarner Losh	in sync as kernel interfaces and structures are changing.
6519cada77SWarner Losh	Before reporting kernel panics, make sure that all modules
6619cada77SWarner Losh	that you are loading are up to date.
67ba228352SWarner Losh
6819cada77SWarner Losh20000315:
696d23c382SWarner Losh	If you are upgrading from an older version of FreeBSD, you
706d23c382SWarner Losh	need to update your boot blocks as well.  'disklabel -B ad0'
716d23c382SWarner Losh	will do the trick.  This isn't critical until you remove your
726d23c382SWarner Losh	wd device entries in /dev, at which point your system will not
736d23c382SWarner Losh	boot.
746d23c382SWarner Losh
756d23c382SWarner Losh20000315:
7619cada77SWarner Losh	4.0 RELEASE shipped.  Please see the 4.0 UPDATING file for how
7719cada77SWarner Losh	to upgrade to 4.0 from 3.x.
7857199806SWarner Losh
79dc0dbf5cSWarner LoshCOMMON ITEMS:
80dc0dbf5cSWarner Losh
81dc0dbf5cSWarner Losh	To build a kernel
82dc0dbf5cSWarner Losh	-----------------
83dc0dbf5cSWarner Losh	Update config, genassym and go:
84dc0dbf5cSWarner Losh		config YOUR_KERNEL_HERE
85dc0dbf5cSWarner Losh		cd ../../compile/YOUR_KERNEL_HERE
86dc0dbf5cSWarner Losh		make depend && make
873645fc1cSWarner Losh		make install
88dc0dbf5cSWarner Losh
8916de1a07SWarner Losh	To rebuild everything
9016de1a07SWarner Losh	---------------------
91759f0aefSWarner Losh	make world
92759f0aefSWarner Losh
93dc0dbf5cSWarner LoshFORMAT:
94dc0dbf5cSWarner Losh
951fc1a0dcSWarner LoshThis file contains a list, in reverse chronologocal order, of major
961fc1a0dcSWarner Loshbreakages in tracking -current.  Not all things will be listed here,
97f8ab1dd6SWarner Loshand it only starts on March 15, 2000.  Updating files can found in
98f8ab1dd6SWarner Loshprevious releases if your system is older than this.
991fc1a0dcSWarner Losh
1003645fc1cSWarner LoshPlease filter your entries through Warner Losh (imp@village.org) so
1013645fc1cSWarner Loshthat the style, formatting, etc of this file can be maintained.
102f8c77507SWarner Losh
10397d92980SPeter Wemm$FreeBSD$
104