Home | History | Annotate | Line # | Download | only in src
UPDATING revision 1.194
      1 $NetBSD: UPDATING,v 1.194 2009/03/29 18:33:56 mrg Exp $
      2 
      3 This file (UPDATING) is intended to be a brief reference to recent
      4 changes that might cause problems in the build process, and a guide for
      5 what to do if something doesn't work.
      6 
      7 For a more detailed description of the recommended way to build NetBSD
      8 using build.sh, see the BUILDING file.
      9 
     10 Note that much of the advice in this UPDATING file was written before
     11 build.sh existed.  Nevertheless, the advice here may be useful for
     12 working around specific problems with build.sh.
     13 
     14 See also: BUILDING, build.sh, Makefile.
     15 
     16 Recent changes:
     17 ^^^^^^^^^^^^^^^
     18 
     19 20090325:
     20 	The i386 port was switched to i486 default toolchain.  This requires
     21 	cleaning your src/tools directory and $TOOLDIR and rebuilding them.
     22 
     23 20090126:
     24 	The __posix_fadvise50 system call changed assembly stub type. You need to
     25 	'rm -f __posix_fadvise50.*' in the libc build directory to avoid using
     26 	the old assembly stub.
     27 
     28 20090202:
     29 	pkg_install now depends on the pkgdb cache for automatic conflict
     30 	detection.  It is recommented to rebuild the cache with
     31 	``pkg_admin rebuild''.
     32 
     33 20090110:
     34 	time_t and dev_t have been bumped to 64 bit quantities. To upgrade:
     35 	1. Make sure your kernel has COMPAT_50 in it. Build and install.
     36 	   This is needed even in the MODULAR kernel because there is
     37 	   conditionally compiled code in rtsock.c.
     38 	2. make sure build.sh completes and the binaries in a chroot work
     39 	   before installing.
     40 	3. If you don't use build.sh and you build directly to root, and
     41 	   your build breaks in the middle, don't despair. Make sure headers
     42 	   are installed properly, and start building libraries first libc
     43 	   and libutil, install them and then continue building all the
     44 	   libraries in src/lib and src/gnu/lib and install them. Once
     45 	   the new libraries are installed, you can restart the build.
     46 	4. If you compile packages and you notice link time warnings,
     47 	   rebuild the required packages to update their shared libraries.
     48 	   Any package you rebuild will require rebuilding all the packages
     49 	   that depend on it.
     50 	5. Next time you run pwd_mkdb with the new binary, the file
     51 	   will be upgraded and it will not be backwards compatible.
     52 	6. The utmpx/wtmpx files (/var/run/utmpx and /var/log/wtmpx, see
     53 	   lastlogx(5)) have been versioned, and there is a heuristic
     54 	   for utmp. You are better off removing the old files after
     55 	   upgrading.  The automated clearing of /var/run during
     56 	   boot, and the automated rotating of files in /var/log by
     57 	   newsyslog(8), may mean that you do not have to remove the
     58 	   files manually.
     59 	7. The optional accounting file (/var/account/acct, see
     60 	   accton(8)) has not been versioned, and will need to be
     61 	   removed.  The automatic rotation of the accounting file by
     62 	   /etc/daily limits the bad consequences of failure to remove
     63 	   the file.
     64 
     65 20081219:
     66 	config(1) has been updated, and one of the files it creates -
     67 	swapnetbsd.o - has changed format.  You need to rebuild config
     68 	(done automatically by build.sh) and then you need to rerun
     69 	config on all kernel configuration files before rebuilding those
     70 	kernels.
     71 
     72 20081205:
     73 	If you build with MKX11=no, you should remove /etc/rc.d/xdm and
     74 	/etc/rc.d/xfs from DESTDIR because those files were moved to the xetc
     75 	set and will appear as extra files for MKX11=no update builds.
     76 
     77 20081122:
     78 	On i386, various kernel options(4) in GENERIC including
     79 	file systems have been disabled and moved into kernel modules.
     80 	Before trying a new GENERIC kernel, you have to prepare the
     81 	following files as well as a new GENERIC kernel:
     82 
     83 	- build and install kernel modules from src/sys/modules
     84 
     85 	- install the latest bootloader, which will load a module
     86 	  for the file system from which the kernel is loaded automatically
     87 
     88 	If you have to load your kernel from a file system which is not of
     89 	the same type as the root file system, you have to load the necessary
     90 	file system module manually on the boot prompt or in the boot.cfg file.
     91 
     92 20080827:
     93 	If you built and installed a libc from sources between
     94 	2008/08/20 and 2008/08/26 you got a broken strtouq(3)
     95 	which results in false errors reported by lint(1).
     96 	Since this breaks the libc build itself, manual help is
     97 	needed -- lint must be disabled temporarily, e.g.:
     98 	  $ (cd lib/libc && make MKLINT=no dependall install)
     99 
    100 20080813:
    101 	MKDEBUG build was broken because the .depend files did not know
    102 	about .go files. You need to remove all .depend files and rebuild.
    103 
    104 20080731:
    105 	WAPBL (metadata journaling support) has been added, but at this
    106 	time isn't backwards compatible with pre-WAPBL aware kernels
    107 	and userland (fsck_ffs in particular).  Please make sure you
    108 	don't use a journaled filesystem with an older kernel/userland,
    109 	especially an uncleanly mounted journaled filesystem.  WAPBL
    110 	also requires the super block to be in the UFS2 format.  You
    111 	can use fsck_ffs -c 4 to update the superblock format.
    112 
    113 20080721:
    114 	Assembler warnings are now fatal if $WARNS>0 and $NOGCCERROR
    115 	isn't defined.
    116 
    117 20080531:
    118 	The ioctl number of DRVSUSPENDDEV command on /dev/drvctl changed 
    119 	from 125 (conflicted with DRVCTLCOMMAND) to 129. The drvctl(8)
    120 	utility needs to be rebuilt and reinstalled as older binaries
    121 	won't work correctly. The following sequence of commands:
    122 
    123 	  $ (cd sys/sys/ && nbmake-$arch includes)
    124 	  $ (cd sbin/drvctl/ && nbmake-$arch clean)
    125 	  $ (cd sbin/drvctl/ && nbmake-$arch all)
    126 
    127 	leaves new drvctl utility in sbin/drvctl build directory.
    128 
    129 20080503:
    130 	The <bsd.lib.mk> variable MKPRIVATELIB was renamed to LIBISPRIVATE.
    131 
    132 20080521:
    133 	For a while, unprivileged UPDATE builds would fail to
    134 	succeed at the checkflist stage, complaining that
    135 	${DESTDIR}/stand/<arch>/ did not exist.  A fix for this
    136 	problem was committed to share/mk/bsd.kmodule.mk, revision 1.9.
    137 	If you already hit this problem, update the .mk file,
    138 	remove ${DESTDIR}/stand/<arch>, and re-run the build.
    139 
    140 20080303:
    141 	Linker warnings are now fatal if $WARNS>0.
    142 
    143 20080126:
    144 	The posix_fadvise system call has been changed from an assembly
    145 	stub, to a c file that calls an assembly stub. You need to
    146 	'rm -f posix_fadvise.* .depend' in the libc build directory to
    147 	avoid using the old assembly stub.
    148 
    149 20071209:
    150 	The acpiec(4) driver has been split into two attachments. If you
    151 	get ACPI errors before the attachment, please update your kernel
    152 	configuration file appropriately or see GENERIC for more details.
    153 
    154 20071115:
    155 	The it(4) driver has been renamed to itesio(4) and the old port
    156 	argument specified in the kernel configuration file is not valid
    157 	anymore. The itesio(4) driver now uses the Super I/O address port
    158 	rather than the EC address port. Please update your kernel
    159 	configuration file appropriately or see GENERIC for more details.
    160 
    161 20071028:
    162 	The pccons(4) driver has been removed from the NetBSD/shark port.
    163 	You need to update any custom kernel configuration file you have
    164 	to remove any references to pccons (which includes removing the
    165 	now useless XSERVER option) and replace them with the correct
    166 	entries for the wscons driver.  See the GENERIC configuration file
    167 	for more details.
    168 
    169 20070913:
    170 	A latent bug in dhclient/dhcpd that caused it to be unable to
    171 	enumerate interfaces was fixed.  The bug began to cause
    172 	problems after 20070911 when the kernel's SIOCGIFCONF
    173 	implementation was repaired.  From 20070529 to 20070911 racoon
    174 	could not enumerate interfaces.  (These are noted because
    175 	normal kernel/userspace version matching hygiene is not
    176 	sufficient to avoid this problem.)  Ensure that both kernel
    177 	and userland are from after 20070913.
    178 
    179 20070703:
    180 	nbinstall has been renamed as it calls the target specific and
    181 	the logic to pass down STRIP from mk been removed.  This forces
    182 	a re-installation of tools.
    183 
    184 20070422:
    185 	The way OS emulations lookup filenames inside the emulation root
    186 	has been changed.  Rather than modify the pathname (and copy back
    187 	to userspace) namei() and lookup() directly check the emulation
    188 	root. One side effect is that absolute symlinks inside the emulated
    189 	root file system will be relative to that file system - unless they
    190 	start /../ this is useful when the emulated root is a real install
    191 	that has such links.
    192 	This might affect symlinks that have been added to reference outside
    193 	the emulated root.
    194 
    195 20070412:
    196 	The pckbc driver on sgimips IP32 has been removed. Use macekbc
    197 	instead. See the GENERIC32_IP3x kernel configuration for an
    198 	example.
    199 
    200 20070319:
    201         src/lib/libc/Makefile revision 1.129 broke libc and ld.elf_so
    202         on many platforms due to incorrect flags settings.  If you
    203         updated and built after about 20070315, do "nbmake-$arch
    204 	cleandir" in src/lib/libc and src/libexec/ld.elf_so to force a
    205 	rebuild of object files that might have been built
    206 	incorrectly, and ensure that you have at least
    207 	src/lib/libc/Makefile 1.130.
    208 
    209 20070210: 
    210         src/sys/sys/{sa.h,savar.h} were removed.
    211           find ${OBJDIR} \( -name .depend -o -name '*.d' \) -print \
    212               | xargs egrep -l '/sa.h|/savar.h' | xargs rm
    213         will allow dependencies on those files to get get rebuilt
    214 
    215 20070209:
    216         The threading model was changed when the newlock2 branch
    217         was merged to NetBSD-current.  If you boot with a new
    218         kernel (version 4.99.10), then you also need a new pthread
    219         library (/usr/lib/libpthread.so.0.7).  If you boot with
    220         an old kernel, then you need the old pthread library
    221         (/usr/lib/libpthread.so.0.6).  Provided you keep the kernel and
    222         the pthread library in sync, old threaded applications should
    223         continue to work with an old or new kernel.  Note that named(8)
    224 	is the only threaded application in the base system.
    225 
    226 20061214:
    227 	Following the move of string_to_flags() and flags_to_string()
    228 	from the bin/ls/ sources to libutil, users doing UPDATE builds
    229 	will need to do a "make cleandir" in
    230 		tools/mtree/, tools/makefs/, tools/binstall/, tools/pax/,
    231 		bin/pax/, bin/ls/, usr.sbin/mtree/, usr.sbin/makefs/,
    232 		usr.bin/xinstall/, libexec/ftpd/, rescue/, as well
    233 		as the installation images in distrib/
    234 	in order to excise stale references to the old stat_flags.h header
    235 	file in the ls sources -- stat_flags.h has been removed.
    236 
    237 20061108:
    238 	The configure script used in the src/tools/gcc compiler has been
    239 	changed to indicate that our libc has ssp support built-in and
    240 	does not depend on -lssp and -lssp-nonshared. You'll need to
    241 	make clean in src/tools/gcc first to rebuild the compiler.
    242 
    243 20061009:
    244 	The sysctl variables net.inet{,6}.tcp{,6}.newreno are no longer
    245 	available. Use net.inet{,6}.tcp{,6}.congctl.selected instead.
    246 
    247 20060814:
    248 	The vt, vidcconsole, kbd, and rpckbd drivers on acorn32 have been
    249 	withdrawn.  Use vidcvideo and pckbd instead.  See the GENERIC
    250 	kernel configuration for an example.  X servers from the last
    251 	few years should cope.
    252 
    253 20060703:
    254 	MPACPI is no more. We always configure PCI interrupts using ACPI
    255 	if we have an ACPI kernel. The option MPACPI_SCANPCI has been renamed
    256 	to ACPI_SCANPCI. Thanks to work from fvdl.
    257 
    258 20060627:
    259 	socket(2) has changed, and its system call has been versioned.
    260 	For userlands with the old version of socket(2), make sure that
    261 	your kernel has 'options COMPAT_30' set, or else 'bad system call'
    262 	errors will result.
    263 
    264 Hints for a more successful build:
    265 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    266     Use build.sh, but do not use its "expert mode":
    267 	This will automatically build the tools in the
    268 	   correct order, and it will keep the tools and the
    269 	   new build products from interfering with the running
    270 	   system.  This will allow you to ignore most of the
    271 	   other advice in this file.
    272     Build a new kernel first:
    273 	This makes sure that any new system calls or features
    274 	   expected by the new userland will be present.  This
    275 	   helps to avoid critical errors when upgrading.
    276     Use object directories:
    277 	This helps to keep stale object
    278 	   files from polluting the build if a Makefile "forgets"
    279 	   about one.  It also makes it easier to clean up after
    280 	   a build.  It's also necessary if you want to use the
    281 	   same source tree for multiple machines.
    282 	   To use object directories with build.sh:
    283 	    a) invoke build.sh with the "-M" or "-O" options.
    284 	   To use object directories without using build.sh:
    285 	    a) cd /usr/src ; make cleandir
    286 	    b) Add "OBJMACHINE=yes" to /etc/mk.conf
    287 	    c) Add "MKOBJDIRS=yes" to /etc/mk.conf
    288 	    d) cd /usr/src ; make build
    289 	   Note that running "make obj" in a directory will create
    290 	   in obj.$MACHINE directory.
    291     Build to a DESTDIR:
    292 	This helps to keep old installed files (especially libraries)
    293 	   from interfering with the new build.
    294 	   To build to a DESTDIR with build.sh, use the "-D" option.
    295 	   To build to a DESTDIR without using build.sh, set the DESTDIR
    296 	   environment variable before running make build.  It should be
    297 	   set to the pathname of an initially empty directory.
    298 	   Problems: if you do not use build.sh, you might need to
    299 		update critical utilities without using DESTDIR since
    300 		nothing is executed from what is installed in DESTDIR.
    301 		(See critical utils, below.)
    302     Build often:
    303 	This keeps critical utilities current enough to not choke
    304 	on any other part of the source tree that depends on up to
    305 	date functionality.  If you use build.sh, you should not have
    306 	this problem.
    307  
    308 What to do if things don't work:
    309 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    310 When things don't work there is usually a few things that commonly
    311 should be done.
    312     1)	make includes
    313 	This should be done automatically by make build.
    314     2)  cd share/mk && make install
    315 	Again, automatically done by make build.
    316 
    317 Failsafe rebuild of a small part of the tree:
    318 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    319 To make sure you rebuild something correctly you want to do
    320 something like the following:
    321     1)  Make sure the includes and .mk files are up to date.
    322     2)  Make sure any program used to build the particular
    323 	utility is up to date.  (yacc, lex, etc...)
    324     3)  cd ...path/to/util...
    325 	make cleandir
    326 	rm ...all obj directories...
    327 	make cleandir			# yes, again
    328 	make obj
    329 	make depend && make
    330 
    331 Failsafe rebuild of the entire tree:
    332 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    333 If you really want to make sure the source tree is clean and
    334 ready for a build try the following.  Note that sourcing /etc/mk.conf
    335 (a make(1) Makefile) in this manner is not right, and will not work
    336 for anyone who uses any make(1) features in /etc/mk.conf.
    337 
    338 ---cut here---
    339 #!/bin/sh
    340 . /etc/mk.conf
    341 
    342 if [ -z $NETBSDSRCDIR ] ; then
    343     NETBSDSRCDIR=/usr/src
    344 fi
    345 if [ \! -d $NETBSDSRCDIR ] ; then
    346     echo Unable to find sources
    347     exit 1
    348 fi
    349 find $NETBSDSRCDIR -name \*.o -o -name obj.\* -o -name obj -exec rm \{\} \;
    350 
    351 if [ -z $BSDOBJDIR ] ; then
    352     BSDOBJDIR=/usr/obj
    353 fi
    354 if [ -d $BSDOBJDIR ] ; then
    355     rm -rf $BSDOBJDIR
    356 fi
    357 
    358 cd $NETBSDSRCDIR && make cleandir
    359 
    360 ---cut here---
    361 
    362 Critical utilities:
    363 ^^^^^^^^^^^^^^^^^^^
    364 	usr.bin/compile_et
    365 	usr.bin/make
    366 	usr.bin/yacc
    367 	usr.bin/lex
    368 	usr.bin/xlint
    369 	usr.bin/config
    370 
    371 Other problems and possible solutions:
    372 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    373 Symptom:Complaints involving a Makefile.
    374 Fix:	Rebuild usr.bin/make:
    375 	cd usr.bin/make && make && make install
    376 	Or, a failsafe method if that doesn't work:
    377 	cd usr.bin/make && cc *.c */*.c -I . -o make && mv make /usr/bin
    378 
    379 Fix:	Make sure .mk files are up to date.
    380 	cd share/mk && make install
    381 
    382 Symptom:Kernel `config' fails to configure any kernel, including GENERIC.
    383 Fix:	Rebuild usr.bin/config
    384 
    385 Symptom:
    386 Fix:	Rebuild usr.bin/yacc
    387 
    388 Symptom:
    389 Fix:	Rebuild usr.bin/lex
    390 
    391 Symptom:
    392 Fix:	rm /usr/lib/libbfd.a
    393 
    394 Symptom:Obsolete intermediate files are used during compilation
    395 Fix:	Try the following sequence of commands in the directory in question.
    396 	make cleandir; rm `make print-objdir`; make cleandir; make obj
    397 	(If you built the tree without "make obj" in the past, obsolete files
    398 	may remain.  The command tries to clean everything up)
    399 
    400 Symptom:.../sysinst/run.c:xx: warning: initialization from incompatible pointer type
    401 Fix:	Rebuild and install usr.bin/menuc
    402 
    403 Symptom:mklocale not found during build in share/locale/ctype
    404 Fix:	Build and install usr.bin/mklocale
    405 
    406 Symptom:undefined reference to `__assert13' or `__unsetenv13'
    407 Fix:    Rebuild and install lib/libc
    408 
    409 Symptom:usr.bin/config fails to build.
    410 Fix:	Try building with -DMAKE_BOOTSTRAP added to CFLAGS in Makefile.
    411 
    412 Symptom:undefined reference to `getprogname' or `setprogname'
    413 Fix:    Rebuild and install lib/libc
    414 
    415 Symptom:lint does not understand the '-X' option
    416 Fix:    May need to build & install libs with NOLINT=1 before rebuilding lint
    417