xref: /freebsd/UPDATING (revision 3645fc1c45208f93fb6ef82e778dcf8f50b0423b)
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
8759f0aefSWarner Losh20000205:
992c9724fSWarner Losh	The xinstall problem has kinda sorta been corrected.  The
1092c9724fSWarner Losh	following is known to work by the author of UPDATING.  It
1192c9724fSWarner Losh	is what he did to update his laptop.  It is likely the same
1292c9724fSWarner Losh	effect as the work around listed in 20000129.
1392c9724fSWarner Losh		make buildworld
1492c9724fSWarner Losh		make installworld	This will fail
1592c9724fSWarner Losh		cd usr.bin/xinstall
1692c9724fSWarner Losh		make clean all install NOSHARED=YES
1792c9724fSWarner Losh		cd ../..
1892c9724fSWarner Losh		make installworld
1992c9724fSWarner Losh	If it doesn't work for you, then I'm sure that there will be
2092c9724fSWarner Losh	another 100 messages in -current.
21759f0aefSWarner Losh
22759f0aefSWarner Losh20000204:
23759f0aefSWarner Losh	libipsec version number changed from 2 to 0.  The original
2493e7bcc9SWarner Losh	commit of Jan 6 incorrectly set this to 2.  Remove
25759f0aefSWarner Losh	/usr/lib/libipsec.so.2* before the buildworld and rebuild
26759f0aefSWarner Losh	anything that uses libipsec.so after you install the new
27759f0aefSWarner Losh	version.
28759f0aefSWarner Losh
2916de1a07SWarner Losh20000201:
30759f0aefSWarner Losh	The rcmd related functions have been aligned with other BSD
3116de1a07SWarner Losh	implementations.  rlogind and rshd have been changed to use
3216de1a07SWarner Losh	the new API.  A make world is recommended to keep them in sync
3316de1a07SWarner Losh	with the libraries they use.
3416de1a07SWarner Losh
3516de1a07SWarner Losh	http://www.FreeBSD.org/cgi/cvsweb.cgi/src/lib/libc/net/rcmd.c
3616de1a07SWarner Losh	has the details.
37ea31d04dSWarner Losh
3837990f36SWarner Losh20000129:
3937990f36SWarner Losh	{set,get}flags have been added to the tree for rather dubious
40759f0aefSWarner Losh	reasons.
4137990f36SWarner Losh
42759f0aefSWarner Losh	IF AND ONLY IF installworld fails:
43759f0aefSWarner Losh		make -k -DNOFSCHG installworld
44759f0aefSWarner Losh		make installworld
45759f0aefSWarner Losh	This issue was resolved Feb 5, 2000.
4616de1a07SWarner Losh
4716de1a07SWarner Losh20000125:
4816de1a07SWarner Losh	rcmd_af() is added for multiple address family support.  rsh
4916de1a07SWarner Losh	and rlogin have been updated to use this to support INET6.  A
5016de1a07SWarner Losh	make world is recommended to keep them in sync with the
5116de1a07SWarner Losh	libraries they use.
5237990f36SWarner Losh
5337990f36SWarner Losh20000124:
5437990f36SWarner Losh	The default way that virtual tables in our default C++
5537990f36SWarner Losh	compiler has changed.  We used to use THUNKS for virtual
5637990f36SWarner Losh	inheritance.  Unfortunately there are bugs that The GCC
5737990f36SWarner Losh	developers thought would be fixed in GCC 2.95.  However it
5837990f36SWarner Losh	isn't.
5937990f36SWarner Losh
6037990f36SWarner Losh	After this change existing applications written in C++ may
6137990f36SWarner Losh	give errors like below when you try to run them:
6237990f36SWarner Losh
6337990f36SWarner Losh/usr/libexec/ld-elf.so.1: /usr/lib/libstdc++.so.3: Undefined symbol "__vt_7filebuf"
6437990f36SWarner Losh
6537990f36SWarner Losh	The only fix is to rebuild the application and any C++
6637990f36SWarner Losh	libraries used.
6737990f36SWarner Losh
6837990f36SWarner Losh20000124:
6937990f36SWarner Losh	The management of next_writeable has been move from the
7037990f36SWarner Losh	kernel to userspace. This means that the burncd command
7137990f36SWarner Losh	must be in sync with the kernel. So make world is your
7237990f36SWarner Losh	friend.
7337990f36SWarner Losh
74ee2ac360SWarner Losh20000117:
75ee2ac360SWarner Losh	GNU texinfo upgraded to 4.0.  It is recommended that you use
7637990f36SWarner Losh	make buildworld to update.
77ee2ac360SWarner Losh
78ee2ac360SWarner Losh20000117:
79ee2ac360SWarner Losh	CAM_VERSION has been increased.  Recompile all programs that
80ee2ac360SWarner Losh	depend on it (tosha, camcontrol, etc) when moving to kernels
81ee2ac360SWarner Losh	past this date.
82ee2ac360SWarner Losh
83ee2ac360SWarner Losh20000115:
84ee2ac360SWarner Losh	pccard ioctls changed with a commit to have the kernel tell
85ee2ac360SWarner Losh	pccardd which device it created, rather than having pccardd
86ee2ac360SWarner Losh	dictate it to the kernel.  Recompile kernel and
87ee2ac360SWarner Losh	pccardd/pccardc together.  pccardd/pccardc rely on a kernel
88ee2ac360SWarner Losh	Makefile that must be installed prior to building them.  Make
89ee2ac360SWarner Losh	world will automatically take care of this issue, but you need
90ee2ac360SWarner Losh	to know if you are building by hand.
91ee2ac360SWarner Losh
920a488c75SWarner Losh20000109:
930a488c75SWarner Losh	Your kernel config files need to be changed to s/controller/device/
940a488c75SWarner Losh	in them.  You will need a new version of config to do this.
950a488c75SWarner Losh
96f3a0785bSWarner Losh20000107:
97f3a0785bSWarner Losh	chown & chgrp moved again
98f3a0785bSWarner Losh
99f3a0785bSWarner Losh	This is a heads up to let you know that you need to
100f6517190SWarner Losh		    rm -f /sbin/chown /bin/chgrp
101f3a0785bSWarner Losh	after your next `make world'.  Additionally you need to install
1020a488c75SWarner Losh	a new /dev/MAKEDEV (mergemaster(8) will assist you in this).
103f3a0785bSWarner Losh
104f3a0785bSWarner Losh20000107:
105f3a0785bSWarner Losh	SHA-1 password support gone
106f3a0785bSWarner Losh
107f3a0785bSWarner Losh	As warned yesterday, I've just removed the ability for
108f3a0785bSWarner Losh	libcrypt to understand SHA-1 passwords. This was present but
109f3a0785bSWarner Losh	undocumented in the tree for the past few months and was
110f3a0785bSWarner Losh	removed so it can be reimplemented properly as part of a
111f3a0785bSWarner Losh	revamped libcrypt at a later date. Anyone who was actually
112f3a0785bSWarner Losh	making use of the feature will have to update their passwords
113f3a0785bSWarner Losh	back to MD5 before they reinstall the library.
114f3a0785bSWarner Losh
115f3a0785bSWarner Losh20000106:
116f3a0785bSWarner Losh	ioctl numbers changed for dvdio ioctls.  You will need to recompile
1170a488c75SWarner Losh	anything that uses them.  wormcontrol has been deprecated in
118f3a0785bSWarner Losh	favor of burncd.
119f3a0785bSWarner Losh
1200a3f3aa2SWarner Losh19991223:
1210a3f3aa2SWarner Losh	Building linux and svr4 compatibility into the kernel now
1220a3f3aa2SWarner Losh	requires /usr/bin/genassym.  Go to /usr/src/usr.bin/genassym,
1230a3f3aa2SWarner Losh	do "make obj ; make clean depend all install" before building
1240a3f3aa2SWarner Losh	your kernel.
1250a3f3aa2SWarner Losh
1265525aae6SWarner Losh19991218:
1275525aae6SWarner Losh	sendmail.cf has moved from /etc/sendmail.cf to
1280a3f3aa2SWarner Losh	/etc/mail/sendmail.cf.  You may need to adjust /etc/rc.conf
1290a3f3aa2SWarner Losh	and /etc/rc to cope as well as moving sendmail.cf.
1305525aae6SWarner Losh
1315525aae6SWarner Losh19991216:
1320a3f3aa2SWarner Losh	ntp 4.0.98 has replaced the ancient xntpd.  The daemon name
1335525aae6SWarner Losh	changed from xntpd to ntpd, so you may need to update your
1345525aae6SWarner Losh	/etc/rc.conf file.  The ntp.conf files are compatible with the
1355525aae6SWarner Losh	old release, unless you are using a local reference clock.
1365525aae6SWarner Losh	Details about ntp4 can be found at http://www.ntp.org/.
1375525aae6SWarner Losh
1385525aae6SWarner Losh	xntpd will be cvs removed from the repo in about a week.
1395525aae6SWarner Losh
140fda36f2fSWarner Losh19991213:
141fda36f2fSWarner Losh	Soren updated the ata driver.  Please update to at least this
142fda36f2fSWarner Losh	version before submitting bug reports.
143fda36f2fSWarner Losh
144fda36f2fSWarner Losh19991210:
145fda36f2fSWarner Losh	The ata driver has become the primary ata/ide/atapi driver in
146fda36f2fSWarner Losh	the kernel.  The wd driver is obsolete.  You should upgrade your
147fda36f2fSWarner Losh	machine to the new ata driver.  You will need to follow the
148fda36f2fSWarner Losh	directions for updating the devices in the 19991205 entry.  You
149fda36f2fSWarner Losh	will need to update all occurances of wd to ad in your config files
150fda36f2fSWarner Losh	(/etc/rc.conf, /etc/fstab, etc).  A compatibility device exists
151fda36f2fSWarner Losh	for wd for the time being, but once you have determined that
152fda36f2fSWarner Losh	ata is working for you, transition to the new ad devices.
153fda36f2fSWarner Losh
154e306923fSPoul-Henning Kamp19991205:
155eeef0dd1SWarner Losh	Block devices are going away.  You will need to update your /dev
156a2e7fb9fSWarner Losh	tree with a fresh copy of MAKEDEV for things to always work in
157a2e7fb9fSWarner Losh	the future.  fsck is unable to cope with dirty file systems
158a2e7fb9fSWarner Losh	after this change, so it may work for you or it may not.
159a2e7fb9fSWarner Losh
16016de1a07SWarner Losh	See "To rebuild disk /dev entries" at the end of the file.
161a2e7fb9fSWarner Losh
162a2e7fb9fSWarner Losh	*** All uses of block devices must be converted to char devices.
163a2e7fb9fSWarner Losh	*** Likely the only thing impacted is dumpdev in /etc/rc.conf
164a2e7fb9fSWarner Losh
165a2e7fb9fSWarner Losh19991204:
166fda36f2fSWarner Losh	The dc interface has replaced al, ax, dm, pn and mx.  The former
167fda36f2fSWarner Losh	have been removed.
168fda36f2fSWarner Losh
169fda36f2fSWarner Losh19991204:
170a2e7fb9fSWarner Losh	Support for the old 'sd' device names has been removed in
171a2e7fb9fSWarner Losh	favor of 'da'.  Please update your /etc/fstab, /etc/rc.conf
172a2e7fb9fSWarner Losh	and any other places you might have sd names cached.
173a2e7fb9fSWarner Losh	Generally these changes are as simple as s=/dev/sd=/dev/da=g,
174a2e7fb9fSWarner Losh	but be careful to make sure that things are really that
175a2e7fb9fSWarner Losh	simple.  You may also need to create /dev entries for the da
176a2e7fb9fSWarner Losh	devices as well.
177a2e7fb9fSWarner Losh
17816de1a07SWarner Losh	See "To rebuild disk /dev entries" at the end of the file.
179a2e7fb9fSWarner Losh
180a2e7fb9fSWarner Losh19991203:
181a2e7fb9fSWarner Losh	BAD144 support has been removed.  Cope or replace the hardware.
182e306923fSPoul-Henning Kamp
183fda36f2fSWarner Losh19991129:
184fda36f2fSWarner Losh	ALPHA users take note.  All klds will need to be recompiled for
185fda36f2fSWarner Losh	kernels build after this date.  It is a good time to update since
186fda36f2fSWarner Losh	pal.s will be going away soon.
187fda36f2fSWarner Losh
1887a92b31cSWarner Losh19991126:
1897a92b31cSWarner Losh	MFS_ROOT and MFS_ROOT_SIZE are gone, replaced by MD_ROOT and
1907a92b31cSWarner Losh	MD_ROOT_SIZE options in the md driver.  md driver now deals with
1917a92b31cSWarner Losh	the hacks.  You should add md driver to kerneles that have
1927a92b31cSWarner Losh	MFS_ROOT, et al.  See GENERIC or LINT for details.
1937a92b31cSWarner Losh
19463f52da7SWarner Losh19991125:
19563f52da7SWarner Losh	The ep changed a while ago and can no longer be used with hard
19663f52da7SWarner Losh	wired addresses in the config file.
19763f52da7SWarner Losh
198fda36f2fSWarner Losh19991122:
199fda36f2fSWarner Losh	The bridge drivers for sound cards have been committed.  Please
200fda36f2fSWarner Losh	see LINT for instructions for your card, if it still works at
201fda36f2fSWarner Losh	all.
202fda36f2fSWarner Losh
2031a50e0c7SWarner Losh19991113:
2041a50e0c7SWarner Losh	Gcc 2.95.2 is now the default compiler.
2051a50e0c7SWarner Losh
2060a3f3aa2SWarner Losh19991030:
2070a3f3aa2SWarner Losh	/etc/radius.conf file format has changed.The format change is
2080a3f3aa2SWarner Losh	as follows.  Each server line in the file should now begin
2090a3f3aa2SWarner Losh	with a new field containing either "auth" for RADIUS
2100a3f3aa2SWarner Losh	authentication, or "acct" for RADIUS accounting.  Formerly
2110a3f3aa2SWarner Losh	only authentication was supported.  If the first field isn't
2120a3f3aa2SWarner Losh	"auth" or "acct" then the code assumes that "auth" is
2130a3f3aa2SWarner Losh	intended.  (That's the compatibility hack.)
2140a3f3aa2SWarner Losh
21525c3f405SWarner Losh19991015:
21625c3f405SWarner Losh	PCCARD has been updated to attach pcic to the isa bus.  Therefore
21725c3f405SWarner Losh	you will need to modify kernel config files that have pcic/card
21825c3f405SWarner Losh	in them as follows:
21925c3f405SWarner Losh		controller	pcic0	at isa?
22025c3f405SWarner Losh		controller	pcic1	at isa?
22125c3f405SWarner Losh		controller	card0
22225c3f405SWarner Losh
22373c86a1fSWarner Losh19990929:
22473c86a1fSWarner Losh	The sigset_t datatype has been changed from an integral type
22573c86a1fSWarner Losh	to a compound type and can hold 128 signals. Syscalls directly
22673c86a1fSWarner Losh	or indirectly using the new sigset_t have been added as to
22720d1019bSChris Costello	maintain compatibility with existing binaries. A new kernel must
22873c86a1fSWarner Losh	be made and installed and booted with before a make world can
22973c86a1fSWarner Losh	be done.
23073c86a1fSWarner Losh
231*3645fc1cSWarner Losh	***************************************************************
232*3645fc1cSWarner Losh		RECOMPILE AND REINSTALL KERNEL BEFORE MAKEWORLD
233*3645fc1cSWarner Losh	***************************************************************
234*3645fc1cSWarner Losh
23560dbe536SWarner Losh19990919:
23660dbe536SWarner Losh	New jail syscall format requires recompilation of jail(8) with
23760dbe536SWarner Losh	fresh headers installed (or a make world will do it for you).
23860dbe536SWarner Losh
23960dbe536SWarner Losh19990914:
24060dbe536SWarner Losh	Matt Dillon checked in many vm related things and sent a heads up
24160dbe536SWarner Losh	to -current urging caution and to report vm problems to him.
24260dbe536SWarner Losh	As of the 19th, no killer problems have been reported, but you
24360dbe536SWarner Losh	have been warned.
24460dbe536SWarner Losh
2455f83e348SWarner Losh19990908:
2465f83e348SWarner Losh	The new miibus has been added to the system.  If you are using
2475f83e348SWarner Losh	the dm, rl, sf, sis, ste, tl, wb or xl drivers, you need to
2485f83e348SWarner Losh	add "controller miibus0" to your config file.
2495f83e348SWarner Losh
250d9806965SNick Hibma19990905:
251d9806965SNick Hibma	/var/cron/log has been moved to /var/log/cron to get all the
252d9806965SNick Hibma	log files in one place.
2535f83e348SWarner Losh
25430e90e8bSWarner Losh19990831:
25563f52da7SWarner Losh	tn3270 has been removed from the base system and added as a port.
25630e90e8bSWarner Losh
257f8a59eaeSWarner Losh19990830:
258f8a59eaeSWarner Losh	User-visible TCP timers are now expressed in units of 1ms, instead
259f8a59eaeSWarner Losh	of 500ms, so if you've customized any timer values under
260f8a59eaeSWarner Losh	``net.inet.tcp'', multiply them by 500 to preserve TCP's behavior.
261f8a59eaeSWarner Losh
26230e90e8bSWarner Losh19990828:
26330e90e8bSWarner Losh	RCS Id tags changed to FreeBSD.  This will cause huge cvsup
26430e90e8bSWarner Losh	updates.
26530e90e8bSWarner Losh
266f8a59eaeSWarner Losh19990821:
267f8a59eaeSWarner Losh	On 28-May-1999 libreadline was upgraded from readline-2.2 to
268f8a59eaeSWarner Losh	readline-4.0.  At that time the shared library major version
269f8a59eaeSWarner Losh	number was bumped from "3" to "4".  It has been deemed that
270f8a59eaeSWarner Losh	the interface change between readline-2.2 and readline-4.0 was
27178bcb44aSBill Fumerola	not sufficient to warrant the version number bump.
272f8a59eaeSWarner Losh
273f8a59eaeSWarner Losh	Thus I have reverted it back to "3".  You will need to perform
274f8a59eaeSWarner Losh	the below immediately before your next ``make world'':
275f8a59eaeSWarner Losh	    cd /usr/lib
276f8a59eaeSWarner Losh	    ls -l libreadline.so.4
277f8a59eaeSWarner Losh	        (if you have /usr/lib/libreadline.so.4)
278f8a59eaeSWarner Losh	    mv libreadline.so.4 libreadline.so.3
279f8a59eaeSWarner Losh	    rm -f libreadline.so
280f8a59eaeSWarner Losh	    ln -s libreadline.so.3 libreadline.so
281f8a59eaeSWarner Losh
2827eedd934SWarner Losh19990801:
2837eedd934SWarner Losh	Changes to the pccardd kernel interface require that you recompile
2847eedd934SWarner Losh	pccardd for new kernel.
2857eedd934SWarner Losh
286882984b3SWarner Losh19980725:
287882984b3SWarner Losh	The ipfw interface to the kernel has changed.  You will need to
288882984b3SWarner Losh	recompile ipfw programs for the new kernel.
289882984b3SWarner Losh
290882984b3SWarner Losh19990715:
291882984b3SWarner Losh	The bpfilter device has been renamed to bpf.  You will need to
292882984b3SWarner Losh	change your config files in order to enable this in newer kernels.
293882984b3SWarner Losh
294e5bd655aSWarner Losh19990704:
295e5bd655aSWarner Losh	src/contrib/sys/softupdates is moving to
29695d18cfcSWarner Losh	src/sys/contrib/softupdates.  Update your symbolic links/etc.
297e5bd655aSWarner Losh
298e5bd655aSWarner Losh19990702:
299e5bd655aSWarner Losh	Major changes have been made to vinum and its interface.  See
300e5bd655aSWarner Losh	the man page (vinum(8)) for details.  Look at the concat,
301e5bd655aSWarner Losh	mirror and stripe commands, as well as the SIMPLIFIED
302e5bd655aSWarner Losh	CONFIGURATION section.
303e5bd655aSWarner Losh
304e5bd655aSWarner Losh19990628:
305e5bd655aSWarner Losh	Newsyslog.conf has had a minor, but potentially dangerous,
306e5bd655aSWarner Losh	change to its username/group syntax.  The old syntax was
307e5bd655aSWarner Losh	user.group, while the new syntax is user:group.
308e5bd655aSWarner Losh
309e5bd655aSWarner Losh19990627:
310e5bd655aSWarner Losh	Inetd wrapping default has changed.  Please see the updated
311e5bd655aSWarner Losh	man page for details.
312e5bd655aSWarner Losh
313ed478e7cSWarner Losh19990623:
314ed478e7cSWarner Losh	Compaq Smart Raid driver committed as ida.
315ed478e7cSWarner Losh
316075eeff2SWarner Losh19990622:
317075eeff2SWarner Losh	The second phase of syscons cleanup has happened.  Some
318075eeff2SWarner Losh	functionality has been made optional.  For details, see
319075eeff2SWarner Losh        http://www.freebsd.org/~yokota/sc_update-June.txt
3206ae429caSWarner Losh	Everyone will need to re-config(8) their kernels, but old
3216ae429caSWarner Losh	binaries will work with the new kernel.
322075eeff2SWarner Losh
323a883e9d3SWarner Losh19990620:
324a883e9d3SWarner Losh	IPFW uid/gid-based filtering support has been committed. This
325a883e9d3SWarner Losh	breaks binary compatibility with previous copies of
326a883e9d3SWarner Losh	ipfw(8). Any utilities using the ioctl()s of ipfw (especially
327a883e9d3SWarner Losh	ipfw(8)) need to be recompiled with the newest headers
328a883e9d3SWarner Losh	installed.
329a883e9d3SWarner Losh
330a883e9d3SWarner Losh19990618:
331a883e9d3SWarner Losh	Inetd now wraps all stream-based services, including internals.
332a883e9d3SWarner Losh	Syslog "severity" options are honoured. Installed syslog.conf
333a883e9d3SWarner Losh	and hosts.allow should be checked.
334a883e9d3SWarner Losh
33507b72539SWarner Losh19990509:
33607b72539SWarner Losh	Most of the problems with newbus have been corrected, but
33707b72539SWarner Losh	it is still current and evolving.
33807b72539SWarner Losh
33907b72539SWarner Losh	libcam's ABI has changed.  You must recompile the world and
34007b72539SWarner Losh	any ports that use it.
34107b72539SWarner Losh
34209fcf3f9SWarner Losh19990427:
34309fcf3f9SWarner Losh	Massive changes to SMP went into the tree that should speed
34409fcf3f9SWarner Losh	things up.  However, if you experience problems with SMP
34509fcf3f9SWarner Losh	machines, you can back off to the PRE_SMP_VMSHARE tag in the
34609fcf3f9SWarner Losh	CVS repository (or run an MP kernel).
34709fcf3f9SWarner Losh
34809fcf3f9SWarner Losh19990420:
34909fcf3f9SWarner Losh	Pccardd and the pccard bus in general seem to be broken or
35009fcf3f9SWarner Losh	most people.  Soren has patches to make it better for some,
35109fcf3f9SWarner Losh	but not all people.  Work is underway to make it better for
35209fcf3f9SWarner Losh	all people.
35309fcf3f9SWarner Losh
354ea31d04dSWarner Losh19990416:
355ea31d04dSWarner Losh	new bus changes integrated into -current.  Many problems were
356ea31d04dSWarner Losh	initially reported, but most have been fixed.  You'll need a
357ea31d04dSWarner Losh	new config and to tweak your kernel config file the way that
358ea31d04dSWarner Losh	GENERIC was tweaked.  Keep a copy of your old kernel when
359ea31d04dSWarner Losh	upgrading in case your new kernel doesn't work (and report the
360ea31d04dSWarner Losh	breakage to current@freebsd.org).
361ea31d04dSWarner Losh
362ea31d04dSWarner Losh	As of 19990421 the remaining problems/quirks are
363ea31d04dSWarner Losh
364ea31d04dSWarner Losh	o sio no longer supports pnp nor pccard.  This will be corrected,
365ea31d04dSWarner Losh	  but the new pccard code needs to be completed.
366ea31d04dSWarner Losh	o Some of the sound drivers broke for some people.  It seems
367ea31d04dSWarner Losh	  inconsistant as to who/what/when/where things broke.
368ea31d04dSWarner Losh	o Duplicate device entries in your config do not work.  Previously
369ea31d04dSWarner Losh	  they were silently ignored.  psm0 seems to be the most common
370ea31d04dSWarner Losh	  duplicate choice, although some reports have come in from people
371ea31d04dSWarner Losh	  that wired their scsi disk entries.
372ea31d04dSWarner Losh	o You must move the keyboard and mouse attachments from the
373ea31d04dSWarner Losh	  isa bus to the atkbdc bus.  See GENERIC for details.
374ea31d04dSWarner Losh	o Machines with multiple host-pci bridges (Intel 450NX) will not
375ea31d04dSWarner Losh	  probe the second pci bus.
376ea31d04dSWarner Losh	o Some probe ordering may have changed, so device naming may change
377ea31d04dSWarner Losh	  with the new kernel.  If you have multiple devices, please double
378ea31d04dSWarner Losh	  check to make sure they didn't move.  This is especially true
379ea31d04dSWarner Losh	  for cards on different buses.
380ea31d04dSWarner Losh	o The bus attachment for vga0 is always isa0 and never pci0 when
381ea31d04dSWarner Losh	  it is in fact a pci card.  It is safe to ignore this.
382ea31d04dSWarner Losh	o The format of the boot messages has changed (and is not
383ea31d04dSWarner Losh	  guaranteed to be constant for a while) so you may see this
384ea31d04dSWarner Losh	  in some shell scripts that diff dmesg from day to day as well
385ea31d04dSWarner Losh	  as scripts that parse dmesg output.
386f8c77507SWarner Losh
387d24adca8SWarner Losh19990414:
388d24adca8SWarner Losh	cc -aout sometimes has problems compiling with -g, remove -g
389d24adca8SWarner Losh	from those compilation units affected until this is corrected.
390d24adca8SWarner Losh
391d24adca8SWarner Losh	cc -aout has problems with producing some threaded libraries,
392d24adca8SWarner Losh	so make world -DWANT_AOUT is not functional at this time.
393d24adca8SWarner Losh
394ea31d04dSWarner Losh	Since make world for a.out isn't functional, you cannot do
395ea31d04dSWarner Losh	make aout-to-elf from a pre-egcs a.out system.  To work around
396ea31d04dSWarner Losh	this problem, make aout-to-elf using 3.1-stable first (or a
397ea31d04dSWarner Losh	pre egcs -current) and then a simple make world will take you
398ea31d04dSWarner Losh	the rest of the way with a -current source base.
399ea31d04dSWarner Losh
400d5ca0636SWarner Losh19990413:
401d24adca8SWarner Losh	Make -j works again for make world.  As always, use it with
402d24adca8SWarner Losh	care, and be sure to try a make world w/o -j before reporting
403d24adca8SWarner Losh	problems (that is, know if the problem exists w/o -j before
404d24adca8SWarner Losh	reporting the problem with -j).
405d24adca8SWarner Losh
406d24adca8SWarner Losh19990413:
407d24adca8SWarner Losh	Note cc -aout, which had been broken since the conversion to
408ea31d04dSWarner Losh	egcs, now supposedly works.  If you have rebuilt things like
409d24adca8SWarner Losh	XFree86 a.out libraries, you should rebuild them again or
410ea31d04dSWarner Losh	progams that use them, including netscape, will fail to work.
411d5ca0636SWarner Losh
4121f692d40SWarner Losh19990409:
4131f692d40SWarner Losh	NOTE: New c++ compiler cannot be used with c++ binaries from
4141f692d40SWarner Losh	the old compiler and vice versa.
4151f692d40SWarner Losh
4161f692d40SWarner Losh19990408:
41781725689SWarner Losh	In recent days egcs has been imported into the tree.  A number
41881725689SWarner Losh	of problems have been discussed in -current.  Here is a highlight
41981725689SWarner Losh	of a few of the more common ones.  With the exception of make
42081725689SWarner Losh	-j n, they have been claimed to have been fixed.
42181725689SWarner Losh
42281725689SWarner Losh	c++ is broken after make world: This is correct.  Because we
42381725689SWarner Losh	changed compilers two make worlds are necessary to get C++
42481725689SWarner Losh	working again.  The code generated by the old compiler and new
42581725689SWarner Losh	compiler are not compatible, so things wind up being
42681725689SWarner Losh	undefined.
42781725689SWarner Losh
42881725689SWarner Losh	cpp is broken in make world:  There was a window where cpp
42981725689SWarner Losh	would be built incorrectly.  The fix for this is
430420d4744SMasafumi Max NAKANE		cd src/gnu/usr.bin/cc
43181725689SWarner Losh		make clean
43281725689SWarner Losh		make all
43381725689SWarner Losh		make install
43481725689SWarner Losh	and this should correct your problems.  See the -current
43581725689SWarner Losh	archives for a version of this that does moer cleaning.
43681725689SWarner Losh
43781725689SWarner Losh	Make -j n doesn't work.  Work contiunes to make this work,
43881725689SWarner Losh	I've seen no reports of success as of April 7th.
43981725689SWarner Losh
440ff5e1f79SWarner Losh19990329:
441ff5e1f79SWarner Losh	Previously, one would define "NOAOUT" to keep from building
442ff5e1f79SWarner Losh	the legacy a.out bits.  Now one would define "WANT_AOUT" to
443ff5e1f79SWarner Losh	build them.
444ff5e1f79SWarner Losh
445fe9af953SWarner Losh19990316:
446fe9af953SWarner Losh	The name of the old wd.c and atapi.c based CDROM driver has
447fe9af953SWarner Losh	been changed back to wcd. So update your config file to use
448fe9af953SWarner Losh	"device wcd" instead of "device acd".
449fe9af953SWarner Losh
450fe9af953SWarner Losh19990314:
451fe9af953SWarner Losh	For those of you using the VN device as a loadable module,
452fe9af953SWarner Losh	please be aware that the new VN device has been committed to
453fe9af953SWarner Losh	-4.x and cannot yet be used as a loadable module.  This will
454fe9af953SWarner Losh	be fixed in the future.
455fe9af953SWarner Losh
456ce32355fSWarner Losh19990309:
457fe9af953SWarner Losh	New loader.rc mechanism.  Please see src/sys/boot/README for
458fe9af953SWarner Losh	details.
459ce32355fSWarner Losh
460f8c77507SWarner Losh19990225:
461f8c77507SWarner Losh	struct proc size changed.  Recompile kernel and the
462f8c77507SWarner Losh	usual suspects.  Make world if in doubt.
4631fc1a0dcSWarner Losh
4640edeb9e7SWarner Losh19990214:
4650edeb9e7SWarner Losh	The nlpt driver has changed names back to be the lpt driver.
4667dd38e55SWarner Losh	See ppbus(4) or http://www.freebsd.org/~nsouch/ppbus.html
4677dd38e55SWarner Losh	for proper configuration details.
4680edeb9e7SWarner Losh
4691fc1a0dcSWarner Losh19990210:
4701fc1a0dcSWarner Losh	The 'lpt' driver is now obsolete.  Replace it with the 'nlpt'
4710edeb9e7SWarner Losh	driver and 'ppbus' controller combination.
47257199806SWarner Losh
4737dd38e55SWarner Losh19990209:
4747dd38e55SWarner Losh	New devstat API requires recompilation of libdevstat, systat,
4757dd38e55SWarner Losh	iostat, vmstat and rpc.rstatd.  A new kernel is also required.
4767dd38e55SWarner Losh	make world + building a kernel should do all of this.  Any
4777dd38e55SWarner Losh	ports that use devstat need to be recompiled as well.
4787dd38e55SWarner Losh
4799a3105eeSWarner Losh19990125:
4809a3105eeSWarner Losh	Linux threads options has gone away (they are now standard in
4819a3105eeSWarner Losh	the FreeBSD kernel).  A recompile of all libkvm using programs
4829a3105eeSWarner Losh	is in order (or better yet a make world).
4839a3105eeSWarner Losh
4849a3105eeSWarner Losh19990122:
4859a3105eeSWarner Losh	On or about this date there was a small window when the boot
4869a3105eeSWarner Losh	blocks had some minor problems which seemed to force one to
4879a3105eeSWarner Losh	edit /etc/fstab.  This has been corrected, if you are seeing this
4889a3105eeSWarner Losh	problem, please rebuild and reinstall your boot blocks.
4899a3105eeSWarner Losh
4909a3105eeSWarner Losh19990121:
4918cd37f69SWarner Losh	Vinum has changed.  The "vinum read" command has changed.  For
4928cd37f69SWarner Losh	updates, please see
4933652181cSWarner Losh
4948cd37f69SWarner Loshhttp://www.freebsd.org/cgi/getmsg.cgi?fetch=800363+0+current/freebsd-current
4953652181cSWarner Losh
4968cd37f69SWarner Losh	for details.
4978cd37f69SWarner Losh
4988cd37f69SWarner Losh	Matt Dillon committed a boatload of VM changes, for
4998cd37f69SWarner Losh	information please see
5003652181cSWarner Losh
5018cd37f69SWarner Loshhttp://www.freebsd.org/cgi/getmsg.cgi?fetch=886676+0+current/freebsd-current
5028cd37f69SWarner Losh	or
5038cd37f69SWarner Loshhttp://www.freebsd.org/cgi/getmsg.cgi?fetch=827400+0+current/freebsd-current
5043652181cSWarner Losh
5058cd37f69SWarner Losh	for details.  These changes will likely not impact anybody,
5068cd37f69SWarner Losh	but large chagnes to the VM need at least a heads up.
5078cd37f69SWarner Losh
5088cd37f69SWarner Losh19990120:
5098cd37f69SWarner Losh	Stable branch created.  You might want to consider using this
5108cd37f69SWarner Losh	branch.  It is tagged with RELENG_3.
5118cd37f69SWarner Losh
512ad56ea87SWarner Losh19990119:
513ad56ea87SWarner Losh	More work on the syscons driver has been committed.  Since
514ad56ea87SWarner Losh	files moved around, you will need to reconfigure your kernel,
515ad56ea87SWarner Losh	and make clean; make depend before rebuilding the kernel.  No
516ad56ea87SWarner Losh	config file changes are needed.
517ad56ea87SWarner Losh
51857199806SWarner Losh19990111:
519a85c0f55SWarner Losh	New keyboard and video card drivers are introduced as the first
520a85c0f55SWarner Losh	stage of console driver reorganization.  You are required to
521a85c0f55SWarner Losh	update the kernel configuration file and rebuild the kernel.
522a85c0f55SWarner Losh	kbdcontrol, vidcontrol, and screen savers also need recompilation.
523a85c0f55SWarner Losh	The instruction can be found in
52457199806SWarner Losh
5257dafbc29SWarner Losh		http://www.freebsd.org/~yokota/sc_update.txt
52657199806SWarner Losh
527a85c0f55SWarner Losh	It has notes on splash screen too.
52857199806SWarner Losh
52957199806SWarner Losh19990106:
5309857e582SWarner Losh	Robert Nordier was kind enough to make this page to enable people to
531db23c94fSWarner Losh	install the new bootblocks:
53257199806SWarner Losh
5337dafbc29SWarner Losh		http://www.freebsd.org/~rnordier/boot.txt
53457199806SWarner Losh
5359ba54ae0SWarner Losh	When updating to ELF, make sure that you have updated your
5369ba54ae0SWarner Losh	/etc/rc files which have different ldconfig invocations for
5379ba54ae0SWarner Losh	elf and aout.  Otherwise things like X will stop working with
5389857e582SWarner Losh	messages about being unable to find library files.  The
5399857e582SWarner Losh	mergemaster utility in ports/sysutils/mergemaster helps to
5409857e582SWarner Losh	keep critical files like this in sync, and its use is
5419857e582SWarner Losh	recommended.
54257199806SWarner Losh
54357199806SWarner Losh19990104:
5442c558794SWarner Losh	Information about ELF day (see 19981230) can be found in
54557199806SWarner Losh
5467dafbc29SWarner Losh		http://www.freebsd.org/~peter/elfday.html
54757199806SWarner Losh
5482c558794SWarner Losh	about the upcoming change, its motivations and instructions
5492c558794SWarner Losh	for doing the upgrade.
55057199806SWarner Losh
55157199806SWarner Losh19981230:
552d5513f53SWarner Losh	You should install new bootblocks now.  The ELF kernel will
553e363c17bSWarner Losh	become default soon.  In addition, you'll need to upgrade
554e363c17bSWarner Losh	your userland programs to ELF before then as well.  Use
555e363c17bSWarner Losh	make aout-to-elf to upgrade your userland programs (old
556e363c17bSWarner Losh	a.out programs in, for example, /usr/local/bin will
557e363c17bSWarner Losh	continue to work, even after the upgrade).  See src/Makefile
558e363c17bSWarner Losh	for more details.
55957199806SWarner Losh
56057199806SWarner Losh19981224:
561355edc3eSWarner Losh	The old wcd driver has been deleted from the kernel.  The
562355edc3eSWarner Losh	driver that replaces it is named acd.  You'll need to change
563355edc3eSWarner Losh	this in your configuration files.
56457199806SWarner Losh
565355edc3eSWarner Losh	Failure to do this will result in "ATAPI CD-ROMs not
566355edc3eSWarner Losh	configured" at boot time.
56757199806SWarner Losh
568355edc3eSWarner Losh	The floppy tape driver (ft) has been removed from the kernel,
569355edc3eSWarner Losh	with no replacement driver.
57057199806SWarner Losh
57157199806SWarner Losh19981202:
572ab308df6SWarner Losh	New groups from 19981201 commented out of mtree, so they
573ab308df6SWarner Losh	aren't strictly needed, but still a good idea to have.
57457199806SWarner Losh
57557199806SWarner Losh19981201:
576ab308df6SWarner Losh	New user/group added: bind.  From src/etc/master.passwd and
577ab308df6SWarner Losh	src/etc/group:
578ab308df6SWarner Losh		% grep <newstuff> /usr/src/etc/group
579ab308df6SWarner Losh		bind:*:53:
580ab308df6SWarner Losh		% grep <newstuff> /usr/src/etc/master.passwd
581ab308df6SWarner Losh		tty:*:4:65533::0:0:Tty Sandbox:/:/sbin/nologin
582ab308df6SWarner Losh		kmem:*:5:65533::0:0:KMem Sandbox:/:/sbin/nologin
583ab308df6SWarner Losh		bind:*:53:53::0:0:Bind Sandbox:/:/sbin/nologin
58457199806SWarner Losh
58557199806SWarner Losh19981118:
58653dfde79SWarner Losh	PAM integrated into the tree.   Requires new /etc/pam.conf file
58753dfde79SWarner Losh	to silence warnings from authentication programs (login, etc).
58853dfde79SWarner Losh	See src/etc/pam.conf for a sample.
58957199806SWarner Losh
590dc0dbf5cSWarner LoshCOMMON ITEMS:
591dc0dbf5cSWarner Losh
592dc0dbf5cSWarner Losh	To build a kernel
593dc0dbf5cSWarner Losh	-----------------
594dc0dbf5cSWarner Losh	Update config, genassym and go:
595dc0dbf5cSWarner Losh		cd src/usr.bin/genassym
596dc0dbf5cSWarner Losh		make depend all install clean
597dc0dbf5cSWarner Losh		cd ../../usr.sbin/config
598dc0dbf5cSWarner Losh		make depend all install clean
599759f0aefSWarner Losh		cd ../../sys/i386/conf
600dc0dbf5cSWarner Losh		config YOUR_KERNEL_HERE
601dc0dbf5cSWarner Losh		cd ../../compile/YOUR_KERNEL_HERE
602dc0dbf5cSWarner Losh		make depend && make
603*3645fc1cSWarner Losh		make install
604dc0dbf5cSWarner Losh
60516de1a07SWarner Losh	To rebuild disk /dev entries
60616de1a07SWarner Losh	----------------------------
60716de1a07SWarner Losh
60816de1a07SWarner Losh	MAKEDEV should be copied from src/etc/MAKEDEV to /dev before
60916de1a07SWarner Losh	starting the following:
61016de1a07SWarner Losh
61116de1a07SWarner Losh		For N in the list of disks
61216de1a07SWarner Losh			MAKEDEV N			# eg ad0
61316de1a07SWarner Losh			for M in the list of slices
61416de1a07SWarner Losh				MAKEDEV NsMa		# eg ad0s1a
61516de1a07SWarner Losh
61616de1a07SWarner Losh
61716de1a07SWarner Losh	To rebuild everything
61816de1a07SWarner Losh	---------------------
619759f0aefSWarner Losh	make world
620759f0aefSWarner Losh
621759f0aefSWarner Losh	To update from 3.x to 4.0 stable
622759f0aefSWarner Losh	--------------------------------
623*3645fc1cSWarner Losh	cd /usr/src
624*3645fc1cSWarner Losh	make buildworld
625*3645fc1cSWarner Losh	cd sbin/mknod
626*3645fc1cSWarner Losh	make install
627*3645fc1cSWarner Losh	<follow directions to build/install a kernel>
628*3645fc1cSWarner Losh	<follow rebuild disk /dev entries above>	[*]
629*3645fc1cSWarner Losh	reboot
630*3645fc1cSWarner Losh	<in single user>
631*3645fc1cSWarner Losh	cd /usr/src
632*3645fc1cSWarner Losh	make -k installworld
633*3645fc1cSWarner Losh	make installworld
634*3645fc1cSWarner Losh
635*3645fc1cSWarner Losh	[*] You may need to switch from wd to ad ala 19991210
636*3645fc1cSWarner Losh
63716de1a07SWarner Losh
638dc0dbf5cSWarner LoshFORMAT:
639dc0dbf5cSWarner Losh
6401fc1a0dcSWarner LoshThis file contains a list, in reverse chronologocal order, of major
6411fc1a0dcSWarner Loshbreakages in tracking -current.  Not all things will be listed here,
64260dbe536SWarner Loshand it only starts on November 18, 1998.  If you have an earlier
6431fc1a0dcSWarner Loshversion of FreeBSD, you are on your own to get to November 18, 1998.
6441fc1a0dcSWarner Losh
645*3645fc1cSWarner LoshPlease filter your entries through Warner Losh (imp@village.org) so
646*3645fc1cSWarner Loshthat the style, formatting, etc of this file can be maintained.
647f8c77507SWarner Losh
64897d92980SPeter Wemm$FreeBSD$
649