UPDATING revision 1.160
11.160Sjmcneill$NetBSD: UPDATING,v 1.160 2007/04/12 13:17:56 jmcneill Exp $
21.1Sabs
31.123SjmcThis file (UPDATING) is intended to be a brief reference to recent
41.123Sjmcchanges that might cause problems in the build process, and a guide for
51.123Sjmcwhat to do if something doesn't work.
61.1Sabs
71.123SjmcFor a more detailed description of the recommended way to build NetBSD
81.123Sjmcusing build.sh, see the BUILDING file.
91.123Sjmc
101.123SjmcNote that much of the advice in this UPDATING file was written before
111.123Sjmcbuild.sh existed.  Nevertheless, the advice here may be useful for
121.123Sjmcworking around specific problems with build.sh.
131.123Sjmc
141.123SjmcSee also: BUILDING, build.sh, Makefile.
151.1Sabs
161.1SabsRecent changes:
171.1Sabs^^^^^^^^^^^^^^^
181.138Slukem
191.160Sjmcneill20070412:
201.160Sjmcneill	The pckbc driver on sgimips IP32 has been removed. Use macekbc
211.160Sjmcneill	instead. See the GENERIC32_IP3x kernel configuration for an
221.160Sjmcneill	example.
231.160Sjmcneill
241.159Sgdt20070319:
251.159Sgdt        src/lib/libc/Makefile revision 1.129 broke libc and ld.elf_so
261.159Sgdt        on many platforms due to incorrect flags settings.  If you
271.159Sgdt        updated and built after about 20070315, do "nbmake-$arch
281.159Sgdt	cleandir" in src/lib/libc and src/libexec/ld.elf_so to force a
291.159Sgdt	rebuild of object files that might have been built
301.159Sgdt	incorrectly, and ensure that you have at least
311.159Sgdt	src/lib/libc/Makefile 1.130.
321.159Sgdt
331.158Sdbj20070210: 
341.158Sdbj        src/sys/sys/{sa.h,savar.h} were removed.
351.158Sdbj          find ${OBJDIR} \( -name .depend -o -name '*.d' \) -print \
361.158Sdbj              | xargs egrep -l '/sa.h|/savar.h' | xargs rm
371.158Sdbj        will allow dependencies on those files to get get rebuilt
381.158Sdbj
391.157Sapb20070209:
401.157Sapb        The threading model was changed when the newlock2 branch
411.157Sapb        was merged to NetBSD-current.  If you boot with a new
421.157Sapb        kernel (version 4.99.10), then you also need a new pthread
431.157Sapb        library (/usr/lib/libpthread.so.0.7).  If you boot with
441.157Sapb        an old kernel, then you need the old pthread library
451.157Sapb        (/usr/lib/libpthread.so.0.6).  Provided you keep the kernel and
461.157Sapb        the pthread library in sync, old threaded applications should
471.157Sapb        continue to work with an old or new kernel.  Note that named(8)
481.157Sapb	is the only threaded application in the base system.
491.157Sapb
501.154She20061214:
511.154She	Following the move of string_to_flags() and flags_to_string()
521.154She	from the bin/ls/ sources to libutil, users doing UPDATE builds
531.154She	will need to do a "make cleandir" in
541.154She		tools/mtree/, tools/makefs/, tools/binstall/, tools/pax/,
551.154She		bin/pax/, bin/ls/, usr.sbin/mtree/, usr.sbin/makefs/,
561.156She		usr.bin/xinstall/, libexec/ftpd/, rescue/, as well
571.156She		as the installation images in distrib/
581.154She	in order to excise stale references to the old stat_flags.h header
591.154She	file in the ls sources -- stat_flags.h has been removed.
601.154She
611.152Schristos20061108:
621.152Schristos	The configure script used in the src/tools/gcc compiler has been
631.152Schristos	changed to indicate that our libc has ssp support built-in and
641.152Schristos	does not depend on -lssp and -lssp-nonshared. You'll need to
651.152Schristos	make clean in src/tools/gcc first to rebuild the compiler.
661.152Schristos
671.151Srpaulo20061009:
681.151Srpaulo	The sysctl variables net.inet{,6}.tcp{,6}.newreno are no longer
691.151Srpaulo	available. Use net.inet{,6}.tcp{,6}.congctl.selected instead.
701.151Srpaulo
711.150Sbjh2120060814:
721.150Sbjh21	The vt, vidcconsole, kbd, and rpckbd drivers on acorn32 have been
731.150Sbjh21	withdrawn.  Use vidcvideo and pckbd instead.  See the GENERIC
741.150Sbjh21	kernel configuration for an example.  X servers from the last
751.150Sbjh21	few years should cope.
761.150Sbjh21
771.149Schristos20060703:
781.149Schristos	MPACPI is no more. We always configure PCI interrupts using ACPI
791.149Schristos	if we have an ACPI kernel. The option MPACPI_SCANPCI has been renamed
801.149Schristos	to ACPI_SCANPCI. Thanks to work from fvdl.
811.149Schristos
821.148Sdogcow20060627:
831.148Sdogcow	socket(2) has changed, and its system call has been versioned.
841.148Sdogcow	For userlands with the old version of socket(2), make sure that
851.148Sdogcow	your kernel has 'options COMPAT_30' set, or else 'bad system call'
861.148Sdogcow	errors will result.
871.148Sdogcow
881.146Spavel20060526:
891.147Schristos	The kernel linker scripts for i386 and xen 
901.147Schristos	(sys/arch/i386/conf/kern.ldscript*) were changed to set the
911.146Spavel	load address correctly, for the benefit of MULTIBOOT boot loaders
921.146Spavel	(like Grub). If you use a linker (ld) older than from 2006/04/17, it
931.147Schristos	will be unable to link the kernel because of a bug and ld will fail
941.147Schristos	with an error like:
951.147Schristos	    ../../../../arch/i386/conf/kern.ldscript:45 \
961.147Schristos		non constant expression for load base
971.147Schristos	You need to update at least src/gnu/dist/binutils/ld and recompile
981.147Schristos	and install the linker. If using the build.sh script, the easiest
991.147Schristos	way is with a "build.sh tools" command, with any other options
1001.147Schristos	that you use normally. When using build.sh, the linker binary is
1011.147Schristos	installed as ${TOOLDIR}/bin/i386--netbsdelf-ld.
1021.147Schristos
1031.145Smartin20060131:
1041.145Smartin	the protocol between the sparc64 bootloader (ofwboot) and
1051.145Smartin	the kernel was changed. Before installing a new kernel,
1061.145Smartin	you need to update ofwboot. After a full build, just copy
1071.145Smartin	/usr/mdec/ofwboot to /, or do a rebuild of
1081.145Smartin	src/sys/arch/sparc/stand/ofwboot and install the result to /.
1091.145Smartin
1101.144Syamt20050917:
1111.144Syamt	arch/*/conf/std.* was changed to include conf/std, which
1121.144Syamt	contains MI options previously enabled by default.
1131.144Syamt	If you have kernel config files which doesn't include
1141.144Syamt	arch/*/conf/std.*, you need to edit them to include conf/std
1151.144Syamt	to get the previous configuration.
1161.144Syamt
1171.143Slukem20050830:
1181.143Slukem	named.conf was moved from /etc/namedb to /etc.
1191.143Slukem	postinstall(8) migrates this during interactive use.
1201.143Slukem	Users of MKUPDATE=yes will need to manually rectify
1211.143Slukem	this in their DESTDIR.
1221.143Slukem
1231.142Sdrochner20050825:
1241.142Sdrochner	Some data structures in sys/device.h, related to interface
1251.142Sdrochner	attributes and locator names, were changed. config(1) was
1261.142Sdrochner	modified to emit the new data structures.
1271.142Sdrochner	Thus usr.bin/config must be updated (and run on the kernel
1281.142Sdrochner	configuration file) before a new kernel can be built.
1291.142Sdrochner
1301.139Schristos20050531:
1311.141Saugustss	genassym.sh(8) was moved to genassym(1). You need to either build
1321.141Saugustss	tools first or install the version of genassym from /usr/bin before
1331.139Schristos	you can build a kernel again.
1341.139Schristos
1351.140Syamt20050520:
1361.140Syamt	Because a kernfs bug which xentools relies on was fixed,
1371.140Syamt	xentools up to xentools20-2.0.3nb4 won't work with new kernel.
1381.140Syamt
1391.138Slukem20050417:
1401.138Slukem	postinstall(8) was moved from /etc to /usr/sbin and made part
1411.138Slukem	of the "base" set, to make it easier to invoke after an
1421.138Slukem	upgrade.
1431.138Slukem
1441.136Scube20050325:
1451.136Scube	pcppi(4) was separated in two devices, adding attimer(4).  Be sure
1461.136Scube	to add a config line for an attimer(4) device in your kernel
1471.136Scube	configuration, or you won't be able to set the pitch of the beep
1481.137Scube	with wsconsctl.  Depending on the default value for the pitch, you
1491.137Scube	might even not hear any more beep.  Also, it is advised to attach both
1501.137Scube	devices the same way (i.e., both on isa or both on acpi) or the
1511.137Scube	pcppi(4) device may fail to find the attimer(4) one.
1521.136Scube
1531.135Sjmc20050211:
1541.135Sjmc	Fixes to tools/Makefile.gnuhost may cause UPDATE=1 builds in
1551.135Sjmc	some of the cross tools to fail if they use configure. Some configure's
1561.135Sjmc	cache the environment passed in and notice the new environment is
1571.135Sjmc	different and abort. Doing a clean in tools/ should be enough to
1581.135Sjmc	make a build continue.
1591.135Sjmc
1601.134Schristos20050109:
1611.134Schristos	Since su is using pam by default now, make sure that you have
1621.134Schristos	/etc/pam.d populated (postinstall will do that automatically
1631.134Schristos	for you). Otherwise su will fail open (i.e. will not require
1641.134Schristos	a password).
1651.134Schristos
1661.133Schristos20041229:
1671.133Schristos	Make had a path resolution bug that manifested itself as not
1681.133Schristos	being able to install openpam.3. This bug has been fixed, but
1691.133Schristos	you might need to rebuild make manually first to get through
1701.133Schristos	the build.
1711.133Schristos
1721.130Schristos20041201:
1731.130Schristos	Userland programs have been changed to use /dev/bpf instead of
1741.130Schristos	/dev/bpfX. You need to create that device by installing a new
1751.131Swiz	MAKEDEV and running it, or mv /dev/bpf0 /dev/bpf && rm /dev/bpf[0-9]*
1761.99Smrg
1771.129Sjmc20041006:
1781.129Sjmc
1791.129Sjmc	A bug was introduced into /bin/sh (var.c rev 1.35) which causes
1801.129Sjmc	variables to not export correctly to subshells in all cases. This
1811.129Sjmc	will cause builds to break if that version of /bin/sh is installed
1821.129Sjmc	on the system. The proper version of /bin/sh can be verified with:
1831.129Sjmc
1841.129Sjmc        ident /bin/sh | grep var
1851.129Sjmc
1861.129Sjmc	Any /bin/sh w. version 1.35 will not work and needs to be updated
1871.129Sjmc	before attempting a build.
1881.129Sjmc	
1891.127Schristos20041001:
1901.127Schristos	The ipfilter kernel sources moved from sys/netinet to
1911.127Schristos	dist/sys/ipf/netinet. Due to the move some Makefile
1921.127Schristos	dependencies are now dangling requiring a make cleandir
1931.128She	before they work again (kdump, ktruss, rescue, ipf, and
1941.128She	ftp-proxy are the victims).
1951.127Schristos
1961.125Satatat20040715:
1971.125Satatat	The rc.d/sendmail script now uses a heuristic to determine
1981.125Satatat	if sendmail should be started at boot time.  It checks the
1991.125Satatat	contents of /etc/mailer.conf, /etc/mail/submit.cf, and the
2001.125Satatat	owner and mode of the sendmail binary to see if any changes
2011.125Satatat	to the mail infrastructure have been made.  If no changes
2021.125Satatat	are detected, it will start an SMTP listener.
2031.125Satatat
2041.125Satatat	Setting sendmail=NO in /etc/rc.conf will override this.
2051.125Satatat
2061.125Satatat	If you are only using sendmail by default and only for
2071.125Satatat	local delivery, it is important that you also update your
2081.125Satatat	sendmail.cf so that the SMTP listener only listens on the
2091.125Satatat	loopback interface.
2101.125Satatat
2111.125Satatat20040715:
2121.125Satatat	The method by which athhal-elf.o gets pulled into i386
2131.125Satatat	kernel builds has been changed again.  The latest version
2141.125Satatat	of bsd.files.mk is no longer required.
2151.125Satatat
2161.124Sjmc20040621:
2171.124Sjmc	Due to the recent rototill of tools/compat it's crucial one starts
2181.124Sjmc	from a clean objdir under tools/*.
2191.124Sjmc
2201.124Sjmc	This is mostly due to generated files (yacc and lex sources) needing
2211.125Satatat	to be generated with new rules from bsd.hostprog.mk.
2221.124Sjmc
2231.124Sjmc	The safest course is to rm -rf all objects under tools before building.
2241.124Sjmc
2251.121Slukem20040516:
2261.121Slukem	The end-user modifiable X11 configuration has been moved
2271.121Slukem	from /usr/X11R6/lib/X11/<dir> to /etc/X11/<dir>.
2281.121Slukem	Ensure that src and xsrc is up to date, and run
2291.121Slukem	"make cleandir" in src/x11 before your next build.
2301.121Slukem
2311.126Slukem	postinstall currently doesn't migrate the files from
2321.126Slukem	/usr/X11R6/lib/X11/* to /etc/X11/* although it does
2331.126Slukem	detect that this needs to occur, so you'll have to
2341.126Slukem	manually move these files yourself.
2351.126Slukem
2361.119Satatat20040426:
2371.119Satatat	Support for the original dynamic sysctl node structure has
2381.119Satatat	been removed in favor of the newer layout.  This affects
2391.119Satatat	consumers of the create and delete interface, as well as
2401.119Satatat	the dynamic discovery mechanism.  This is believed only to
2411.119Satatat	be the sysctl(8) binary itself, at this point in time, so
2421.119Satatat	the only effect of this should be that a sysctl binary
2431.119Satatat	built from sources dated between 2003/12/04 and 2004/03/24
2441.119Satatat	will not work on a kernel built from sources dated after
2451.119Satatat	2004/04/25.  If you need a new sysctl binary but build.sh
2461.119Satatat	does not work, make sure that your revision of
2471.120Satatat	src/sys/sys/sysctl.h is 1.112 (or later), and then the
2481.120Satatat	do the following:
2491.119Satatat
2501.120Satatat	cd /usr/src (or wherever your source tree is)
2511.120Satatat	make USETOOLS=no includes
2521.120Satatat	cd lib/libc
2531.120Satatat	make USETOOLS=no dependall install
2541.120Satatat	cd ../../sbin/sysctl
2551.119Satatat	make USETOOLS=no dependall install
2561.119Satatat
2571.122Sitojun	If you are using older sysctl binary, GNU autoconf would fail to
2581.122Sitojun	identify your machine architecture, and tries to build binary for
2591.122Sitojun	"unknown-unknown-netbsd20F" or something like that.  if that happens,
2601.122Sitojun	make sure to follow the above steps.
2611.122Sitojun
2621.118Sdbj20040425:
2631.118Sdbj	The ffs superblock issues listed below under 20040109 and 20030402
2641.118Sdbj	are now automatically addressed by the /etc/rc.d/fixsb script or by
2651.118Sdbj	sysinst when it checks a a filesystem. The manual fsck_ffs -b16 -c4
2661.118Sdbj	invocation mentioned below will continue to work and is now
2671.118Sdbj	automated by those scripts.  Note that under certain circumstances,
2681.118Sdbj	affected filesystems upgraded to a -current kernel first before
2691.118Sdbj	upgrading their userland with the fixsb and fsck_ffs fixes may
2701.118Sdbj	encounter a 'freeing free inode' panic when writing to the affected
2711.118Sdbj	filesystem, so it is a good idea to repair the filesystem as soon as
2721.118Sdbj	possible.  For more details on the fixsb script, see pr install/25138.
2731.118Sdbj
2741.115Schristos20040418:
2751.121Slukem	statfs(2) and friends have been replaced with statvfs(2). Before
2761.115Schristos	installing a newly build userland make sure that you are running
2771.115Schristos	a newly built kernel with COMPAT_20 set. In addition your libc
2781.115Schristos	build might not work (undefined SYS_statfs symbol) because make
2791.115Schristos	clean does not know how to remove files it does not know about
2801.116Schristos	anymore. Manually remove all generated .S sources and objects
2811.116Schristos	from the libc build directory.
2821.115Schristos
2831.114Sjmc20040326:
2841.114Sjmc	The method by which athhal-elf.o gets pulled into i386 kernel builds
2851.117Sjmc	has been changed. The file is now stored as a uuencoded file in CVS
2861.114Sjmc	and the generated Makefile will use the new .uue rules from bsd.file.mk
2871.114Sjmc	to build it.
2881.114Sjmc
2891.114Sjmc	This means you must have the latest bsd.files.mk installed when
2901.114Sjmc	building a kernel without USETOOLS=yes.
2911.114Sjmc
2921.113Sdan20040318:
2931.113Sdan	A bug in the cgd(4) blowfish code was corrected, without
2941.113Sdan	provision of backwards compatibility, after several public
2951.113Sdan	notices over several months. Users of cgd with blowfish cipher
2961.113Sdan	ONLY must dump their data before updating their kernels, and
2971.113Sdan	recreate cgd's and restore data using the new kernel. See
2981.113Sdan	(recent message to current-users, URL when mail-index has updated)
2991.113Sdan
3001.108Sbjh2120040313:
3011.108Sbjh21	On acorn32, the opms and qms drivers have been withdrawn, and
3021.108Sbjh21	the old wsqms driver is now called qms.  Kernel config files
3031.108Sbjh21	will need updating.  See the ones in sys/arch/acorn32/conf
3041.108Sbjh21	for examples.
3051.108Sbjh21
3061.106Sbjh2120040125:
3071.106Sbjh21	On acorn32, the beep and sysbeep devices are no longer
3081.106Sbjh21	needed, and will need to be deleted from kernel configuration
3091.106Sbjh21	files.
3101.105Sbjh21
3111.102Sdbj20040109:
3121.102Sdbj	Compatibility for old ffs superblock layouts has been
3131.102Sdbj	added, and the restrictive fsck checks have been reenabled
3141.102Sdbj	when using those layouts.  If you have been using -current
3151.102Sdbj	since 20030402, you may find that fsck again signals fatal
3161.110Sdbj	superblock mismatches.  To repair, make sure you have
3171.111Ssimonb	an updated fsck_ffs and then you can use fsck_ffs -b 16 -c 4
3181.109Sdbj	to complete the filesystem upgrade.  A message has
3191.111Ssimonb	been added to the kernel which should detect this problem.
3201.111Ssimonb	See the following discussion for more information:
3211.112Skeihan	http://mail-index.NetBSD.org/current-users/2004/01/11/0022.html
3221.102Sdbj
3231.99Smrg20031203:
3241.100Skeihan	New binutils builds may fail due to old dependencies.
3251.99Smrg	It's necessary to "make cleandir" to ensure that
3261.99Smrg	the dependencies will be rebuilt correctly.
3271.98Swiz
3281.98Swiz20031111:
3291.98Swiz	A newer mkdep is needed.  Error noting that is
3301.98Swiz		cc: Ambiguous abbreviation --
3311.97Slukem
3321.97Slukem20031008:
3331.97Slukem	/usr/include/sys/disklabel_mbr.h was removed.
3341.97Slukem	It's necessary to "make cleandir" to ensure that
3351.97Slukem	the dependencies will be rebuilt correctly.
3361.96Schristos
3371.109Sdbj20031007:
3381.153Sreed	A sign extension bug was fixed which set all the high bits
3391.111Ssimonb	of our newly expanded ffs fs_flags.  This should only
3401.111Ssimonb	affect users who installed or upgraded in September of 2003.
3411.109Sdbj	A small utility program was posted to tech-kern which
3421.111Ssimonb	should fix this problem, and a warning message was added
3431.111Ssimonb	to the kernel which should discover and warn about it.  See
3441.111Ssimonb	http://mail-index.NetBSD.org/tech-kern/2003/10/07/0005.html
3451.109Sdbj
3461.96Schristos20030906:
3471.96Schristos	With the addition of siginfo support the old signal trampoline
3481.96Schristos	code has been deprecated to COMPAT_16. Make sure that your running
3491.96Schristos	kernel has COMPAT_16 enabled before building userland.
3501.94Schristos
3511.94Schristos20030801:
3521.95Swiz	With the new openssl, there is some header and library shuffling.
3531.94Schristos	rm -f /usr/include/des.h /usr/include/kerberosIV/* /lib/libdes* \
3541.95Swiz	/usr/lib/libdes* before building.
3551.92Swiz
3561.92Swiz20030703:
3571.92Swiz	Texinfo was updated to 4.6.  To avoid failures when trying to
3581.92Swiz	build the included texinfo files, do:
3591.92Swiz
3601.92Swiz	cd src/gnu/usr.bin/texinfo
3611.92Swiz	make MKINFO=no dependall install
3621.90Swiz
3631.90Swiz20030630:
3641.101Sjunyoung	Groff was updated to 1.19; it's probably necessary to do
3651.91Swiz		cd share/mk && make install
3661.90Swiz		cd src/gnu/usr.bin/groff
3671.90Swiz		make MKMAN=no dependall install
3681.90Swiz	(untested).
3691.89Schristos
3701.89Schristos20030516:
3711.89Schristos	Due to bugs in the export handling code, invalid export lines
3721.89Schristos	were accepted before and caused the kernel to panic when
3731.89Schristos	mountd got restarted because it freed memory that had already
3741.89Schristos	been freed. This has been fixed and the kernel checks
3751.89Schristos	export addresses very strictly. If you upgrade your kernel,
3761.89Schristos	make sure you also upgrade mountd, because if your export
3771.89Schristos	file contains lines with an old inet4 address syntax (i.e.
3781.89Schristos	a.b.c or a.b or a), they will get rejected by the new kernel.
3791.87Sbjh21
3801.87Sbjh2120030402:
3811.87Sbjh21	The superblock layout for FFS was changed.  If you have 1.6
3821.87Sbjh21	fsck binaries, they will signal a fatal superblock mismatch
3831.87Sbjh21	with the first alternate, because they compare too many
3841.87Sbjh21	fields (even ones that aren't useful).  If possible, upgrade
3851.87Sbjh21	your fsck_ffs binary before using a new kernel.
3861.87Sbjh21	None of this signals actual filesystem damage.
3871.85Satatat
3881.85Satatat20030324:
3891.85Satatat	sendmail version 8.12.8 was imported.  Since sendmail is
3901.85Satatat	now setgid to the smmsp group, and runs in "collection"
3911.85Satatat	mode for most common activities, there is a new config
3921.85Satatat	file called submit.cf that needs to live in /etc/mail.
3931.85Satatat	The generic submit.cf sample in /usr/share/sendmail/cf
3941.85Satatat	is named netbsd-msp.cf.  Upgrading your regular sendmail
3951.85Satatat	configuration file is also strongly advised.
3961.85Satatat
3971.85Satatat	See the section named "MESSAGE SUBMISSION PROGRAM" in
3981.85Satatat	the updated /usr/share/sendmail/README file for more
3991.85Satatat	information.
4001.82Swiz
4011.82Swiz20030117:
4021.82Swiz	Texinfo was updated to 4.3.  To avoid failures when trying to
4031.82Swiz	build the included texinfo files, do:
4041.82Swiz
4051.82Swiz	cd src/gnu/usr.bin/texinfo
4061.82Swiz	make MKINFO=no dependall install
4071.81Slukem
4081.81Slukem20021223:
4091.81Slukem	The METALOG format changed slightly, to remove the leading
4101.81Slukem	"${DESTDIR}" from path names.
4111.81Slukem	This only affects people building with UNPRIVED.
4121.81Slukem	For complete safety, remove the DESTDIR entirely and
4131.81Slukem	update tools/mtree, before running make build.
4141.88Sitojun
4151.88Sitojun20021219:
4161.88Sitojun	CVS repository layout was changed.  See the following for details
4171.88Sitojun	if you are using (anonymous) cvs to update your tree.
4181.88Sitojun
4191.93Ssalo	http://mail-index.NetBSD.org/netbsd-announce/2002/12/19/0000.html
4201.80Slukem
4211.80Slukem20021219:
4221.80Slukem	install(1) had a '-N dbdir' option added, to specify an
4231.80Slukem	alternate location to look up users & groups (instead
4241.80Slukem	of the host system passwd(5) and group(5) databases).
4251.80Slukem
4261.80Slukem	The build system was modified to take advantage of
4271.80Slukem	this option (using ${NETBSDSRCDIR}/etc), so if you
4281.83Skei	use USETOOLS==no, you may have to rebuild and
4291.80Slukem	reinstall usr.bin/xinstall first.
4301.78Slukem
4311.78Slukem20021130:
4321.78Slukem	fparseln(3) moved from libutil to libc.
4331.78Slukem	If building to DESTDIR=/, reinstall the includes
4341.78Slukem	and rebuild libc:
4351.78Slukem		make includes
4361.78Slukem		make do-lib-libc
4371.78Slukem	If using build.sh, "cd tools/compat && make clean"
4381.78Slukem	before rebuilding the tools.
4391.77Slukem
4401.77Slukem20021126:
4411.77Slukem	The mk.conf(5) variable SYS_INCLUDE has been deprecated,
4421.77Slukem	including the optional "SYS_INCLUDE=symlinks" support.
4431.77Slukem	All header files, including <sys/*.h> are copied into
4441.77Slukem	/usr/include.
4451.76Sthorpej
4461.76Sthorpej20021121:
4471.76Sthorpej	The C run-time support files crtbegin.o and crtend.o
4481.76Sthorpej	(and their companions crtbeginS.o and crtendS.o) were
4491.76Sthorpej	split up, with new crti.o and crtn.o files resulting.
4501.76Sthorpej	This means that libtool needs to be rebuilt once the
4511.76Sthorpej	new libraries are installed.  The process of rebuilding
4521.76Sthorpej	libtool will cause it to automatically notice the new
4531.76Sthorpej	required files, but it *must* be rebuilt in order to
4541.76Sthorpej	do this.
4551.76Sthorpej
4561.76Sthorpej	An out-of-date libtool will result in shared libraries
4571.76Sthorpej	which lack _init() and _fini() routines, which means that
4581.153Sreed	their global constructors/destructors will not be invoked.
4591.75Sthorpej
4601.75Sthorpej20021121:
4611.75Sthorpej	A bug related to how ARM ELF objects were tagged has been
4621.75Sthorpej	corrected.
4631.75Sthorpej
4641.75Sthorpej	NetBSD ARM ELF uses the soft-VFP floating point model by
4651.75Sthorpej	default.  However, the assembler lacked support for marking
4661.75Sthorpej	objects as using the VFP floating point format, and the
4671.79Swiz	compiler was not properly passing the flag indicating "soft-VFP"
4681.75Sthorpej	to the assembler.
4691.75Sthorpej
4701.75Sthorpej	Unfortunately, this means that the linker will now consider
4711.75Sthorpej	old (i.e. not marked "softvfp") NetBSD ARM ELF objects to be
4721.75Sthorpej	incompatible with new (properly marked) objects.
4731.75Sthorpej
4741.75Sthorpej	The problem will only manifest itself if you attempt to compile
4751.75Sthorpej	a new program using the fixed toolchain, and link that program
4761.75Sthorpej	against old libraries which do not have the proper "softvfp"
4771.75Sthorpej	markings.  ALL OF YOUR EXISTING BINARIES AND SHARED LIBRARIES
4781.75Sthorpej	WILL CONTINUE TO WORK PROPERLY.
4791.75Sthorpej
4801.75Sthorpej	The only work-around for the problem is to recompile all of
4811.75Sthorpej	the libraries on the system.  The easiest way to do this for
4821.79Swiz	system libraries is to install a binary snapshot; they are
4831.93Ssalo	generally available on releng.NetBSD.org.  Any packages you
4841.75Sthorpej	have installed which supply libraries will have to be recompiled
4851.75Sthorpej	if you wish to link new programs against those libraries.
4861.75Sthorpej
4871.75Sthorpej	If you have questions about this matter, please contact
4881.93Ssalo	port-arm@NetBSD.org.
4891.73Sprovos
4901.73Sprovos20021011:
4911.73Sprovos	Systrace has been improved to support privilege elevation.
4921.73Sprovos	Updating the kernel requires the userland part of systrace
4931.79Swiz	to be rebuilt.
4941.72Sthorpej
4951.72Sthorpej20021010:
4961.72Sthorpej	The config(8) grammar was changed to allow options to register
4971.72Sthorpej	dependencies on attributes, as well as other options.  Users
4981.72Sthorpej	must update and reinstall usr.sbin/config before building a new
4991.72Sthorpej	kernel.
5001.70Sthorpej
5011.70Sthorpej20021009:
5021.70Sthorpej	A new attribute dependency syntax was introduced to config(8),
5031.70Sthorpej	which is now used by the SCSI configuration description.  Users
5041.71Swiz	must update and reinstall usr.sbin/config before building a new
5051.70Sthorpej	kernel.
5061.69Sthorpej
5071.69Sthorpej20021003:
5081.69Sthorpej	Several changes have been made to the autoconfiguration
5091.69Sthorpej	framework.  Users must update and reinstall usr.sbin/config
5101.69Sthorpej	before building a new kernel.
5111.74Sjschauma
5121.74Sjschauma20021001:
5131.74Sjschauma	The i386mp branch has been merged.  To compile a kernel, users
5141.74Sjschauma	will need to add the option 'cpu* at mainbus?' to their configuration
5151.74Sjschauma	file.  Multiprocessor kernels will need
5161.74Sjschauma	ioapic*		at mainbus? apid ?
5171.74Sjschauma	options		MULTIPROCESSOR
5181.74Sjschauma	options		COM_MPLOCK
5191.68Slukem
5201.68Slukem20020922:
5211.68Slukem	MKDYNAMICROOT=yes enabled by default, which means that
5221.68Slukem	certain shared libraries are installed into /lib, the shared
5231.68Slukem	linker is installed into /libexec, and all programs in /bin
5241.68Slukem	and /sbin are dynamically linked.
5251.68Slukem	If you do not use "make build", you should ensure that
5261.68Slukem	you have the libraries and shared linker in the new locations,
5271.68Slukem	with:
5281.68Slukem		make do-lib-csu do-lib-libc do-lib do-gnu-lib do-ld.elf_so
5291.67Slukem
5301.67Slukem20020917:
5311.67Slukem	USE_NEW_TOOLCHAIN has been replaced with:
5321.67Slukem	    -	TOOLCHAIN_MISSING -- set to "yes" on platforms for which
5331.67Slukem		there is no working in-tree toolchain (hppa, ns32k, sh5,
5341.67Slukem		x86_64).
5351.67Slukem	    -	EXTERNAL_TOOLCHAIN -- if defined by the user, points to the
5361.79Swiz		root of an external toolchain (e.g. /usr/local/gnu).  This
5371.67Slukem		enables the cross-build framework even for TOOLCHAIN_MISSING
5381.67Slukem		platforms.
5391.66Sgehenna
5401.66Sgehenna20020906:
5411.66Sgehenna	gehenna-devsw has been merged into the trunk. Need to update and
5421.79Swiz	reinstall usr.sbin/config before building the kernel.
5431.65Slukem
5441.65Slukem20020822:
5451.65Slukem	Crunched rescue tools (contents of /bin and /sbin, plus others)
5461.65Slukem	are now provided in /rescue.
5471.65Slukem
5481.65Slukem	To ensure that these are built statically linked (no matter
5491.65Slukem	what the setting of LDSTATIC is), use a crunchgen(1) built
5501.65Slukem	from sources newer than 20020820 (see the next entry).
5511.65Slukem
5521.65Slukem20020820:
5531.65Slukem	crunchgen(1) changed to ensure that the generated program
5541.65Slukem	is statically linked.
5551.65Slukem
5561.65Slukem	Solution: update and reinstall usr.bin/crunch
5571.84Sgrant
5581.84Sgrant20020605:
5591.84Sgrant	smmsp user/group has been added for sendmail.
5601.84Sgrant
5611.84Sgrant	Add the following into /etc/group:
5621.84Sgrant
5631.84Sgrant	smmsp:*:17:
5641.84Sgrant
5651.84Sgrant	and the following to /etc/master.passwd (via vipw):
5661.84Sgrant
5671.84Sgrant	smmsp:*:17:17::0:0:Sendmail Message Submission Program:/nonexistent:/sbin/nologin
5681.61Sitojun
5691.61Sitojun20020515:
5701.61Sitojun	sshd user/group has been added.  Need to hand add this in, or sshd
5711.153Sreed	will not let you log in (with default, or UsePrivilegeSeparation=yes)
5721.61Sitojun
5731.61Sitojun	Add the following into /etc/group:
5741.61Sitojun
5751.61Sitojun	sshd:*:16:
5761.61Sitojun
5771.61Sitojun	and the following to /etc/master.passwd (via vipw):
5781.61Sitojun
5791.63Senami	sshd:*:16:16::0:0:& pseudo-user:/var/chroot/sshd:/sbin/nologin
5801.61Sitojun	
5811.79Swiz	Also /var/chroot/sshd directory needs to be present (digged as part of
5821.79Swiz	the build process).
5831.60Ssommerfe
5841.60Ssommerfe20020426:
5851.60Ssommerfe	NBUILDJOBS obsoleted in favor of just using -j.
5861.59Slukem
5871.59Slukem20020426:
5881.59Slukem	etc/postinstall added, which performs various checks for 
5891.59Slukem	configuration file updates and changes, and can fix most of
5901.59Slukem	the problems identified.
5911.59Slukem	This should make it much easier to upgrade a system's
5921.59Slukem	configuration from earlier systems (as far back as NetBSD 1.5).
5931.56Slukem
5941.56Slukem20020320:
5951.79Swiz	<bsd.lib.mk> needs a new install(1) for its "-a cmd" support.
5961.79Swiz	Build and install at usr.bin/xinstall before the build.
5971.56Slukem
5981.55Sitojun20020319:
5991.79Swiz	Raw IPv6 socket now makes strict checking for sa_family and sa_len
6001.79Swiz	on send(2) operation.  Be sure to have sbin/rtsol and usr.sbin/rtsold
6011.55Sitojun	newer than November 2001 when you upgrade the kernel.
6021.55Sitojun
6031.54Sitojun20020311:
6041.54Sitojun	ssh configuration files were moved from /etc to /etc/ssh.  Beware
6051.54Sitojun	if you restart your machine from remote.  Note that sshd.conf needs
6061.54Sitojun	to be changed (due to the use of "/etc" inside).
6071.54Sitojun
6081.54Sitojun20020223:
6091.53Smatt	Users of the VAX port will need to rebuild and install gas
6101.53Smatt	so it deal with the now present register prefix used in all
6111.53Smatt	the VAX assembly files.
6121.53Smatt
6131.50Sitojun20020118:
6141.50Sitojun	ntpd user/group has been added.  Need to hand add this in or builds
6151.50Sitojun	will break as mtree aborts early.
6161.50Sitojun
6171.50Sitojun	Add the following into /etc/group:
6181.50Sitojun
6191.50Sitojun	ntpd:*:15:
6201.50Sitojun
6211.50Sitojun	and the following to /etc/master.passwd (via vipw):
6221.50Sitojun
6231.50Sitojun	ntpd:*:15:15::0:0:Ntpd pseudo-user:/var/chroot/ntpd:/sbin/nologin
6241.50Sitojun
6251.49Sjmc20011207:
6261.49Sjmc	If you're attempting to build a snapshot on sparc64 and are getting
6271.49Sjmc	reloc errors from the toolchain groff binary this means your native
6281.49Sjmc	toolchain has some broken C++ bits.
6291.49Sjmc
6301.49Sjmc	To fix:
6311.49Sjmc
6321.49Sjmc	Build a new toolchain (i.e. build.sh -t)
6331.49Sjmc	Use the new toolchain to build and install natively (i.e. /usr/lib)
6341.49Sjmc
6351.49Sjmc	gnu/lib/libgcc
6361.51Spooka	gnu/lib/libstdc++
6371.49Sjmc
6381.49Sjmc	After this a snapshot will be able to be built.
6391.49Sjmc
6401.47Sjmc20011201:
6411.47Sjmc	In order for a sparc64 build to work you must have a working awk. If
6421.47Sjmc	you've built and installed a system with the new toolchain up to this
6431.52Swiz	point you do not have a working awk as its ability to do floating
6441.47Sjmc	point is broken. 
6451.47Sjmc
6461.47Sjmc	To build:
6471.47Sjmc
6481.47Sjmc	remake and install gnu/lib/libgcc
6491.47Sjmc	remake and install gnu/usr.bin/gawk into /usr/bin (make sure it links
6501.48Sjmc	against the new libgcc.a)
6511.47Sjmc
6521.46Sthorpej20011128:
6531.46Sthorpej	Kernel config information was changed to use defflag in
6541.46Sthorpej	the various "files" files.  Bug fixes to config(8) are
6551.46Sthorpej	required in order for this to work properly.  Make sure
6561.46Sthorpej	to build and install in usr.sbin/config before attempting
6571.46Sthorpej	to build a new kernel.
6581.46Sthorpej
6591.45Syamt20011030:
6601.45Syamt	libc/locale/wcstod.c now needs new lint(1). Update lint(1)
6611.45Syamt	before building libc.
6621.43Smason
6631.44Stv20011029:
6641.44Stv	The new document BUILDING.mdoc (view with nroff | more, or
6651.44Stv	see pre-generated .txt and .html versions) describes the build
6661.44Stv	procedure in great detail.  BUILDING, and the USE_NEW_TOOLCHAIN
6671.44Stv	build process, are intended in the long run to replace this
6681.44Stv	manual update log.
6691.44Stv
6701.44Stv	Users building a USE_NEW_TOOLCHAIN system should read the
6711.44Stv	BUILDING document for caveats.  Generally, BUILDING supersedes
6721.44Stv	UPDATING for these systems, as tool updating is taken care of
6731.44Stv	by the new build system.
6741.42Sperry
6751.42Sperry20011028:
6761.42Sperry	src/etc/Makefile now needs install to be able to handle
6771.42Sperry	symlinks that point to nowhere. A bug in install that
6781.42Sperry	prevented this was corrected.
6791.42Sperry
6801.42Sperry	Solution: update and reinstall usr.bin/xinstall
6811.42Sperry	Better Solution: Use the new toolchain and it will just work
6821.42Sperry	for you.
6831.40Slukem
6841.40Slukem20011006:
6851.40Slukem	/etc/mtree/NetBSD.dist has been updated to take advantage of
6861.40Slukem	absolute path support added to mtree(8). Older mtree(8)s don't
6871.40Slukem	understand the format.
6881.40Slukem
6891.40Slukem	Solution: update and reinstall usr.sbin/mtree
6901.39Sjmc
6911.39Sjmc20011004:
6921.39Sjmc	Crunchgen has been updated to work via reach-over makefiles. Updating
6931.39Sjmc	is suggested before running a snapshot build
6941.36Stv
6951.35Sthorpej20010915:
6961.35Sthorpej	The new "ubcperf" code committed by Chuck Silvers removed
6971.35Sthorpej	a header file, uvm/uvm_vnode.h.  There may be stale .depend
6981.35Sthorpej	files that still reference this file.
6991.35Sthorpej
7001.35Sthorpej	Solution: "make cleandir && make dependall" in affected
7011.35Sthorpej	directories.
7021.31Senami
7031.31Senami20010803:
7041.31Senami	grep.info is now built from grep.texi using makeinfo.  Since it
7051.31Senami	requires makeinfo v4.0, you need to install new texinfo before
7061.31Senami	building gnu/usr.bin/grep.  To install new texinfo, please follow
7071.31Senami	the instruction described in 20010726 entry.
7081.30Senami
7091.64Ssommerfe20010803: 
7101.41Swiz	(i386 only): i386 kernel now uses new instructions like
7111.111Ssimonb	`fxsave' which old gas doesn't understand.  To build the
7121.64Ssommerfe	kernel successfully, you need to build and install a new toolchain, 
7131.64Ssommerfe	(i.e., build.sh -t) or 	(temporarily) comment out "options I686_CPU" 
7141.64Ssommerfe	from your kernel configuration until you rebuild your userland.
7151.64Ssommerfe	See 20011029 above and BUILDING file in this directory for more information.
7161.64Ssommerfe	[updated 20020630 since i386 gas moved when USE_NEW_TOOLCHAIN enabled]
7171.29Sbjh21
7181.29Sbjh2120010731:
7191.29Sbjh21	Bootloader update on ELF platforms.  DDB in kernels from before
7201.29Sbjh21	this will be unable to read symbol tables provided by newer
7211.29Sbjh21	bootloaders.
7221.27Sassar
7231.27Sassar20010726:
7241.27Sassar	Texinfo was updated to 4.0.  To avoid failures when trying to
7251.28Sassar	build the included texinfo files, do:
7261.28Sassar
7271.28Sassar	cd src/gnu/usr.bin/texinfo
7281.28Sassar	make MKINFO=no dependall install
7291.25Sthorpej
7301.25Sthorpej20010718:
7311.25Sthorpej	Enabled correct .init/.fini processing in crt0.  The way this
7321.25Sthorpej	was done was to change a -I directive to cc(1), which means
7331.25Sthorpej	make(1) will have a stale dependency (it will be checking the
7341.25Sthorpej	timestamp on the wrong "dot_init.h").
7351.25Sthorpej
7361.25Sthorpej	The symptom you will see is that new programs die with SIGSEGV
7371.25Sthorpej	if you have a stale dependency.
7381.25Sthorpej
7391.25Sthorpej	Solution: "make cleandir" in both lib/csu and libexec/ld.elf_so
7401.25Sthorpej	before starting your build.
7411.26Sthorpej
7421.26Sthorpej20010628:
7431.26Sthorpej	A construct was added to uvm_page.h that uncovered a bug
7441.26Sthorpej	in lint(1).  If you get a warning/error about a non-portable
7451.26Sthorpej	bitfield, update your lint(1) before proceeding.
7461.21Sjmc
7471.21Sjmc20010226:
7481.22Sjmc	Added named user/group to system. Need to hand add this in or builds
7491.21Sjmc	will break as mtree aborts early.
7501.21Sjmc
7511.21Sjmc	To work around add by hand:
7521.21Sjmc
7531.21Sjmc	named:*:14:
7541.21Sjmc
7551.22Sjmc	to /etc/group and add:
7561.22Sjmc
7571.22Sjmc	named:*:14:14::0:0:Named pseudo-user:/var/named:/sbin/nologin
7581.22Sjmc
7591.22Sjmc	to master.passwd (use vipw for instance if doing by hand).
7601.22Sjmc
7611.22Sjmc	Now a make build should progress.
7621.18Sjmc
7631.18Sjmc20010219:
7641.52Swiz	get/setprogname() added. Any hostprogs that may use this will need
7651.111Ssimonb	to be bootstrapped manually until the host system is current.
7661.18Sjmc
7671.111Ssimonb	Known problems: sys/arch/macppc/stand/fixcoff
7681.19Scgd			usr.sbin/config (adding -DMAKE_BOOTSTRAP to
7691.19Scgd			  CFLAGS and rebuilding should work)
7701.20Sjmc			usr.sbin/mdsetimage - Build a static copy if
7711.111Ssimonb			  building a snapshot before fully bootstrapped.
7721.15Schristos
7731.15Schristos20010204:
7741.15Schristos	prepare the code to compile with stricter gcc flags. in
7751.15Schristos	particular start eliminating redundant declarations. Yacc
7761.15Schristos	needs to be installed before make build.
7771.10Schristos
7781.10Schristos20010114:
7791.10Schristos	introduce .if commands(target) in make(1). You need to
7801.10Schristos	bring everything up-to-date first, then without installing
7811.23Stron	anything make and install in usr.bin/make, then proceed
7821.10Schristos	with make build.
7831.9Ssommerfe
7841.9Ssommerfe20010101:
7851.9Ssommerfe	bsd.subdir.mk committed 20001230 had a bug which caused
7861.9Ssommerfe	afterinstall targets to run too soon; update again.
7871.8Ssommerfe
7881.8Ssommerfe20001230:
7891.8Ssommerfe	New share/mk files needed to support .WAIT in SUBDIR variables.
7901.8Ssommerfe	If you get make errors, 
7911.8Ssommerfe		(cd share/mk; make install)
7921.8Ssommerfe	Also, PRINTOBJDIR has changed and is now used more heavily.
7931.6Sad
7941.6Sad20001019:
7951.7Sad	The `ca' device driver has been replaced by `ld'; although the
7961.6Sad	major and minor numbers haven't changed, you should update your /dev
7971.6Sad	directory.
7981.1Sabs
7991.4Sitojun20000929:
8001.4Sitojun	The following make directives are obsoleted.
8011.4Sitojun	MKCRYPTO_RSA NOCRYPTO_RSA NOCRYPTO_RC5 NOCRYPTO_IDEA 
8021.4Sitojun	By default, RSA is built into libcrypto.  IDEA and RC5 will not be
8031.16Swiz	built into libcrypto.  By using MKCRYPTO_{RC5,IDEA}, you can build
8041.4Sitojun	additional library libcrypto_{idea,rc5}.
8051.1Sabs
8061.1Sabs
8071.1SabsHints for a more successful build:
8081.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8091.123Sjmc    Use build.sh, but do not use its "expert mode":
8101.132Sjmmv	This will automatically build the tools in the
8111.123Sjmc	   correct order, and it will keep the tools and the
8121.123Sjmc	   new build products from interfering with the running
8131.123Sjmc	   system.  This will allow you to ignore most of the
8141.123Sjmc	   other advice in this file.
8151.2Smrg    Build a new kernel first:
8161.2Smrg	This makes sure that any new system calls or features
8171.2Smrg	   expected by the new userland will be present.  This
8181.2Smrg	   helps to avoid critical errors when upgrading.
8191.1Sabs    Use object directories:
8201.1Sabs	This helps to keep stale object
8211.1Sabs	   files from polluting the build if a Makefile "forgets"
8221.1Sabs	   about one.  It also makes it easier to clean up after
8231.1Sabs	   a build.  It's also necessary if you want to use the
8241.1Sabs	   same source tree for multiple machines.
8251.123Sjmc	   To use object directories with build.sh:
8261.123Sjmc	    a) invoke build.sh with the "-M" or "-O" options.
8271.123Sjmc	   To use object directories without using build.sh:
8281.1Sabs	    a) cd /usr/src ; make cleandir
8291.2Smrg	    b) Add "OBJMACHINE=yes" to /etc/mk.conf
8301.2Smrg	    c) Add "MKOBJDIRS=yes" to /etc/mk.conf
8311.1Sabs	    d) cd /usr/src ; make build
8321.2Smrg	   Note that running "make obj" in a directory will create
8331.2Smrg	   in obj.$MACHINE directory.
8341.1Sabs    Build to a DESTDIR:
8351.123Sjmc	This helps to keep old installed files (especially libraries)
8361.123Sjmc	   from interfering with the new build.
8371.123Sjmc	   To build to a DESTDIR with build.sh, use the "-D" option.
8381.123Sjmc	   To build to a DESTDIR without using build.sh, set the DESTDIR
8391.123Sjmc	   environment variable before running make build.  It should be
8401.123Sjmc	   set to the pathname of an initially empty directory.
8411.123Sjmc	   Problems: if you do not use build.sh, you might need to
8421.123Sjmc		update critical utilities without using DESTDIR since
8431.123Sjmc		nothing is executed from what is installed in DESTDIR.
8441.123Sjmc		(See critical utils, below.)
8451.1Sabs    Build often:
8461.1Sabs	This keeps critical utilities current enough to not choke
8471.1Sabs	on any other part of the source tree that depends on up to
8481.123Sjmc	date functionality.  If you use build.sh, you should not have
8491.123Sjmc	this problem.
8501.1Sabs 
8511.1SabsWhat to do if things don't work:
8521.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8531.1SabsWhen things don't work there is usually a few things that commonly
8541.1Sabsshould be done.
8551.1Sabs    1)	make includes
8561.1Sabs	This should be done automatically by make build.
8571.1Sabs    2)  cd share/mk && make install
8581.1Sabs	Again, automatically done by make build.
8591.1Sabs
8601.1SabsFailsafe rebuild of a small part of the tree:
8611.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8621.1SabsTo make sure you rebuild something correctly you want to do
8631.1Sabssomething like the following:
8641.1Sabs    1)  Make sure the includes and .mk files are up to date.
8651.1Sabs    2)  Make sure any program used to build the particular
8661.1Sabs	utility is up to date.  (yacc, lex, etc...)
8671.1Sabs    3)  cd ...path/to/util...
8681.1Sabs	make cleandir
8691.1Sabs	rm ...all obj directories...
8701.1Sabs	make cleandir			# yes, again
8711.1Sabs	make obj
8721.1Sabs	make depend && make
8731.1Sabs
8741.1SabsFailsafe rebuild of the entire tree:
8751.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8761.1SabsIf you really want to make sure the source tree is clean and
8771.2Smrgready for a build try the following.  Note that sourcing /etc/mk.conf
8781.2Smrg(a make(1) Makefile) in this manner is not right, and will not work
8791.2Smrgfor anyone who uses any make(1) features in /etc/mk.conf.
8801.1Sabs
8811.1Sabs---cut here---
8821.1Sabs#!/bin/sh
8831.1Sabs. /etc/mk.conf
8841.1Sabs
8851.58Slukemif [ -z $NETBSDSRCDIR ] ; then
8861.58Slukem    NETBSDSRCDIR=/usr/src
8871.1Sabsfi
8881.58Slukemif [ \! -d $NETBSDSRCDIR ] ; then
8891.1Sabs    echo Unable to find sources
8901.1Sabs    exit 1
8911.1Sabsfi
8921.58Slukemfind $NETBSDSRCDIR -name \*.o -o -name obj.\* -o -name obj -exec rm \{\} \;
8931.1Sabs
8941.1Sabsif [ -z $BSDOBJDIR ] ; then
8951.1Sabs    BSDOBJDIR=/usr/obj
8961.1Sabsfi
8971.1Sabsif [ -d $BSDOBJDIR ] ; then
8981.1Sabs    rm -rf $BSDOBJDIR
8991.1Sabsfi
9001.1Sabs
9011.58Slukemcd $NETBSDSRCDIR && make cleandir
9021.1Sabs
9031.1Sabs---cut here---
9041.1Sabs
9051.1SabsCritical utilities:
9061.1Sabs^^^^^^^^^^^^^^^^^^^
9071.3Sitojun	usr.bin/compile_et
9081.1Sabs	usr.bin/make
9091.1Sabs	usr.bin/yacc
9101.1Sabs	usr.bin/lex
9111.11Slukem	usr.bin/xlint
9121.142Sdrochner	usr.bin/config
9131.1Sabs
9141.34SsimonbOther problems and possible solutions:
9151.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9161.1SabsSymptom:Complaints involving a Makefile.
9171.17SerhFix:	Rebuild usr.bin/make:
9181.17Serh	cd usr.bin/make && make && make install
9191.111Ssimonb	Or, a failsafe method if that doesn't work:
9201.17Serh	cd usr.bin/make && cc *.c */*.c -I . -o make && mv make /usr/bin
9211.17Serh
9221.1SabsFix:	Make sure .mk files are up to date.
9231.1Sabs	cd share/mk && make install
9241.2Smrg
9251.2SmrgSymptom:Kernel `config' fails to configure any kernel, including GENERIC.
9261.142SdrochnerFix:	Rebuild usr.bin/config
9271.1Sabs
9281.1SabsSymptom:
9291.1SabsFix:	Rebuild usr.bin/yacc
9301.1Sabs
9311.1SabsSymptom:
9321.1SabsFix:	Rebuild usr.bin/lex
9331.1Sabs
9341.1SabsSymptom:
9351.1SabsFix:	rm /usr/lib/libbfd.a
9361.4Sitojun
9371.4SitojunSymptom:Obsolete intermediate files are used during compilation
9381.4SitojunFix:	Try the following sequence of commands in the directory in question.
9391.4Sitojun	make cleandir; rm `make print-objdir`; make cleandir; make obj
9401.4Sitojun	(If you built the tree without "make obj" in the past, obsolete files
9411.4Sitojun	may remain.  The command tries to clean everything up)
9421.5Swiz
9431.5SwizSymptom:.../sysinst/run.c:xx: warning: initialization from incompatible pointer type
9441.5SwizFix:	Rebuild and install usr.bin/menuc
9451.12Sitojun
9461.12SitojunSymptom:mklocale not found during build in share/locale/ctype
9471.12SitojunFix:	Build and install usr.bin/mklocale
9481.13Sdogcow
9491.86SkleinkSymptom:undefined reference to `__assert13' or `__unsetenv13'
9501.13SdogcowFix:    Rebuild and install lib/libc
9511.13Sdogcow
9521.142SdrochnerSymptom:usr.bin/config fails to build.
9531.19ScgdFix:	Try building with -DMAKE_BOOTSTRAP added to CFLAGS in Makefile.
9541.13Sdogcow
9551.19ScgdSymptom:undefined reference to `getprogname' or `setprogname'
9561.19ScgdFix:    Rebuild and install lib/libc
9571.24Sabs
9581.24SabsSymptom:lint does not understand the '-X' option
9591.24SabsFix:    May need to build & install libs with NOLINT=1 before rebuilding lint
960