UPDATING revision 1.133
11.133Schristos$NetBSD: UPDATING,v 1.133 2005/01/06 23:28:56 christos 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.133Schristos20041229: 191.133Schristos Make had a path resolution bug that manifested itself as not 201.133Schristos being able to install openpam.3. This bug has been fixed, but 211.133Schristos you might need to rebuild make manually first to get through 221.133Schristos the build. 231.133Schristos 241.130Schristos20041201: 251.130Schristos Userland programs have been changed to use /dev/bpf instead of 261.130Schristos /dev/bpfX. You need to create that device by installing a new 271.131Swiz MAKEDEV and running it, or mv /dev/bpf0 /dev/bpf && rm /dev/bpf[0-9]* 281.99Smrg 291.129Sjmc20041006: 301.129Sjmc 311.129Sjmc A bug was introduced into /bin/sh (var.c rev 1.35) which causes 321.129Sjmc variables to not export correctly to subshells in all cases. This 331.129Sjmc will cause builds to break if that version of /bin/sh is installed 341.129Sjmc on the system. The proper version of /bin/sh can be verified with: 351.129Sjmc 361.129Sjmc ident /bin/sh | grep var 371.129Sjmc 381.129Sjmc Any /bin/sh w. version 1.35 will not work and needs to be updated 391.129Sjmc before attempting a build. 401.129Sjmc 411.127Schristos20041001: 421.127Schristos The ipfilter kernel sources moved from sys/netinet to 431.127Schristos dist/sys/ipf/netinet. Due to the move some Makefile 441.127Schristos dependencies are now dangling requiring a make cleandir 451.128She before they work again (kdump, ktruss, rescue, ipf, and 461.128She ftp-proxy are the victims). 471.127Schristos 481.125Satatat20040715: 491.125Satatat The rc.d/sendmail script now uses a heuristic to determine 501.125Satatat if sendmail should be started at boot time. It checks the 511.125Satatat contents of /etc/mailer.conf, /etc/mail/submit.cf, and the 521.125Satatat owner and mode of the sendmail binary to see if any changes 531.125Satatat to the mail infrastructure have been made. If no changes 541.125Satatat are detected, it will start an SMTP listener. 551.125Satatat 561.125Satatat Setting sendmail=NO in /etc/rc.conf will override this. 571.125Satatat 581.125Satatat If you are only using sendmail by default and only for 591.125Satatat local delivery, it is important that you also update your 601.125Satatat sendmail.cf so that the SMTP listener only listens on the 611.125Satatat loopback interface. 621.125Satatat 631.125Satatat20040715: 641.125Satatat The method by which athhal-elf.o gets pulled into i386 651.125Satatat kernel builds has been changed again. The latest version 661.125Satatat of bsd.files.mk is no longer required. 671.125Satatat 681.124Sjmc20040621: 691.124Sjmc Due to the recent rototill of tools/compat it's crucial one starts 701.124Sjmc from a clean objdir under tools/*. 711.124Sjmc 721.124Sjmc This is mostly due to generated files (yacc and lex sources) needing 731.125Satatat to be generated with new rules from bsd.hostprog.mk. 741.124Sjmc 751.124Sjmc The safest course is to rm -rf all objects under tools before building. 761.124Sjmc 771.121Slukem20040516: 781.121Slukem The end-user modifiable X11 configuration has been moved 791.121Slukem from /usr/X11R6/lib/X11/<dir> to /etc/X11/<dir>. 801.121Slukem Ensure that src and xsrc is up to date, and run 811.121Slukem "make cleandir" in src/x11 before your next build. 821.121Slukem 831.126Slukem postinstall currently doesn't migrate the files from 841.126Slukem /usr/X11R6/lib/X11/* to /etc/X11/* although it does 851.126Slukem detect that this needs to occur, so you'll have to 861.126Slukem manually move these files yourself. 871.126Slukem 881.119Satatat20040426: 891.119Satatat Support for the original dynamic sysctl node structure has 901.119Satatat been removed in favor of the newer layout. This affects 911.119Satatat consumers of the create and delete interface, as well as 921.119Satatat the dynamic discovery mechanism. This is believed only to 931.119Satatat be the sysctl(8) binary itself, at this point in time, so 941.119Satatat the only effect of this should be that a sysctl binary 951.119Satatat built from sources dated between 2003/12/04 and 2004/03/24 961.119Satatat will not work on a kernel built from sources dated after 971.119Satatat 2004/04/25. If you need a new sysctl binary but build.sh 981.119Satatat does not work, make sure that your revision of 991.120Satatat src/sys/sys/sysctl.h is 1.112 (or later), and then the 1001.120Satatat do the following: 1011.119Satatat 1021.120Satatat cd /usr/src (or wherever your source tree is) 1031.120Satatat make USETOOLS=no includes 1041.120Satatat cd lib/libc 1051.120Satatat make USETOOLS=no dependall install 1061.120Satatat cd ../../sbin/sysctl 1071.119Satatat make USETOOLS=no dependall install 1081.119Satatat 1091.122Sitojun If you are using older sysctl binary, GNU autoconf would fail to 1101.122Sitojun identify your machine architecture, and tries to build binary for 1111.122Sitojun "unknown-unknown-netbsd20F" or something like that. if that happens, 1121.122Sitojun make sure to follow the above steps. 1131.122Sitojun 1141.118Sdbj20040425: 1151.118Sdbj The ffs superblock issues listed below under 20040109 and 20030402 1161.118Sdbj are now automatically addressed by the /etc/rc.d/fixsb script or by 1171.118Sdbj sysinst when it checks a a filesystem. The manual fsck_ffs -b16 -c4 1181.118Sdbj invocation mentioned below will continue to work and is now 1191.118Sdbj automated by those scripts. Note that under certain circumstances, 1201.118Sdbj affected filesystems upgraded to a -current kernel first before 1211.118Sdbj upgrading their userland with the fixsb and fsck_ffs fixes may 1221.118Sdbj encounter a 'freeing free inode' panic when writing to the affected 1231.118Sdbj filesystem, so it is a good idea to repair the filesystem as soon as 1241.118Sdbj possible. For more details on the fixsb script, see pr install/25138. 1251.118Sdbj 1261.115Schristos20040418: 1271.121Slukem statfs(2) and friends have been replaced with statvfs(2). Before 1281.115Schristos installing a newly build userland make sure that you are running 1291.115Schristos a newly built kernel with COMPAT_20 set. In addition your libc 1301.115Schristos build might not work (undefined SYS_statfs symbol) because make 1311.115Schristos clean does not know how to remove files it does not know about 1321.116Schristos anymore. Manually remove all generated .S sources and objects 1331.116Schristos from the libc build directory. 1341.115Schristos 1351.114Sjmc20040326: 1361.114Sjmc The method by which athhal-elf.o gets pulled into i386 kernel builds 1371.117Sjmc has been changed. The file is now stored as a uuencoded file in CVS 1381.114Sjmc and the generated Makefile will use the new .uue rules from bsd.file.mk 1391.114Sjmc to build it. 1401.114Sjmc 1411.114Sjmc This means you must have the latest bsd.files.mk installed when 1421.114Sjmc building a kernel without USETOOLS=yes. 1431.114Sjmc 1441.113Sdan20040318: 1451.113Sdan A bug in the cgd(4) blowfish code was corrected, without 1461.113Sdan provision of backwards compatibility, after several public 1471.113Sdan notices over several months. Users of cgd with blowfish cipher 1481.113Sdan ONLY must dump their data before updating their kernels, and 1491.113Sdan recreate cgd's and restore data using the new kernel. See 1501.113Sdan (recent message to current-users, URL when mail-index has updated) 1511.113Sdan 1521.108Sbjh2120040313: 1531.108Sbjh21 On acorn32, the opms and qms drivers have been withdrawn, and 1541.108Sbjh21 the old wsqms driver is now called qms. Kernel config files 1551.108Sbjh21 will need updating. See the ones in sys/arch/acorn32/conf 1561.108Sbjh21 for examples. 1571.108Sbjh21 1581.106Sbjh2120040125: 1591.106Sbjh21 On acorn32, the beep and sysbeep devices are no longer 1601.106Sbjh21 needed, and will need to be deleted from kernel configuration 1611.106Sbjh21 files. 1621.105Sbjh21 1631.102Sdbj20040109: 1641.102Sdbj Compatibility for old ffs superblock layouts has been 1651.102Sdbj added, and the restrictive fsck checks have been reenabled 1661.102Sdbj when using those layouts. If you have been using -current 1671.102Sdbj since 20030402, you may find that fsck again signals fatal 1681.110Sdbj superblock mismatches. To repair, make sure you have 1691.111Ssimonb an updated fsck_ffs and then you can use fsck_ffs -b 16 -c 4 1701.109Sdbj to complete the filesystem upgrade. A message has 1711.111Ssimonb been added to the kernel which should detect this problem. 1721.111Ssimonb See the following discussion for more information: 1731.112Skeihan http://mail-index.NetBSD.org/current-users/2004/01/11/0022.html 1741.102Sdbj 1751.99Smrg20031203: 1761.100Skeihan New binutils builds may fail due to old dependencies. 1771.99Smrg It's necessary to "make cleandir" to ensure that 1781.99Smrg the dependencies will be rebuilt correctly. 1791.98Swiz 1801.98Swiz20031111: 1811.98Swiz A newer mkdep is needed. Error noting that is 1821.98Swiz cc: Ambiguous abbreviation -- 1831.97Slukem 1841.97Slukem20031008: 1851.97Slukem /usr/include/sys/disklabel_mbr.h was removed. 1861.97Slukem It's necessary to "make cleandir" to ensure that 1871.97Slukem the dependencies will be rebuilt correctly. 1881.96Schristos 1891.109Sdbj20031007: 1901.111Ssimonb A sign exension bug was fixed which set all the high bits 1911.111Ssimonb of our newly expanded ffs fs_flags. This should only 1921.111Ssimonb affect users who installed or upgraded in September of 2003. 1931.109Sdbj A small utility program was posted to tech-kern which 1941.111Ssimonb should fix this problem, and a warning message was added 1951.111Ssimonb to the kernel which should discover and warn about it. See 1961.111Ssimonb http://mail-index.NetBSD.org/tech-kern/2003/10/07/0005.html 1971.109Sdbj 1981.96Schristos20030906: 1991.96Schristos With the addition of siginfo support the old signal trampoline 2001.96Schristos code has been deprecated to COMPAT_16. Make sure that your running 2011.96Schristos kernel has COMPAT_16 enabled before building userland. 2021.94Schristos 2031.94Schristos20030801: 2041.95Swiz With the new openssl, there is some header and library shuffling. 2051.94Schristos rm -f /usr/include/des.h /usr/include/kerberosIV/* /lib/libdes* \ 2061.95Swiz /usr/lib/libdes* before building. 2071.92Swiz 2081.92Swiz20030703: 2091.92Swiz Texinfo was updated to 4.6. To avoid failures when trying to 2101.92Swiz build the included texinfo files, do: 2111.92Swiz 2121.92Swiz cd src/gnu/usr.bin/texinfo 2131.92Swiz make MKINFO=no dependall install 2141.90Swiz 2151.90Swiz20030630: 2161.101Sjunyoung Groff was updated to 1.19; it's probably necessary to do 2171.91Swiz cd share/mk && make install 2181.90Swiz cd src/gnu/usr.bin/groff 2191.90Swiz make MKMAN=no dependall install 2201.90Swiz (untested). 2211.89Schristos 2221.89Schristos20030516: 2231.89Schristos Due to bugs in the export handling code, invalid export lines 2241.89Schristos were accepted before and caused the kernel to panic when 2251.89Schristos mountd got restarted because it freed memory that had already 2261.89Schristos been freed. This has been fixed and the kernel checks 2271.89Schristos export addresses very strictly. If you upgrade your kernel, 2281.89Schristos make sure you also upgrade mountd, because if your export 2291.89Schristos file contains lines with an old inet4 address syntax (i.e. 2301.89Schristos a.b.c or a.b or a), they will get rejected by the new kernel. 2311.87Sbjh21 2321.87Sbjh2120030402: 2331.87Sbjh21 The superblock layout for FFS was changed. If you have 1.6 2341.87Sbjh21 fsck binaries, they will signal a fatal superblock mismatch 2351.87Sbjh21 with the first alternate, because they compare too many 2361.87Sbjh21 fields (even ones that aren't useful). If possible, upgrade 2371.87Sbjh21 your fsck_ffs binary before using a new kernel. 2381.87Sbjh21 None of this signals actual filesystem damage. 2391.85Satatat 2401.85Satatat20030324: 2411.85Satatat sendmail version 8.12.8 was imported. Since sendmail is 2421.85Satatat now setgid to the smmsp group, and runs in "collection" 2431.85Satatat mode for most common activities, there is a new config 2441.85Satatat file called submit.cf that needs to live in /etc/mail. 2451.85Satatat The generic submit.cf sample in /usr/share/sendmail/cf 2461.85Satatat is named netbsd-msp.cf. Upgrading your regular sendmail 2471.85Satatat configuration file is also strongly advised. 2481.85Satatat 2491.85Satatat See the section named "MESSAGE SUBMISSION PROGRAM" in 2501.85Satatat the updated /usr/share/sendmail/README file for more 2511.85Satatat information. 2521.82Swiz 2531.82Swiz20030117: 2541.82Swiz Texinfo was updated to 4.3. To avoid failures when trying to 2551.82Swiz build the included texinfo files, do: 2561.82Swiz 2571.82Swiz cd src/gnu/usr.bin/texinfo 2581.82Swiz make MKINFO=no dependall install 2591.81Slukem 2601.81Slukem20021223: 2611.81Slukem The METALOG format changed slightly, to remove the leading 2621.81Slukem "${DESTDIR}" from path names. 2631.81Slukem This only affects people building with UNPRIVED. 2641.81Slukem For complete safety, remove the DESTDIR entirely and 2651.81Slukem update tools/mtree, before running make build. 2661.88Sitojun 2671.88Sitojun20021219: 2681.88Sitojun CVS repository layout was changed. See the following for details 2691.88Sitojun if you are using (anonymous) cvs to update your tree. 2701.88Sitojun 2711.93Ssalo http://mail-index.NetBSD.org/netbsd-announce/2002/12/19/0000.html 2721.80Slukem 2731.80Slukem20021219: 2741.80Slukem install(1) had a '-N dbdir' option added, to specify an 2751.80Slukem alternate location to look up users & groups (instead 2761.80Slukem of the host system passwd(5) and group(5) databases). 2771.80Slukem 2781.80Slukem The build system was modified to take advantage of 2791.80Slukem this option (using ${NETBSDSRCDIR}/etc), so if you 2801.83Skei use USETOOLS==no, you may have to rebuild and 2811.80Slukem reinstall usr.bin/xinstall first. 2821.78Slukem 2831.78Slukem20021130: 2841.78Slukem fparseln(3) moved from libutil to libc. 2851.78Slukem If building to DESTDIR=/, reinstall the includes 2861.78Slukem and rebuild libc: 2871.78Slukem make includes 2881.78Slukem make do-lib-libc 2891.78Slukem If using build.sh, "cd tools/compat && make clean" 2901.78Slukem before rebuilding the tools. 2911.77Slukem 2921.77Slukem20021126: 2931.77Slukem The mk.conf(5) variable SYS_INCLUDE has been deprecated, 2941.77Slukem including the optional "SYS_INCLUDE=symlinks" support. 2951.77Slukem All header files, including <sys/*.h> are copied into 2961.77Slukem /usr/include. 2971.76Sthorpej 2981.76Sthorpej20021121: 2991.76Sthorpej The C run-time support files crtbegin.o and crtend.o 3001.76Sthorpej (and their companions crtbeginS.o and crtendS.o) were 3011.76Sthorpej split up, with new crti.o and crtn.o files resulting. 3021.76Sthorpej This means that libtool needs to be rebuilt once the 3031.76Sthorpej new libraries are installed. The process of rebuilding 3041.76Sthorpej libtool will cause it to automatically notice the new 3051.76Sthorpej required files, but it *must* be rebuilt in order to 3061.76Sthorpej do this. 3071.76Sthorpej 3081.76Sthorpej An out-of-date libtool will result in shared libraries 3091.76Sthorpej which lack _init() and _fini() routines, which means that 3101.76Sthorpej their global contructors/destructors will not be invoked. 3111.75Sthorpej 3121.75Sthorpej20021121: 3131.75Sthorpej A bug related to how ARM ELF objects were tagged has been 3141.75Sthorpej corrected. 3151.75Sthorpej 3161.75Sthorpej NetBSD ARM ELF uses the soft-VFP floating point model by 3171.75Sthorpej default. However, the assembler lacked support for marking 3181.75Sthorpej objects as using the VFP floating point format, and the 3191.79Swiz compiler was not properly passing the flag indicating "soft-VFP" 3201.75Sthorpej to the assembler. 3211.75Sthorpej 3221.75Sthorpej Unfortunately, this means that the linker will now consider 3231.75Sthorpej old (i.e. not marked "softvfp") NetBSD ARM ELF objects to be 3241.75Sthorpej incompatible with new (properly marked) objects. 3251.75Sthorpej 3261.75Sthorpej The problem will only manifest itself if you attempt to compile 3271.75Sthorpej a new program using the fixed toolchain, and link that program 3281.75Sthorpej against old libraries which do not have the proper "softvfp" 3291.75Sthorpej markings. ALL OF YOUR EXISTING BINARIES AND SHARED LIBRARIES 3301.75Sthorpej WILL CONTINUE TO WORK PROPERLY. 3311.75Sthorpej 3321.75Sthorpej The only work-around for the problem is to recompile all of 3331.75Sthorpej the libraries on the system. The easiest way to do this for 3341.79Swiz system libraries is to install a binary snapshot; they are 3351.93Ssalo generally available on releng.NetBSD.org. Any packages you 3361.75Sthorpej have installed which supply libraries will have to be recompiled 3371.75Sthorpej if you wish to link new programs against those libraries. 3381.75Sthorpej 3391.75Sthorpej If you have questions about this matter, please contact 3401.93Ssalo port-arm@NetBSD.org. 3411.73Sprovos 3421.73Sprovos20021011: 3431.73Sprovos Systrace has been improved to support privilege elevation. 3441.73Sprovos Updating the kernel requires the userland part of systrace 3451.79Swiz to be rebuilt. 3461.72Sthorpej 3471.72Sthorpej20021010: 3481.72Sthorpej The config(8) grammar was changed to allow options to register 3491.72Sthorpej dependencies on attributes, as well as other options. Users 3501.72Sthorpej must update and reinstall usr.sbin/config before building a new 3511.72Sthorpej kernel. 3521.70Sthorpej 3531.70Sthorpej20021009: 3541.70Sthorpej A new attribute dependency syntax was introduced to config(8), 3551.70Sthorpej which is now used by the SCSI configuration description. Users 3561.71Swiz must update and reinstall usr.sbin/config before building a new 3571.70Sthorpej kernel. 3581.69Sthorpej 3591.69Sthorpej20021003: 3601.69Sthorpej Several changes have been made to the autoconfiguration 3611.69Sthorpej framework. Users must update and reinstall usr.sbin/config 3621.69Sthorpej before building a new kernel. 3631.74Sjschauma 3641.74Sjschauma20021001: 3651.74Sjschauma The i386mp branch has been merged. To compile a kernel, users 3661.74Sjschauma will need to add the option 'cpu* at mainbus?' to their configuration 3671.74Sjschauma file. Multiprocessor kernels will need 3681.74Sjschauma ioapic* at mainbus? apid ? 3691.74Sjschauma options MULTIPROCESSOR 3701.74Sjschauma options COM_MPLOCK 3711.68Slukem 3721.68Slukem20020922: 3731.68Slukem MKDYNAMICROOT=yes enabled by default, which means that 3741.68Slukem certain shared libraries are installed into /lib, the shared 3751.68Slukem linker is installed into /libexec, and all programs in /bin 3761.68Slukem and /sbin are dynamically linked. 3771.68Slukem If you do not use "make build", you should ensure that 3781.68Slukem you have the libraries and shared linker in the new locations, 3791.68Slukem with: 3801.68Slukem make do-lib-csu do-lib-libc do-lib do-gnu-lib do-ld.elf_so 3811.67Slukem 3821.67Slukem20020917: 3831.67Slukem USE_NEW_TOOLCHAIN has been replaced with: 3841.67Slukem - TOOLCHAIN_MISSING -- set to "yes" on platforms for which 3851.67Slukem there is no working in-tree toolchain (hppa, ns32k, sh5, 3861.67Slukem x86_64). 3871.67Slukem - EXTERNAL_TOOLCHAIN -- if defined by the user, points to the 3881.79Swiz root of an external toolchain (e.g. /usr/local/gnu). This 3891.67Slukem enables the cross-build framework even for TOOLCHAIN_MISSING 3901.67Slukem platforms. 3911.66Sgehenna 3921.66Sgehenna20020906: 3931.66Sgehenna gehenna-devsw has been merged into the trunk. Need to update and 3941.79Swiz reinstall usr.sbin/config before building the kernel. 3951.65Slukem 3961.65Slukem20020822: 3971.65Slukem Crunched rescue tools (contents of /bin and /sbin, plus others) 3981.65Slukem are now provided in /rescue. 3991.65Slukem 4001.65Slukem To ensure that these are built statically linked (no matter 4011.65Slukem what the setting of LDSTATIC is), use a crunchgen(1) built 4021.65Slukem from sources newer than 20020820 (see the next entry). 4031.65Slukem 4041.65Slukem20020820: 4051.65Slukem crunchgen(1) changed to ensure that the generated program 4061.65Slukem is statically linked. 4071.65Slukem 4081.65Slukem Solution: update and reinstall usr.bin/crunch 4091.84Sgrant 4101.84Sgrant20020605: 4111.84Sgrant smmsp user/group has been added for sendmail. 4121.84Sgrant 4131.84Sgrant Add the following into /etc/group: 4141.84Sgrant 4151.84Sgrant smmsp:*:17: 4161.84Sgrant 4171.84Sgrant and the following to /etc/master.passwd (via vipw): 4181.84Sgrant 4191.84Sgrant smmsp:*:17:17::0:0:Sendmail Message Submission Program:/nonexistent:/sbin/nologin 4201.61Sitojun 4211.61Sitojun20020515: 4221.61Sitojun sshd user/group has been added. Need to hand add this in, or sshd 4231.61Sitojun will not let you log in (with default, or UsePrivlegeSeparation=yes) 4241.61Sitojun 4251.61Sitojun Add the following into /etc/group: 4261.61Sitojun 4271.61Sitojun sshd:*:16: 4281.61Sitojun 4291.61Sitojun and the following to /etc/master.passwd (via vipw): 4301.61Sitojun 4311.63Senami sshd:*:16:16::0:0:& pseudo-user:/var/chroot/sshd:/sbin/nologin 4321.61Sitojun 4331.79Swiz Also /var/chroot/sshd directory needs to be present (digged as part of 4341.79Swiz the build process). 4351.60Ssommerfe 4361.60Ssommerfe20020426: 4371.60Ssommerfe NBUILDJOBS obsoleted in favor of just using -j. 4381.59Slukem 4391.59Slukem20020426: 4401.59Slukem etc/postinstall added, which performs various checks for 4411.59Slukem configuration file updates and changes, and can fix most of 4421.59Slukem the problems identified. 4431.59Slukem This should make it much easier to upgrade a system's 4441.59Slukem configuration from earlier systems (as far back as NetBSD 1.5). 4451.56Slukem 4461.56Slukem20020320: 4471.79Swiz <bsd.lib.mk> needs a new install(1) for its "-a cmd" support. 4481.79Swiz Build and install at usr.bin/xinstall before the build. 4491.56Slukem 4501.55Sitojun20020319: 4511.79Swiz Raw IPv6 socket now makes strict checking for sa_family and sa_len 4521.79Swiz on send(2) operation. Be sure to have sbin/rtsol and usr.sbin/rtsold 4531.55Sitojun newer than November 2001 when you upgrade the kernel. 4541.55Sitojun 4551.54Sitojun20020311: 4561.54Sitojun ssh configuration files were moved from /etc to /etc/ssh. Beware 4571.54Sitojun if you restart your machine from remote. Note that sshd.conf needs 4581.54Sitojun to be changed (due to the use of "/etc" inside). 4591.54Sitojun 4601.54Sitojun20020223: 4611.53Smatt Users of the VAX port will need to rebuild and install gas 4621.53Smatt so it deal with the now present register prefix used in all 4631.53Smatt the VAX assembly files. 4641.53Smatt 4651.50Sitojun20020118: 4661.50Sitojun ntpd user/group has been added. Need to hand add this in or builds 4671.50Sitojun will break as mtree aborts early. 4681.50Sitojun 4691.50Sitojun Add the following into /etc/group: 4701.50Sitojun 4711.50Sitojun ntpd:*:15: 4721.50Sitojun 4731.50Sitojun and the following to /etc/master.passwd (via vipw): 4741.50Sitojun 4751.50Sitojun ntpd:*:15:15::0:0:Ntpd pseudo-user:/var/chroot/ntpd:/sbin/nologin 4761.50Sitojun 4771.49Sjmc20011207: 4781.49Sjmc If you're attempting to build a snapshot on sparc64 and are getting 4791.49Sjmc reloc errors from the toolchain groff binary this means your native 4801.49Sjmc toolchain has some broken C++ bits. 4811.49Sjmc 4821.49Sjmc To fix: 4831.49Sjmc 4841.49Sjmc Build a new toolchain (i.e. build.sh -t) 4851.49Sjmc Use the new toolchain to build and install natively (i.e. /usr/lib) 4861.49Sjmc 4871.49Sjmc gnu/lib/libgcc 4881.51Spooka gnu/lib/libstdc++ 4891.49Sjmc 4901.49Sjmc After this a snapshot will be able to be built. 4911.49Sjmc 4921.47Sjmc20011201: 4931.47Sjmc In order for a sparc64 build to work you must have a working awk. If 4941.47Sjmc you've built and installed a system with the new toolchain up to this 4951.52Swiz point you do not have a working awk as its ability to do floating 4961.47Sjmc point is broken. 4971.47Sjmc 4981.47Sjmc To build: 4991.47Sjmc 5001.47Sjmc remake and install gnu/lib/libgcc 5011.47Sjmc remake and install gnu/usr.bin/gawk into /usr/bin (make sure it links 5021.48Sjmc against the new libgcc.a) 5031.47Sjmc 5041.46Sthorpej20011128: 5051.46Sthorpej Kernel config information was changed to use defflag in 5061.46Sthorpej the various "files" files. Bug fixes to config(8) are 5071.46Sthorpej required in order for this to work properly. Make sure 5081.46Sthorpej to build and install in usr.sbin/config before attempting 5091.46Sthorpej to build a new kernel. 5101.46Sthorpej 5111.45Syamt20011030: 5121.45Syamt libc/locale/wcstod.c now needs new lint(1). Update lint(1) 5131.45Syamt before building libc. 5141.43Smason 5151.44Stv20011029: 5161.44Stv The new document BUILDING.mdoc (view with nroff | more, or 5171.44Stv see pre-generated .txt and .html versions) describes the build 5181.44Stv procedure in great detail. BUILDING, and the USE_NEW_TOOLCHAIN 5191.44Stv build process, are intended in the long run to replace this 5201.44Stv manual update log. 5211.44Stv 5221.44Stv Users building a USE_NEW_TOOLCHAIN system should read the 5231.44Stv BUILDING document for caveats. Generally, BUILDING supersedes 5241.44Stv UPDATING for these systems, as tool updating is taken care of 5251.44Stv by the new build system. 5261.42Sperry 5271.42Sperry20011028: 5281.42Sperry src/etc/Makefile now needs install to be able to handle 5291.42Sperry symlinks that point to nowhere. A bug in install that 5301.42Sperry prevented this was corrected. 5311.42Sperry 5321.42Sperry Solution: update and reinstall usr.bin/xinstall 5331.42Sperry Better Solution: Use the new toolchain and it will just work 5341.42Sperry for you. 5351.40Slukem 5361.40Slukem20011006: 5371.40Slukem /etc/mtree/NetBSD.dist has been updated to take advantage of 5381.40Slukem absolute path support added to mtree(8). Older mtree(8)s don't 5391.40Slukem understand the format. 5401.40Slukem 5411.40Slukem Solution: update and reinstall usr.sbin/mtree 5421.39Sjmc 5431.39Sjmc20011004: 5441.39Sjmc Crunchgen has been updated to work via reach-over makefiles. Updating 5451.39Sjmc is suggested before running a snapshot build 5461.36Stv 5471.35Sthorpej20010915: 5481.35Sthorpej The new "ubcperf" code committed by Chuck Silvers removed 5491.35Sthorpej a header file, uvm/uvm_vnode.h. There may be stale .depend 5501.35Sthorpej files that still reference this file. 5511.35Sthorpej 5521.35Sthorpej Solution: "make cleandir && make dependall" in affected 5531.35Sthorpej directories. 5541.31Senami 5551.31Senami20010803: 5561.31Senami grep.info is now built from grep.texi using makeinfo. Since it 5571.31Senami requires makeinfo v4.0, you need to install new texinfo before 5581.31Senami building gnu/usr.bin/grep. To install new texinfo, please follow 5591.31Senami the instruction described in 20010726 entry. 5601.30Senami 5611.64Ssommerfe20010803: 5621.41Swiz (i386 only): i386 kernel now uses new instructions like 5631.111Ssimonb `fxsave' which old gas doesn't understand. To build the 5641.64Ssommerfe kernel successfully, you need to build and install a new toolchain, 5651.64Ssommerfe (i.e., build.sh -t) or (temporarily) comment out "options I686_CPU" 5661.64Ssommerfe from your kernel configuration until you rebuild your userland. 5671.64Ssommerfe See 20011029 above and BUILDING file in this directory for more information. 5681.64Ssommerfe [updated 20020630 since i386 gas moved when USE_NEW_TOOLCHAIN enabled] 5691.29Sbjh21 5701.29Sbjh2120010731: 5711.29Sbjh21 Bootloader update on ELF platforms. DDB in kernels from before 5721.29Sbjh21 this will be unable to read symbol tables provided by newer 5731.29Sbjh21 bootloaders. 5741.27Sassar 5751.27Sassar20010726: 5761.27Sassar Texinfo was updated to 4.0. To avoid failures when trying to 5771.28Sassar build the included texinfo files, do: 5781.28Sassar 5791.28Sassar cd src/gnu/usr.bin/texinfo 5801.28Sassar make MKINFO=no dependall install 5811.25Sthorpej 5821.25Sthorpej20010718: 5831.25Sthorpej Enabled correct .init/.fini processing in crt0. The way this 5841.25Sthorpej was done was to change a -I directive to cc(1), which means 5851.25Sthorpej make(1) will have a stale dependency (it will be checking the 5861.25Sthorpej timestamp on the wrong "dot_init.h"). 5871.25Sthorpej 5881.25Sthorpej The symptom you will see is that new programs die with SIGSEGV 5891.25Sthorpej if you have a stale dependency. 5901.25Sthorpej 5911.25Sthorpej Solution: "make cleandir" in both lib/csu and libexec/ld.elf_so 5921.25Sthorpej before starting your build. 5931.26Sthorpej 5941.26Sthorpej20010628: 5951.26Sthorpej A construct was added to uvm_page.h that uncovered a bug 5961.26Sthorpej in lint(1). If you get a warning/error about a non-portable 5971.26Sthorpej bitfield, update your lint(1) before proceeding. 5981.21Sjmc 5991.21Sjmc20010226: 6001.22Sjmc Added named user/group to system. Need to hand add this in or builds 6011.21Sjmc will break as mtree aborts early. 6021.21Sjmc 6031.21Sjmc To work around add by hand: 6041.21Sjmc 6051.21Sjmc named:*:14: 6061.21Sjmc 6071.22Sjmc to /etc/group and add: 6081.22Sjmc 6091.22Sjmc named:*:14:14::0:0:Named pseudo-user:/var/named:/sbin/nologin 6101.22Sjmc 6111.22Sjmc to master.passwd (use vipw for instance if doing by hand). 6121.22Sjmc 6131.22Sjmc Now a make build should progress. 6141.18Sjmc 6151.18Sjmc20010219: 6161.52Swiz get/setprogname() added. Any hostprogs that may use this will need 6171.111Ssimonb to be bootstrapped manually until the host system is current. 6181.18Sjmc 6191.111Ssimonb Known problems: sys/arch/macppc/stand/fixcoff 6201.19Scgd usr.sbin/config (adding -DMAKE_BOOTSTRAP to 6211.19Scgd CFLAGS and rebuilding should work) 6221.20Sjmc usr.sbin/mdsetimage - Build a static copy if 6231.111Ssimonb building a snapshot before fully bootstrapped. 6241.15Schristos 6251.15Schristos20010204: 6261.15Schristos prepare the code to compile with stricter gcc flags. in 6271.15Schristos particular start eliminating redundant declarations. Yacc 6281.15Schristos needs to be installed before make build. 6291.10Schristos 6301.10Schristos20010114: 6311.10Schristos introduce .if commands(target) in make(1). You need to 6321.10Schristos bring everything up-to-date first, then without installing 6331.23Stron anything make and install in usr.bin/make, then proceed 6341.10Schristos with make build. 6351.9Ssommerfe 6361.9Ssommerfe20010101: 6371.9Ssommerfe bsd.subdir.mk committed 20001230 had a bug which caused 6381.9Ssommerfe afterinstall targets to run too soon; update again. 6391.8Ssommerfe 6401.8Ssommerfe20001230: 6411.8Ssommerfe New share/mk files needed to support .WAIT in SUBDIR variables. 6421.8Ssommerfe If you get make errors, 6431.8Ssommerfe (cd share/mk; make install) 6441.8Ssommerfe Also, PRINTOBJDIR has changed and is now used more heavily. 6451.6Sad 6461.6Sad20001019: 6471.7Sad The `ca' device driver has been replaced by `ld'; although the 6481.6Sad major and minor numbers haven't changed, you should update your /dev 6491.6Sad directory. 6501.1Sabs 6511.4Sitojun20000929: 6521.4Sitojun The following make directives are obsoleted. 6531.4Sitojun MKCRYPTO_RSA NOCRYPTO_RSA NOCRYPTO_RC5 NOCRYPTO_IDEA 6541.4Sitojun By default, RSA is built into libcrypto. IDEA and RC5 will not be 6551.16Swiz built into libcrypto. By using MKCRYPTO_{RC5,IDEA}, you can build 6561.4Sitojun additional library libcrypto_{idea,rc5}. 6571.1Sabs 6581.1Sabs 6591.1SabsHints for a more successful build: 6601.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 6611.123Sjmc Use build.sh, but do not use its "expert mode": 6621.132Sjmmv This will automatically build the tools in the 6631.123Sjmc correct order, and it will keep the tools and the 6641.123Sjmc new build products from interfering with the running 6651.123Sjmc system. This will allow you to ignore most of the 6661.123Sjmc other advice in this file. 6671.2Smrg Build a new kernel first: 6681.2Smrg This makes sure that any new system calls or features 6691.2Smrg expected by the new userland will be present. This 6701.2Smrg helps to avoid critical errors when upgrading. 6711.1Sabs Use object directories: 6721.1Sabs This helps to keep stale object 6731.1Sabs files from polluting the build if a Makefile "forgets" 6741.1Sabs about one. It also makes it easier to clean up after 6751.1Sabs a build. It's also necessary if you want to use the 6761.1Sabs same source tree for multiple machines. 6771.123Sjmc To use object directories with build.sh: 6781.123Sjmc a) invoke build.sh with the "-M" or "-O" options. 6791.123Sjmc To use object directories without using build.sh: 6801.1Sabs a) cd /usr/src ; make cleandir 6811.2Smrg b) Add "OBJMACHINE=yes" to /etc/mk.conf 6821.2Smrg c) Add "MKOBJDIRS=yes" to /etc/mk.conf 6831.1Sabs d) cd /usr/src ; make build 6841.2Smrg Note that running "make obj" in a directory will create 6851.2Smrg in obj.$MACHINE directory. 6861.1Sabs Build to a DESTDIR: 6871.123Sjmc This helps to keep old installed files (especially libraries) 6881.123Sjmc from interfering with the new build. 6891.123Sjmc To build to a DESTDIR with build.sh, use the "-D" option. 6901.123Sjmc To build to a DESTDIR without using build.sh, set the DESTDIR 6911.123Sjmc environment variable before running make build. It should be 6921.123Sjmc set to the pathname of an initially empty directory. 6931.123Sjmc Problems: if you do not use build.sh, you might need to 6941.123Sjmc update critical utilities without using DESTDIR since 6951.123Sjmc nothing is executed from what is installed in DESTDIR. 6961.123Sjmc (See critical utils, below.) 6971.1Sabs Build often: 6981.1Sabs This keeps critical utilities current enough to not choke 6991.1Sabs on any other part of the source tree that depends on up to 7001.123Sjmc date functionality. If you use build.sh, you should not have 7011.123Sjmc this problem. 7021.1Sabs 7031.1SabsWhat to do if things don't work: 7041.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 7051.1SabsWhen things don't work there is usually a few things that commonly 7061.1Sabsshould be done. 7071.1Sabs 1) make includes 7081.1Sabs This should be done automatically by make build. 7091.1Sabs 2) cd share/mk && make install 7101.1Sabs Again, automatically done by make build. 7111.1Sabs 7121.1SabsFailsafe rebuild of a small part of the tree: 7131.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 7141.1SabsTo make sure you rebuild something correctly you want to do 7151.1Sabssomething like the following: 7161.1Sabs 1) Make sure the includes and .mk files are up to date. 7171.1Sabs 2) Make sure any program used to build the particular 7181.1Sabs utility is up to date. (yacc, lex, etc...) 7191.1Sabs 3) cd ...path/to/util... 7201.1Sabs make cleandir 7211.1Sabs rm ...all obj directories... 7221.1Sabs make cleandir # yes, again 7231.1Sabs make obj 7241.1Sabs make depend && make 7251.1Sabs 7261.1SabsFailsafe rebuild of the entire tree: 7271.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 7281.1SabsIf you really want to make sure the source tree is clean and 7291.2Smrgready for a build try the following. Note that sourcing /etc/mk.conf 7301.2Smrg(a make(1) Makefile) in this manner is not right, and will not work 7311.2Smrgfor anyone who uses any make(1) features in /etc/mk.conf. 7321.1Sabs 7331.1Sabs---cut here--- 7341.1Sabs#!/bin/sh 7351.1Sabs. /etc/mk.conf 7361.1Sabs 7371.58Slukemif [ -z $NETBSDSRCDIR ] ; then 7381.58Slukem NETBSDSRCDIR=/usr/src 7391.1Sabsfi 7401.58Slukemif [ \! -d $NETBSDSRCDIR ] ; then 7411.1Sabs echo Unable to find sources 7421.1Sabs exit 1 7431.1Sabsfi 7441.58Slukemfind $NETBSDSRCDIR -name \*.o -o -name obj.\* -o -name obj -exec rm \{\} \; 7451.1Sabs 7461.1Sabsif [ -z $BSDOBJDIR ] ; then 7471.1Sabs BSDOBJDIR=/usr/obj 7481.1Sabsfi 7491.1Sabsif [ -d $BSDOBJDIR ] ; then 7501.1Sabs rm -rf $BSDOBJDIR 7511.1Sabsfi 7521.1Sabs 7531.58Slukemcd $NETBSDSRCDIR && make cleandir 7541.1Sabs 7551.1Sabs---cut here--- 7561.1Sabs 7571.1SabsCritical utilities: 7581.1Sabs^^^^^^^^^^^^^^^^^^^ 7591.1Sabs gnu/usr.bin/egcs 7601.3Sitojun usr.bin/compile_et 7611.1Sabs usr.bin/make 7621.1Sabs usr.bin/yacc 7631.1Sabs usr.bin/lex 7641.11Slukem usr.bin/xlint 7651.2Smrg usr.sbin/config 7661.1Sabs 7671.34SsimonbOther problems and possible solutions: 7681.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 7691.1SabsSymptom:Unreasonable compiler errors. 7701.1SabsFix: Rebuild gnu/usr.bin/egcs 7711.1Sabs 7721.1SabsSymptom:Complaints involving a Makefile. 7731.17SerhFix: Rebuild usr.bin/make: 7741.17Serh cd usr.bin/make && make && make install 7751.111Ssimonb Or, a failsafe method if that doesn't work: 7761.17Serh cd usr.bin/make && cc *.c */*.c -I . -o make && mv make /usr/bin 7771.17Serh 7781.1SabsFix: Make sure .mk files are up to date. 7791.1Sabs cd share/mk && make install 7801.2Smrg 7811.2SmrgSymptom:Kernel `config' fails to configure any kernel, including GENERIC. 7821.2SmrgFix: Rebuild usr.sbin/config 7831.1Sabs 7841.1SabsSymptom: 7851.1SabsFix: Rebuild usr.bin/yacc 7861.1Sabs 7871.1SabsSymptom: 7881.1SabsFix: Rebuild usr.bin/lex 7891.1Sabs 7901.1SabsSymptom: 7911.1SabsFix: rm /usr/lib/libbfd.a 7921.4Sitojun 7931.4SitojunSymptom:Obsolete intermediate files are used during compilation 7941.4SitojunFix: Try the following sequence of commands in the directory in question. 7951.4Sitojun make cleandir; rm `make print-objdir`; make cleandir; make obj 7961.4Sitojun (If you built the tree without "make obj" in the past, obsolete files 7971.4Sitojun may remain. The command tries to clean everything up) 7981.5Swiz 7991.5SwizSymptom:.../sysinst/run.c:xx: warning: initialization from incompatible pointer type 8001.5SwizFix: Rebuild and install usr.bin/menuc 8011.12Sitojun 8021.12SitojunSymptom:mklocale not found during build in share/locale/ctype 8031.12SitojunFix: Build and install usr.bin/mklocale 8041.13Sdogcow 8051.86SkleinkSymptom:undefined reference to `__assert13' or `__unsetenv13' 8061.13SdogcowFix: Rebuild and install lib/libc 8071.13Sdogcow 8081.19ScgdSymptom:usr.sbin/config fails to build. 8091.19ScgdFix: Try building with -DMAKE_BOOTSTRAP added to CFLAGS in Makefile. 8101.13Sdogcow 8111.19ScgdSymptom:undefined reference to `getprogname' or `setprogname' 8121.19ScgdFix: Rebuild and install lib/libc 8131.24Sabs 8141.24SabsSymptom:lint does not understand the '-X' option 8151.24SabsFix: May need to build & install libs with NOLINT=1 before rebuilding lint 816