xref: /freebsd/UPDATING (revision dc0dbf5c9ebe6962742ff845972eae2a13d94264)
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
5dc0dbf5cSWarner Loshdone items, please see the end of the file.  Search for COMMON ITEMS:
6ea31d04dSWarner Losh
737990f36SWarner Losh20000129:
837990f36SWarner Losh	{set,get}flags have been added to the tree for rather dubious
937990f36SWarner Losh	reasons.  An unintended side effect of this is that you must
1037990f36SWarner Losh	rebuild install before the rest of the world.
1137990f36SWarner Losh
1237990f36SWarner Losh		cd src/usr.bin/xinstall
1337990f36SWarner Losh		make depend all install clean
1437990f36SWarner Losh
1537990f36SWarner Losh	before make world or buildworld.  This issue may be resolved
1637990f36SWarner Losh	before 4.0 goes out.
1737990f36SWarner Losh
1837990f36SWarner Losh20000124:
1937990f36SWarner Losh	The default way that virtual tables in our default C++
2037990f36SWarner Losh	compiler has changed.  We used to use THUNKS for virtual
2137990f36SWarner Losh	inheritance.  Unfortunately there are bugs that The GCC
2237990f36SWarner Losh	developers thought would be fixed in GCC 2.95.  However it
2337990f36SWarner Losh	isn't.
2437990f36SWarner Losh
2537990f36SWarner Losh	After this change existing applications written in C++ may
2637990f36SWarner Losh	give errors like below when you try to run them:
2737990f36SWarner Losh
2837990f36SWarner Losh/usr/libexec/ld-elf.so.1: /usr/lib/libstdc++.so.3: Undefined symbol "__vt_7filebuf"
2937990f36SWarner Losh
3037990f36SWarner Losh	The only fix is to rebuild the application and any C++
3137990f36SWarner Losh	libraries used.
3237990f36SWarner Losh
3337990f36SWarner Losh20000124:
3437990f36SWarner Losh	The management of next_writeable has been move from the
3537990f36SWarner Losh	kernel to userspace. This means that the burncd command
3637990f36SWarner Losh	must be in sync with the kernel. So make world is your
3737990f36SWarner Losh	friend.
3837990f36SWarner Losh
39ee2ac360SWarner Losh20000117:
40ee2ac360SWarner Losh	GNU texinfo upgraded to 4.0.  It is recommended that you use
4137990f36SWarner Losh	make buildworld to update.
42ee2ac360SWarner Losh
43ee2ac360SWarner Losh20000117:
44ee2ac360SWarner Losh	CAM_VERSION has been increased.  Recompile all programs that
45ee2ac360SWarner Losh	depend on it (tosha, camcontrol, etc) when moving to kernels
46ee2ac360SWarner Losh	past this date.
47ee2ac360SWarner Losh
48ee2ac360SWarner Losh20000115:
49ee2ac360SWarner Losh	pccard ioctls changed with a commit to have the kernel tell
50ee2ac360SWarner Losh	pccardd which device it created, rather than having pccardd
51ee2ac360SWarner Losh	dictate it to the kernel.  Recompile kernel and
52ee2ac360SWarner Losh	pccardd/pccardc together.  pccardd/pccardc rely on a kernel
53ee2ac360SWarner Losh	Makefile that must be installed prior to building them.  Make
54ee2ac360SWarner Losh	world will automatically take care of this issue, but you need
55ee2ac360SWarner Losh	to know if you are building by hand.
56ee2ac360SWarner Losh
570a488c75SWarner Losh20000109:
580a488c75SWarner Losh	Your kernel config files need to be changed to s/controller/device/
590a488c75SWarner Losh	in them.  You will need a new version of config to do this.
600a488c75SWarner Losh
61f3a0785bSWarner Losh20000107:
62f3a0785bSWarner Losh	chown & chgrp moved again
63f3a0785bSWarner Losh
64f3a0785bSWarner Losh	This is a heads up to let you know that you need to
65f6517190SWarner Losh		    rm -f /sbin/chown /bin/chgrp
66f3a0785bSWarner Losh	after your next `make world'.  Additionally you need to install
670a488c75SWarner Losh	a new /dev/MAKEDEV (mergemaster(8) will assist you in this).
68f3a0785bSWarner Losh
69f3a0785bSWarner Losh20000107:
70f3a0785bSWarner Losh	SHA-1 password support gone
71f3a0785bSWarner Losh
72f3a0785bSWarner Losh	As warned yesterday, I've just removed the ability for
73f3a0785bSWarner Losh	libcrypt to understand SHA-1 passwords. This was present but
74f3a0785bSWarner Losh	undocumented in the tree for the past few months and was
75f3a0785bSWarner Losh	removed so it can be reimplemented properly as part of a
76f3a0785bSWarner Losh	revamped libcrypt at a later date. Anyone who was actually
77f3a0785bSWarner Losh	making use of the feature will have to update their passwords
78f3a0785bSWarner Losh	back to MD5 before they reinstall the library.
79f3a0785bSWarner Losh
80f3a0785bSWarner Losh20000106:
81f3a0785bSWarner Losh	ioctl numbers changed for dvdio ioctls.  You will need to recompile
820a488c75SWarner Losh	anything that uses them.  wormcontrol has been deprecated in
83f3a0785bSWarner Losh	favor of burncd.
84f3a0785bSWarner Losh
850a3f3aa2SWarner Losh19991223:
860a3f3aa2SWarner Losh	Building linux and svr4 compatibility into the kernel now
870a3f3aa2SWarner Losh	requires /usr/bin/genassym.  Go to /usr/src/usr.bin/genassym,
880a3f3aa2SWarner Losh	do "make obj ; make clean depend all install" before building
890a3f3aa2SWarner Losh	your kernel.
900a3f3aa2SWarner Losh
915525aae6SWarner Losh19991218:
925525aae6SWarner Losh	sendmail.cf has moved from /etc/sendmail.cf to
930a3f3aa2SWarner Losh	/etc/mail/sendmail.cf.  You may need to adjust /etc/rc.conf
940a3f3aa2SWarner Losh	and /etc/rc to cope as well as moving sendmail.cf.
955525aae6SWarner Losh
965525aae6SWarner Losh19991216:
970a3f3aa2SWarner Losh	ntp 4.0.98 has replaced the ancient xntpd.  The daemon name
985525aae6SWarner Losh	changed from xntpd to ntpd, so you may need to update your
995525aae6SWarner Losh	/etc/rc.conf file.  The ntp.conf files are compatible with the
1005525aae6SWarner Losh	old release, unless you are using a local reference clock.
1015525aae6SWarner Losh	Details about ntp4 can be found at http://www.ntp.org/.
1025525aae6SWarner Losh
1035525aae6SWarner Losh	xntpd will be cvs removed from the repo in about a week.
1045525aae6SWarner Losh
105fda36f2fSWarner Losh19991213:
106fda36f2fSWarner Losh	Soren updated the ata driver.  Please update to at least this
107fda36f2fSWarner Losh	version before submitting bug reports.
108fda36f2fSWarner Losh
109fda36f2fSWarner Losh19991210:
110fda36f2fSWarner Losh	The ata driver has become the primary ata/ide/atapi driver in
111fda36f2fSWarner Losh	the kernel.  The wd driver is obsolete.  You should upgrade your
112fda36f2fSWarner Losh	machine to the new ata driver.  You will need to follow the
113fda36f2fSWarner Losh	directions for updating the devices in the 19991205 entry.  You
114fda36f2fSWarner Losh	will need to update all occurances of wd to ad in your config files
115fda36f2fSWarner Losh	(/etc/rc.conf, /etc/fstab, etc).  A compatibility device exists
116fda36f2fSWarner Losh	for wd for the time being, but once you have determined that
117fda36f2fSWarner Losh	ata is working for you, transition to the new ad devices.
118fda36f2fSWarner Losh
119e306923fSPoul-Henning Kamp19991205:
120eeef0dd1SWarner Losh	Block devices are going away.  You will need to update your /dev
121a2e7fb9fSWarner Losh	tree with a fresh copy of MAKEDEV for things to always work in
122a2e7fb9fSWarner Losh	the future.  fsck is unable to cope with dirty file systems
123a2e7fb9fSWarner Losh	after this change, so it may work for you or it may not.
124a2e7fb9fSWarner Losh
125a2e7fb9fSWarner Losh	MAKEDEV should be copied from src/etc/MAKEDEV to /dev before
126a2e7fb9fSWarner Losh	starting the following:
127a2e7fb9fSWarner Losh
128a2e7fb9fSWarner Losh		For N in the list of disks
129fda36f2fSWarner Losh			MAKEDEV N			# eg ad0
130a2e7fb9fSWarner Losh			for M in the list of slices
131fda36f2fSWarner Losh				MAKEDEV NsMa		# eg ad0s1a
132a2e7fb9fSWarner Losh
133a2e7fb9fSWarner Losh	*** All uses of block devices must be converted to char devices.
134a2e7fb9fSWarner Losh	*** Likely the only thing impacted is dumpdev in /etc/rc.conf
135a2e7fb9fSWarner Losh
136a2e7fb9fSWarner Losh19991204:
137fda36f2fSWarner Losh	The dc interface has replaced al, ax, dm, pn and mx.  The former
138fda36f2fSWarner Losh	have been removed.
139fda36f2fSWarner Losh
140fda36f2fSWarner Losh19991204:
141a2e7fb9fSWarner Losh	Support for the old 'sd' device names has been removed in
142a2e7fb9fSWarner Losh	favor of 'da'.  Please update your /etc/fstab, /etc/rc.conf
143a2e7fb9fSWarner Losh	and any other places you might have sd names cached.
144a2e7fb9fSWarner Losh	Generally these changes are as simple as s=/dev/sd=/dev/da=g,
145a2e7fb9fSWarner Losh	but be careful to make sure that things are really that
146a2e7fb9fSWarner Losh	simple.  You may also need to create /dev entries for the da
147a2e7fb9fSWarner Losh	devices as well.
148a2e7fb9fSWarner Losh
149a2e7fb9fSWarner Losh	MAKEDEV should be copied from src/etc/MAKEDEV to /dev before
150a2e7fb9fSWarner Losh	starting the following:
151a2e7fb9fSWarner Losh
152a2e7fb9fSWarner Losh		For N in the list of da disks on your system
153a2e7fb9fSWarner Losh			MAKEDEV daN
154a2e7fb9fSWarner Losh			for M in the list of slices
155a2e7fb9fSWarner Losh				MAKEDEV daNsMa
156a2e7fb9fSWarner Losh19991203:
157a2e7fb9fSWarner Losh	BAD144 support has been removed.  Cope or replace the hardware.
158e306923fSPoul-Henning Kamp
159fda36f2fSWarner Losh19991129:
160fda36f2fSWarner Losh	ALPHA users take note.  All klds will need to be recompiled for
161fda36f2fSWarner Losh	kernels build after this date.  It is a good time to update since
162fda36f2fSWarner Losh	pal.s will be going away soon.
163fda36f2fSWarner Losh
1647a92b31cSWarner Losh19991126:
1657a92b31cSWarner Losh	MFS_ROOT and MFS_ROOT_SIZE are gone, replaced by MD_ROOT and
1667a92b31cSWarner Losh	MD_ROOT_SIZE options in the md driver.  md driver now deals with
1677a92b31cSWarner Losh	the hacks.  You should add md driver to kerneles that have
1687a92b31cSWarner Losh	MFS_ROOT, et al.  See GENERIC or LINT for details.
1697a92b31cSWarner Losh
17063f52da7SWarner Losh19991125:
17163f52da7SWarner Losh	The ep changed a while ago and can no longer be used with hard
17263f52da7SWarner Losh	wired addresses in the config file.
17363f52da7SWarner Losh
174fda36f2fSWarner Losh19991122:
175fda36f2fSWarner Losh	The bridge drivers for sound cards have been committed.  Please
176fda36f2fSWarner Losh	see LINT for instructions for your card, if it still works at
177fda36f2fSWarner Losh	all.
178fda36f2fSWarner Losh
1791a50e0c7SWarner Losh19991113:
1801a50e0c7SWarner Losh	Gcc 2.95.2 is now the default compiler.
1811a50e0c7SWarner Losh
1820a3f3aa2SWarner Losh19991030:
1830a3f3aa2SWarner Losh	/etc/radius.conf file format has changed.The format change is
1840a3f3aa2SWarner Losh	as follows.  Each server line in the file should now begin
1850a3f3aa2SWarner Losh	with a new field containing either "auth" for RADIUS
1860a3f3aa2SWarner Losh	authentication, or "acct" for RADIUS accounting.  Formerly
1870a3f3aa2SWarner Losh	only authentication was supported.  If the first field isn't
1880a3f3aa2SWarner Losh	"auth" or "acct" then the code assumes that "auth" is
1890a3f3aa2SWarner Losh	intended.  (That's the compatibility hack.)
1900a3f3aa2SWarner Losh
19125c3f405SWarner Losh19991015:
19225c3f405SWarner Losh	PCCARD has been updated to attach pcic to the isa bus.  Therefore
19325c3f405SWarner Losh	you will need to modify kernel config files that have pcic/card
19425c3f405SWarner Losh	in them as follows:
19525c3f405SWarner Losh		controller	pcic0	at isa?
19625c3f405SWarner Losh		controller	pcic1	at isa?
19725c3f405SWarner Losh		controller	card0
19825c3f405SWarner Losh
19973c86a1fSWarner Losh19990929:
20073c86a1fSWarner Losh	The sigset_t datatype has been changed from an integral type
20173c86a1fSWarner Losh	to a compound type and can hold 128 signals. Syscalls directly
20273c86a1fSWarner Losh	or indirectly using the new sigset_t have been added as to
20320d1019bSChris Costello	maintain compatibility with existing binaries. A new kernel must
20473c86a1fSWarner Losh	be made and installed and booted with before a make world can
20573c86a1fSWarner Losh	be done.
20673c86a1fSWarner Losh
20760dbe536SWarner Losh19990919:
20860dbe536SWarner Losh	New jail syscall format requires recompilation of jail(8) with
20960dbe536SWarner Losh	fresh headers installed (or a make world will do it for you).
21060dbe536SWarner Losh
21160dbe536SWarner Losh19990914:
21260dbe536SWarner Losh	Matt Dillon checked in many vm related things and sent a heads up
21360dbe536SWarner Losh	to -current urging caution and to report vm problems to him.
21460dbe536SWarner Losh	As of the 19th, no killer problems have been reported, but you
21560dbe536SWarner Losh	have been warned.
21660dbe536SWarner Losh
2175f83e348SWarner Losh19990908:
2185f83e348SWarner Losh	The new miibus has been added to the system.  If you are using
2195f83e348SWarner Losh	the dm, rl, sf, sis, ste, tl, wb or xl drivers, you need to
2205f83e348SWarner Losh	add "controller miibus0" to your config file.
2215f83e348SWarner Losh
222d9806965SNick Hibma19990905:
223d9806965SNick Hibma	/var/cron/log has been moved to /var/log/cron to get all the
224d9806965SNick Hibma	log files in one place.
2255f83e348SWarner Losh
22630e90e8bSWarner Losh19990831:
22763f52da7SWarner Losh	tn3270 has been removed from the base system and added as a port.
22830e90e8bSWarner Losh
229f8a59eaeSWarner Losh19990830:
230f8a59eaeSWarner Losh	User-visible TCP timers are now expressed in units of 1ms, instead
231f8a59eaeSWarner Losh	of 500ms, so if you've customized any timer values under
232f8a59eaeSWarner Losh	``net.inet.tcp'', multiply them by 500 to preserve TCP's behavior.
233f8a59eaeSWarner Losh
23430e90e8bSWarner Losh19990828:
23530e90e8bSWarner Losh	RCS Id tags changed to FreeBSD.  This will cause huge cvsup
23630e90e8bSWarner Losh	updates.
23730e90e8bSWarner Losh
238f8a59eaeSWarner Losh19990821:
239f8a59eaeSWarner Losh	On 28-May-1999 libreadline was upgraded from readline-2.2 to
240f8a59eaeSWarner Losh	readline-4.0.  At that time the shared library major version
241f8a59eaeSWarner Losh	number was bumped from "3" to "4".  It has been deemed that
242f8a59eaeSWarner Losh	the interface change between readline-2.2 and readline-4.0 was
24378bcb44aSBill Fumerola	not sufficient to warrant the version number bump.
244f8a59eaeSWarner Losh
245f8a59eaeSWarner Losh	Thus I have reverted it back to "3".  You will need to perform
246f8a59eaeSWarner Losh	the below immediately before your next ``make world'':
247f8a59eaeSWarner Losh	    cd /usr/lib
248f8a59eaeSWarner Losh	    ls -l libreadline.so.4
249f8a59eaeSWarner Losh	        (if you have /usr/lib/libreadline.so.4)
250f8a59eaeSWarner Losh	    mv libreadline.so.4 libreadline.so.3
251f8a59eaeSWarner Losh	    rm -f libreadline.so
252f8a59eaeSWarner Losh	    ln -s libreadline.so.3 libreadline.so
253f8a59eaeSWarner Losh
2547eedd934SWarner Losh19990801:
2557eedd934SWarner Losh	Changes to the pccardd kernel interface require that you recompile
2567eedd934SWarner Losh	pccardd for new kernel.
2577eedd934SWarner Losh
258882984b3SWarner Losh19980725:
259882984b3SWarner Losh	The ipfw interface to the kernel has changed.  You will need to
260882984b3SWarner Losh	recompile ipfw programs for the new kernel.
261882984b3SWarner Losh
262882984b3SWarner Losh19990715:
263882984b3SWarner Losh	The bpfilter device has been renamed to bpf.  You will need to
264882984b3SWarner Losh	change your config files in order to enable this in newer kernels.
265882984b3SWarner Losh
266e5bd655aSWarner Losh19990704:
267e5bd655aSWarner Losh	src/contrib/sys/softupdates is moving to
26895d18cfcSWarner Losh	src/sys/contrib/softupdates.  Update your symbolic links/etc.
269e5bd655aSWarner Losh
270e5bd655aSWarner Losh19990702:
271e5bd655aSWarner Losh	Major changes have been made to vinum and its interface.  See
272e5bd655aSWarner Losh	the man page (vinum(8)) for details.  Look at the concat,
273e5bd655aSWarner Losh	mirror and stripe commands, as well as the SIMPLIFIED
274e5bd655aSWarner Losh	CONFIGURATION section.
275e5bd655aSWarner Losh
276e5bd655aSWarner Losh19990628:
277e5bd655aSWarner Losh	Newsyslog.conf has had a minor, but potentially dangerous,
278e5bd655aSWarner Losh	change to its username/group syntax.  The old syntax was
279e5bd655aSWarner Losh	user.group, while the new syntax is user:group.
280e5bd655aSWarner Losh
281e5bd655aSWarner Losh19990627:
282e5bd655aSWarner Losh	Inetd wrapping default has changed.  Please see the updated
283e5bd655aSWarner Losh	man page for details.
284e5bd655aSWarner Losh
285ed478e7cSWarner Losh19990623:
286ed478e7cSWarner Losh	Compaq Smart Raid driver committed as ida.
287ed478e7cSWarner Losh
288075eeff2SWarner Losh19990622:
289075eeff2SWarner Losh	The second phase of syscons cleanup has happened.  Some
290075eeff2SWarner Losh	functionality has been made optional.  For details, see
291075eeff2SWarner Losh        http://www.freebsd.org/~yokota/sc_update-June.txt
2926ae429caSWarner Losh	Everyone will need to re-config(8) their kernels, but old
2936ae429caSWarner Losh	binaries will work with the new kernel.
294075eeff2SWarner Losh
295a883e9d3SWarner Losh19990620:
296a883e9d3SWarner Losh	IPFW uid/gid-based filtering support has been committed. This
297a883e9d3SWarner Losh	breaks binary compatibility with previous copies of
298a883e9d3SWarner Losh	ipfw(8). Any utilities using the ioctl()s of ipfw (especially
299a883e9d3SWarner Losh	ipfw(8)) need to be recompiled with the newest headers
300a883e9d3SWarner Losh	installed.
301a883e9d3SWarner Losh
302a883e9d3SWarner Losh19990618:
303a883e9d3SWarner Losh	Inetd now wraps all stream-based services, including internals.
304a883e9d3SWarner Losh	Syslog "severity" options are honoured. Installed syslog.conf
305a883e9d3SWarner Losh	and hosts.allow should be checked.
306a883e9d3SWarner Losh
30707b72539SWarner Losh19990509:
30807b72539SWarner Losh	Most of the problems with newbus have been corrected, but
30907b72539SWarner Losh	it is still current and evolving.
31007b72539SWarner Losh
31107b72539SWarner Losh	libcam's ABI has changed.  You must recompile the world and
31207b72539SWarner Losh	any ports that use it.
31307b72539SWarner Losh
31409fcf3f9SWarner Losh19990427:
31509fcf3f9SWarner Losh	Massive changes to SMP went into the tree that should speed
31609fcf3f9SWarner Losh	things up.  However, if you experience problems with SMP
31709fcf3f9SWarner Losh	machines, you can back off to the PRE_SMP_VMSHARE tag in the
31809fcf3f9SWarner Losh	CVS repository (or run an MP kernel).
31909fcf3f9SWarner Losh
32009fcf3f9SWarner Losh19990420:
32109fcf3f9SWarner Losh	Pccardd and the pccard bus in general seem to be broken or
32209fcf3f9SWarner Losh	most people.  Soren has patches to make it better for some,
32309fcf3f9SWarner Losh	but not all people.  Work is underway to make it better for
32409fcf3f9SWarner Losh	all people.
32509fcf3f9SWarner Losh
326ea31d04dSWarner Losh19990416:
327ea31d04dSWarner Losh	new bus changes integrated into -current.  Many problems were
328ea31d04dSWarner Losh	initially reported, but most have been fixed.  You'll need a
329ea31d04dSWarner Losh	new config and to tweak your kernel config file the way that
330ea31d04dSWarner Losh	GENERIC was tweaked.  Keep a copy of your old kernel when
331ea31d04dSWarner Losh	upgrading in case your new kernel doesn't work (and report the
332ea31d04dSWarner Losh	breakage to current@freebsd.org).
333ea31d04dSWarner Losh
334ea31d04dSWarner Losh	As of 19990421 the remaining problems/quirks are
335ea31d04dSWarner Losh
336ea31d04dSWarner Losh	o sio no longer supports pnp nor pccard.  This will be corrected,
337ea31d04dSWarner Losh	  but the new pccard code needs to be completed.
338ea31d04dSWarner Losh	o Some of the sound drivers broke for some people.  It seems
339ea31d04dSWarner Losh	  inconsistant as to who/what/when/where things broke.
340ea31d04dSWarner Losh	o Duplicate device entries in your config do not work.  Previously
341ea31d04dSWarner Losh	  they were silently ignored.  psm0 seems to be the most common
342ea31d04dSWarner Losh	  duplicate choice, although some reports have come in from people
343ea31d04dSWarner Losh	  that wired their scsi disk entries.
344ea31d04dSWarner Losh	o You must move the keyboard and mouse attachments from the
345ea31d04dSWarner Losh	  isa bus to the atkbdc bus.  See GENERIC for details.
346ea31d04dSWarner Losh	o Machines with multiple host-pci bridges (Intel 450NX) will not
347ea31d04dSWarner Losh	  probe the second pci bus.
348ea31d04dSWarner Losh	o Some probe ordering may have changed, so device naming may change
349ea31d04dSWarner Losh	  with the new kernel.  If you have multiple devices, please double
350ea31d04dSWarner Losh	  check to make sure they didn't move.  This is especially true
351ea31d04dSWarner Losh	  for cards on different buses.
352ea31d04dSWarner Losh	o The bus attachment for vga0 is always isa0 and never pci0 when
353ea31d04dSWarner Losh	  it is in fact a pci card.  It is safe to ignore this.
354ea31d04dSWarner Losh	o The format of the boot messages has changed (and is not
355ea31d04dSWarner Losh	  guaranteed to be constant for a while) so you may see this
356ea31d04dSWarner Losh	  in some shell scripts that diff dmesg from day to day as well
357ea31d04dSWarner Losh	  as scripts that parse dmesg output.
358f8c77507SWarner Losh
359d24adca8SWarner Losh19990414:
360d24adca8SWarner Losh	cc -aout sometimes has problems compiling with -g, remove -g
361d24adca8SWarner Losh	from those compilation units affected until this is corrected.
362d24adca8SWarner Losh
363d24adca8SWarner Losh	cc -aout has problems with producing some threaded libraries,
364d24adca8SWarner Losh	so make world -DWANT_AOUT is not functional at this time.
365d24adca8SWarner Losh
366ea31d04dSWarner Losh	Since make world for a.out isn't functional, you cannot do
367ea31d04dSWarner Losh	make aout-to-elf from a pre-egcs a.out system.  To work around
368ea31d04dSWarner Losh	this problem, make aout-to-elf using 3.1-stable first (or a
369ea31d04dSWarner Losh	pre egcs -current) and then a simple make world will take you
370ea31d04dSWarner Losh	the rest of the way with a -current source base.
371ea31d04dSWarner Losh
372d5ca0636SWarner Losh19990413:
373d24adca8SWarner Losh	Make -j works again for make world.  As always, use it with
374d24adca8SWarner Losh	care, and be sure to try a make world w/o -j before reporting
375d24adca8SWarner Losh	problems (that is, know if the problem exists w/o -j before
376d24adca8SWarner Losh	reporting the problem with -j).
377d24adca8SWarner Losh
378d24adca8SWarner Losh19990413:
379d24adca8SWarner Losh	Note cc -aout, which had been broken since the conversion to
380ea31d04dSWarner Losh	egcs, now supposedly works.  If you have rebuilt things like
381d24adca8SWarner Losh	XFree86 a.out libraries, you should rebuild them again or
382ea31d04dSWarner Losh	progams that use them, including netscape, will fail to work.
383d5ca0636SWarner Losh
3841f692d40SWarner Losh19990409:
3851f692d40SWarner Losh	NOTE: New c++ compiler cannot be used with c++ binaries from
3861f692d40SWarner Losh	the old compiler and vice versa.
3871f692d40SWarner Losh
3881f692d40SWarner Losh19990408:
38981725689SWarner Losh	In recent days egcs has been imported into the tree.  A number
39081725689SWarner Losh	of problems have been discussed in -current.  Here is a highlight
39181725689SWarner Losh	of a few of the more common ones.  With the exception of make
39281725689SWarner Losh	-j n, they have been claimed to have been fixed.
39381725689SWarner Losh
39481725689SWarner Losh	c++ is broken after make world: This is correct.  Because we
39581725689SWarner Losh	changed compilers two make worlds are necessary to get C++
39681725689SWarner Losh	working again.  The code generated by the old compiler and new
39781725689SWarner Losh	compiler are not compatible, so things wind up being
39881725689SWarner Losh	undefined.
39981725689SWarner Losh
40081725689SWarner Losh	cpp is broken in make world:  There was a window where cpp
40181725689SWarner Losh	would be built incorrectly.  The fix for this is
402420d4744SMasafumi Max NAKANE		cd src/gnu/usr.bin/cc
40381725689SWarner Losh		make clean
40481725689SWarner Losh		make all
40581725689SWarner Losh		make install
40681725689SWarner Losh	and this should correct your problems.  See the -current
40781725689SWarner Losh	archives for a version of this that does moer cleaning.
40881725689SWarner Losh
40981725689SWarner Losh	Make -j n doesn't work.  Work contiunes to make this work,
41081725689SWarner Losh	I've seen no reports of success as of April 7th.
41181725689SWarner Losh
412ff5e1f79SWarner Losh19990329:
413ff5e1f79SWarner Losh	Previously, one would define "NOAOUT" to keep from building
414ff5e1f79SWarner Losh	the legacy a.out bits.  Now one would define "WANT_AOUT" to
415ff5e1f79SWarner Losh	build them.
416ff5e1f79SWarner Losh
417fe9af953SWarner Losh19990316:
418fe9af953SWarner Losh	The name of the old wd.c and atapi.c based CDROM driver has
419fe9af953SWarner Losh	been changed back to wcd. So update your config file to use
420fe9af953SWarner Losh	"device wcd" instead of "device acd".
421fe9af953SWarner Losh
422fe9af953SWarner Losh19990314:
423fe9af953SWarner Losh	For those of you using the VN device as a loadable module,
424fe9af953SWarner Losh	please be aware that the new VN device has been committed to
425fe9af953SWarner Losh	-4.x and cannot yet be used as a loadable module.  This will
426fe9af953SWarner Losh	be fixed in the future.
427fe9af953SWarner Losh
428ce32355fSWarner Losh19990309:
429fe9af953SWarner Losh	New loader.rc mechanism.  Please see src/sys/boot/README for
430fe9af953SWarner Losh	details.
431ce32355fSWarner Losh
432f8c77507SWarner Losh19990225:
433f8c77507SWarner Losh	struct proc size changed.  Recompile kernel and the
434f8c77507SWarner Losh	usual suspects.  Make world if in doubt.
4351fc1a0dcSWarner Losh
4360edeb9e7SWarner Losh19990214:
4370edeb9e7SWarner Losh	The nlpt driver has changed names back to be the lpt driver.
4387dd38e55SWarner Losh	See ppbus(4) or http://www.freebsd.org/~nsouch/ppbus.html
4397dd38e55SWarner Losh	for proper configuration details.
4400edeb9e7SWarner Losh
4411fc1a0dcSWarner Losh19990210:
4421fc1a0dcSWarner Losh	The 'lpt' driver is now obsolete.  Replace it with the 'nlpt'
4430edeb9e7SWarner Losh	driver and 'ppbus' controller combination.
44457199806SWarner Losh
4457dd38e55SWarner Losh19990209:
4467dd38e55SWarner Losh	New devstat API requires recompilation of libdevstat, systat,
4477dd38e55SWarner Losh	iostat, vmstat and rpc.rstatd.  A new kernel is also required.
4487dd38e55SWarner Losh	make world + building a kernel should do all of this.  Any
4497dd38e55SWarner Losh	ports that use devstat need to be recompiled as well.
4507dd38e55SWarner Losh
4519a3105eeSWarner Losh19990125:
4529a3105eeSWarner Losh	Linux threads options has gone away (they are now standard in
4539a3105eeSWarner Losh	the FreeBSD kernel).  A recompile of all libkvm using programs
4549a3105eeSWarner Losh	is in order (or better yet a make world).
4559a3105eeSWarner Losh
4569a3105eeSWarner Losh19990122:
4579a3105eeSWarner Losh	On or about this date there was a small window when the boot
4589a3105eeSWarner Losh	blocks had some minor problems which seemed to force one to
4599a3105eeSWarner Losh	edit /etc/fstab.  This has been corrected, if you are seeing this
4609a3105eeSWarner Losh	problem, please rebuild and reinstall your boot blocks.
4619a3105eeSWarner Losh
4629a3105eeSWarner Losh19990121:
4638cd37f69SWarner Losh	Vinum has changed.  The "vinum read" command has changed.  For
4648cd37f69SWarner Losh	updates, please see
4653652181cSWarner Losh
4668cd37f69SWarner Loshhttp://www.freebsd.org/cgi/getmsg.cgi?fetch=800363+0+current/freebsd-current
4673652181cSWarner Losh
4688cd37f69SWarner Losh	for details.
4698cd37f69SWarner Losh
4708cd37f69SWarner Losh	Matt Dillon committed a boatload of VM changes, for
4718cd37f69SWarner Losh	information please see
4723652181cSWarner Losh
4738cd37f69SWarner Loshhttp://www.freebsd.org/cgi/getmsg.cgi?fetch=886676+0+current/freebsd-current
4748cd37f69SWarner Losh	or
4758cd37f69SWarner Loshhttp://www.freebsd.org/cgi/getmsg.cgi?fetch=827400+0+current/freebsd-current
4763652181cSWarner Losh
4778cd37f69SWarner Losh	for details.  These changes will likely not impact anybody,
4788cd37f69SWarner Losh	but large chagnes to the VM need at least a heads up.
4798cd37f69SWarner Losh
4808cd37f69SWarner Losh19990120:
4818cd37f69SWarner Losh	Stable branch created.  You might want to consider using this
4828cd37f69SWarner Losh	branch.  It is tagged with RELENG_3.
4838cd37f69SWarner Losh
484ad56ea87SWarner Losh19990119:
485ad56ea87SWarner Losh	More work on the syscons driver has been committed.  Since
486ad56ea87SWarner Losh	files moved around, you will need to reconfigure your kernel,
487ad56ea87SWarner Losh	and make clean; make depend before rebuilding the kernel.  No
488ad56ea87SWarner Losh	config file changes are needed.
489ad56ea87SWarner Losh
49057199806SWarner Losh19990111:
491a85c0f55SWarner Losh	New keyboard and video card drivers are introduced as the first
492a85c0f55SWarner Losh	stage of console driver reorganization.  You are required to
493a85c0f55SWarner Losh	update the kernel configuration file and rebuild the kernel.
494a85c0f55SWarner Losh	kbdcontrol, vidcontrol, and screen savers also need recompilation.
495a85c0f55SWarner Losh	The instruction can be found in
49657199806SWarner Losh
4977dafbc29SWarner Losh		http://www.freebsd.org/~yokota/sc_update.txt
49857199806SWarner Losh
499a85c0f55SWarner Losh	It has notes on splash screen too.
50057199806SWarner Losh
50157199806SWarner Losh19990106:
5029857e582SWarner Losh	Robert Nordier was kind enough to make this page to enable people to
503db23c94fSWarner Losh	install the new bootblocks:
50457199806SWarner Losh
5057dafbc29SWarner Losh		http://www.freebsd.org/~rnordier/boot.txt
50657199806SWarner Losh
5079ba54ae0SWarner Losh	When updating to ELF, make sure that you have updated your
5089ba54ae0SWarner Losh	/etc/rc files which have different ldconfig invocations for
5099ba54ae0SWarner Losh	elf and aout.  Otherwise things like X will stop working with
5109857e582SWarner Losh	messages about being unable to find library files.  The
5119857e582SWarner Losh	mergemaster utility in ports/sysutils/mergemaster helps to
5129857e582SWarner Losh	keep critical files like this in sync, and its use is
5139857e582SWarner Losh	recommended.
51457199806SWarner Losh
51557199806SWarner Losh19990104:
5162c558794SWarner Losh	Information about ELF day (see 19981230) can be found in
51757199806SWarner Losh
5187dafbc29SWarner Losh		http://www.freebsd.org/~peter/elfday.html
51957199806SWarner Losh
5202c558794SWarner Losh	about the upcoming change, its motivations and instructions
5212c558794SWarner Losh	for doing the upgrade.
52257199806SWarner Losh
52357199806SWarner Losh19981230:
524d5513f53SWarner Losh	You should install new bootblocks now.  The ELF kernel will
525e363c17bSWarner Losh	become default soon.  In addition, you'll need to upgrade
526e363c17bSWarner Losh	your userland programs to ELF before then as well.  Use
527e363c17bSWarner Losh	make aout-to-elf to upgrade your userland programs (old
528e363c17bSWarner Losh	a.out programs in, for example, /usr/local/bin will
529e363c17bSWarner Losh	continue to work, even after the upgrade).  See src/Makefile
530e363c17bSWarner Losh	for more details.
53157199806SWarner Losh
53257199806SWarner Losh19981224:
533355edc3eSWarner Losh	The old wcd driver has been deleted from the kernel.  The
534355edc3eSWarner Losh	driver that replaces it is named acd.  You'll need to change
535355edc3eSWarner Losh	this in your configuration files.
53657199806SWarner Losh
537355edc3eSWarner Losh	Failure to do this will result in "ATAPI CD-ROMs not
538355edc3eSWarner Losh	configured" at boot time.
53957199806SWarner Losh
540355edc3eSWarner Losh	The floppy tape driver (ft) has been removed from the kernel,
541355edc3eSWarner Losh	with no replacement driver.
54257199806SWarner Losh
54357199806SWarner Losh19981202:
544ab308df6SWarner Losh	New groups from 19981201 commented out of mtree, so they
545ab308df6SWarner Losh	aren't strictly needed, but still a good idea to have.
54657199806SWarner Losh
54757199806SWarner Losh19981201:
548ab308df6SWarner Losh	New user/group added: bind.  From src/etc/master.passwd and
549ab308df6SWarner Losh	src/etc/group:
550ab308df6SWarner Losh		% grep <newstuff> /usr/src/etc/group
551ab308df6SWarner Losh		bind:*:53:
552ab308df6SWarner Losh		% grep <newstuff> /usr/src/etc/master.passwd
553ab308df6SWarner Losh		tty:*:4:65533::0:0:Tty Sandbox:/:/sbin/nologin
554ab308df6SWarner Losh		kmem:*:5:65533::0:0:KMem Sandbox:/:/sbin/nologin
555ab308df6SWarner Losh		bind:*:53:53::0:0:Bind Sandbox:/:/sbin/nologin
55657199806SWarner Losh
55757199806SWarner Losh19981118:
55853dfde79SWarner Losh	PAM integrated into the tree.   Requires new /etc/pam.conf file
55953dfde79SWarner Losh	to silence warnings from authentication programs (login, etc).
56053dfde79SWarner Losh	See src/etc/pam.conf for a sample.
56157199806SWarner Losh
562dc0dbf5cSWarner LoshCOMMON ITEMS:
563dc0dbf5cSWarner Losh
564dc0dbf5cSWarner Losh	To build a kernel
565dc0dbf5cSWarner Losh	-----------------
566dc0dbf5cSWarner Losh	Update config, genassym and go:
567dc0dbf5cSWarner Losh		cd src/usr.bin/genassym
568dc0dbf5cSWarner Losh		make depend all install clean
569dc0dbf5cSWarner Losh		cd ../../usr.sbin/config
570dc0dbf5cSWarner Losh		make depend all install clean
571dc0dbf5cSWarner Losh		cd ../../../sys/i386/conf
572dc0dbf5cSWarner Losh		config YOUR_KERNEL_HERE
573dc0dbf5cSWarner Losh		cd ../../compile/YOUR_KERNEL_HERE
574dc0dbf5cSWarner Losh		make depend && make
575dc0dbf5cSWarner Losh
576dc0dbf5cSWarner LoshFORMAT:
577dc0dbf5cSWarner Losh
5781fc1a0dcSWarner LoshThis file contains a list, in reverse chronologocal order, of major
5791fc1a0dcSWarner Loshbreakages in tracking -current.  Not all things will be listed here,
58060dbe536SWarner Loshand it only starts on November 18, 1998.  If you have an earlier
5811fc1a0dcSWarner Loshversion of FreeBSD, you are on your own to get to November 18, 1998.
5821fc1a0dcSWarner Losh
583f8c77507SWarner LoshPlease filter your entries through Warner (imp@village.org) so that
584f8c77507SWarner Loshthe style, formatting, etc of this file can be maintained.
585f8c77507SWarner Losh
58697d92980SPeter Wemm$FreeBSD$
587