The NetBSD Project

CVS log for src/UPDATING

[BACK] Up to [cvs.NetBSD.org] / src

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.379: download - view: text, markup, annotated - select for diffs
Sun Apr 27 23:30:39 2025 UTC (7 days, 5 hours ago) by kre
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.378: preferred, colored
Changes since revision 1.378: +3 -3 lines

Correct a couple of typos.

Revision 1.378: download - view: text, markup, annotated - select for diffs
Sun Apr 27 22:03:22 2025 UTC (7 days, 6 hours ago) by pgoyette
Branches: MAIN
Diff to: previous 1.377: preferred, colored
Changes since revision 1.377: +12 -1 lines
Mention new KERNEL_DIR stuff

Revision 1.377: download - view: text, markup, annotated - select for diffs
Sun Apr 13 17:23:06 2025 UTC (3 weeks ago) by riastradh
Branches: MAIN
Diff to: previous 1.376: preferred, colored
Changes since revision 1.376: +4 -1 lines
bsd.lib.mk: Redo rev. 1.418 more selectively.

Previously, in rev. 1.418, I had changed:

 .if ${LIBISPRIVATE} != "no"
...
 . if defined(NOSTATICLIB) && ${MKPICLIB} != "no"
 MAKESTATICLIB?=	no
 . elif ${LIBISPRIVATE} != "pic"
 MKPIC:=		no
 . endif
...
 .endif
...
-.if ${LIBISPRIVATE} == "pic"
+.if ${MKPIC} != "no"
 CFLAGS+=        -fPIC
 AFLAGS+=        -fPIC
 .endif

This was an attempt to obviate the need for grody conditionals in
private shared libraries like libuv:

.if ${MACHINE} == "sun2"
LIBISPRIVATE=yes
.else
LIBISPRIVATE=pic
.endif

This is wrong, after all, because you can also do MKPIC=no on
non-sun2 platforms if you really want a static build, and it's a mess
to have to write it out in every case.

My theory in making that change was that:

(a) on MKPIC=yes platforms in makefiles without LIBISPRIVATE=yes,
    we're building with -fPIC anyway, so ${MKPIC} != no is right;

(b) on MKPIC=yes platforms in makefiles with LIBISPRIVATE=yes, we
    shouldn't build with -fPIC and the conditional above sets
    MKPIC=no in that case, so ${MKPIC} != no is right;

(c) on MKPIC=no platforms (mainly sun2), no matter what LIBISPRIVATE
    is set to, we shouldn't build with -fPIC, so ${MKPIC} != no is
    right.

But (a) is wrong, because we use the same makefile to build .pico and
.o objects from which we link (PIC) .so and (non-PIC) .a libraries,
and the distinction is made not in CFLAGS/AFLAGS but in PICFLAGS and
CSHLIBFLAGS.

So, to obviate the need for the .if sun2 conditionals around
LIBISPRIVATE=pic, but avoid breaking everything _other_ than
LIBISPRIVATE=pic, let's make the addition of -fPIC to CFLAGS/AFLAGS
conditional on _both_ LIBISPRIVATE=pic _and_ MKPIC=yes.

PR port-mips/59064: jemalloc switch to 5.3 broke userland

Revision 1.376: download - view: text, markup, annotated - select for diffs
Thu Feb 6 19:58:50 2025 UTC (2 months, 3 weeks ago) by palle
Branches: MAIN
Diff to: previous 1.375: preferred, colored
Changes since revision 1.375: +2 -1 lines
Add a newline to improve readability

Revision 1.375: download - view: text, markup, annotated - select for diffs
Fri Jan 31 22:33:30 2025 UTC (3 months ago) by christos
Branches: MAIN
Diff to: previous 1.374: preferred, colored
Changes since revision 1.374: +3 -1 lines
clean libc for jemalloc

Revision 1.374: download - view: text, markup, annotated - select for diffs
Sat Nov 23 14:51:58 2024 UTC (5 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.373: preferred, colored
Changes since revision 1.373: +8 -1 lines
UPDATING: Note compat objdirs too.

Revision 1.373: download - view: text, markup, annotated - select for diffs
Sat Nov 23 02:26:06 2024 UTC (5 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.372: preferred, colored
Changes since revision 1.372: +3 -3 lines
UPDATING: I accidentally a word in previous.

Revision 1.372: download - view: text, markup, annotated - select for diffs
Fri Nov 22 16:07:32 2024 UTC (5 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.371: preferred, colored
Changes since revision 1.371: +5 -4 lines
UPDATING: Note xz (liblzma) needs clean too for -fvisibility=hidden.

Revision 1.371: download - view: text, markup, annotated - select for diffs
Fri Nov 22 15:12:57 2024 UTC (5 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.370: preferred, colored
Changes since revision 1.370: +4 -3 lines
UPDATING: Note that libmagic requires clean too.

Revision 1.370: download - view: text, markup, annotated - select for diffs
Fri Nov 22 14:54:36 2024 UTC (5 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.369: preferred, colored
Changes since revision 1.369: +2 -2 lines
UPDATING: Really only need make clean, not cleandir, for libarchive.

*.d and .depend files are still fine, just the .so that needs to be
relinked.

Revision 1.369: download - view: text, markup, annotated - select for diffs
Fri Nov 22 14:53:57 2024 UTC (5 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.368: preferred, colored
Changes since revision 1.368: +2 -2 lines
UPDATING: Just need to clean libarchive/lib, not libarchive/bin too.

Revision 1.368: download - view: text, markup, annotated - select for diffs
Fri Nov 22 14:53:12 2024 UTC (5 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.367: preferred, colored
Changes since revision 1.367: +6 -1 lines
UPDATING: Note libarchive requires clean.

Revision 1.367: download - view: text, markup, annotated - select for diffs
Fri Nov 22 14:30:28 2024 UTC (5 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.366: preferred, colored
Changes since revision 1.366: +11 -1 lines
UPDATING: Note stale .actsym files and suggest workaround.

Revision 1.366: download - view: text, markup, annotated - select for diffs
Mon Nov 11 13:58:56 2024 UTC (5 months, 3 weeks ago) by riastradh
Branches: MAIN
Diff to: previous 1.365: preferred, colored
Changes since revision 1.365: +16 -6 lines
UPDATING: Expand list of deletions for zstd mess.

1. Don't use $ for variables -- if you copy & paste, e.g.,

	rm -rf $DESTDIR/usr/lib/libarchive*

   and DESTDIR is not actually defined in the environment, you might
   be an unhappy camper.  (Resolvable by using /bin/pax to extract
   the library from base.tgz but not great!)

2. Nix compat libraries and libmagic too.

3. Sort for easier maintenance.

Revision 1.365: download - view: text, markup, annotated - select for diffs
Sun Nov 10 13:58:59 2024 UTC (5 months, 3 weeks ago) by martin
Branches: MAIN
Diff to: previous 1.364: preferred, colored
Changes since revision 1.364: +2 -1 lines
one more update for zstd

Revision 1.364: download - view: text, markup, annotated - select for diffs
Sun Nov 10 13:40:00 2024 UTC (5 months, 3 weeks ago) by martin
Branches: MAIN
Diff to: previous 1.363: preferred, colored
Changes since revision 1.363: +2 -1 lines
Extend the zstd entry: need to clean DESTDIR

Revision 1.363: download - view: text, markup, annotated - select for diffs
Tue Nov 5 06:54:46 2024 UTC (5 months, 4 weeks ago) by martin
Branches: MAIN
Diff to: previous 1.362: preferred, colored
Changes since revision 1.362: +8 -1 lines
zstd changes break update builds, document workaround

Revision 1.362: download - view: text, markup, annotated - select for diffs
Wed Oct 16 11:45:37 2024 UTC (6 months, 2 weeks ago) by martin
Branches: MAIN
Diff to: previous 1.361: preferred, colored
Changes since revision 1.361: +1 -7 lines
Revert previous - the build is broken, unrelated to update builds.

Revision 1.361: download - view: text, markup, annotated - select for diffs
Wed Oct 16 09:26:39 2024 UTC (6 months, 2 weeks ago) by martin
Branches: MAIN
Diff to: previous 1.360: preferred, colored
Changes since revision 1.360: +7 -1 lines
OpenSSL changes require a full rebuild

Revision 1.360: download - view: text, markup, annotated - select for diffs
Thu Sep 26 20:08:44 2024 UTC (7 months, 1 week ago) by wiz
Branches: MAIN
Diff to: previous 1.359: preferred, colored
Changes since revision 1.359: +8 -1 lines
UPDATING: note problem with malloc_np.h

Revision 1.359: download - view: text, markup, annotated - select for diffs
Tue Sep 24 14:04:49 2024 UTC (7 months, 1 week ago) by martin
Branches: MAIN
Diff to: previous 1.358: preferred, colored
Changes since revision 1.358: +6 -3 lines
Ammend the libc/jemalloc entry with hints for architectures with
compat libraries.

Revision 1.358: download - view: text, markup, annotated - select for diffs
Tue Sep 24 13:59:30 2024 UTC (7 months, 1 week ago) by martin
Branches: MAIN
Diff to: previous 1.357: preferred, colored
Changes since revision 1.357: +7 -1 lines
Note update build issues with jemalloc vs. jemalloc.old

Revision 1.357: download - view: text, markup, annotated - select for diffs
Sun Aug 18 00:27:18 2024 UTC (8 months, 2 weeks ago) by christos
Branches: MAIN
Diff to: previous 1.356: preferred, colored
Changes since revision 1.356: +5 -1 lines
mention awk directory issue

Revision 1.356: download - view: text, markup, annotated - select for diffs
Thu Aug 15 10:48:42 2024 UTC (8 months, 2 weeks ago) by riastradh
Branches: MAIN
Diff to: previous 1.355: preferred, colored
Changes since revision 1.355: +2 -2 lines
UPDATING: Nix trailing whitespace.

Revision 1.355: download - view: text, markup, annotated - select for diffs
Tue Aug 13 09:49:05 2024 UTC (8 months, 3 weeks ago) by martin
Branches: MAIN
Diff to: previous 1.354: preferred, colored
Changes since revision 1.354: +6 -1 lines
Note gdb switch may require removing tool gdb build dirs.

Revision 1.354: download - view: text, markup, annotated - select for diffs
Mon Jul 1 09:44:48 2024 UTC (10 months ago) by martin
Branches: MAIN
Diff to: previous 1.353: preferred, colored
Changes since revision 1.353: +2 -2 lines
Fix date for binutils vs. binutils.old entry

Revision 1.353: download - view: text, markup, annotated - select for diffs
Mon Jul 1 09:33:14 2024 UTC (10 months ago) by martin
Branches: MAIN
Diff to: previous 1.352: preferred, colored
Changes since revision 1.352: +5 -1 lines
Note update build lossage for binutils vs. binutils.old

Revision 1.352: download - view: text, markup, annotated - select for diffs
Mon Jun 10 08:04:44 2024 UTC (10 months, 3 weeks ago) by kre
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630, perseant-exfatfs-base, perseant-exfatfs
Diff to: previous 1.351: preferred, colored
Changes since revision 1.351: +6 -1 lines

Note need to deal with old libarchive.so files in cdrom images when doing
an update build.

Revision 1.351: download - view: text, markup, annotated - select for diffs
Mon Jun 10 01:53:35 2024 UTC (10 months, 3 weeks ago) by gutteridge
Branches: MAIN
Diff to: previous 1.350: preferred, colored
Changes since revision 1.350: +2 -2 lines
UPDATING: fix an old typo

Revision 1.350: download - view: text, markup, annotated - select for diffs
Sun May 5 02:50:11 2024 UTC (12 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.349: preferred, colored
Changes since revision 1.349: +5 -1 lines
libm: New s_rintl.S for x86.

Prompted by PR lib/58054.

Revision 1.349: download - view: text, markup, annotated - select for diffs
Tue Apr 23 03:25:39 2024 UTC (12 months, 1 week ago) by maya
Branches: MAIN
Diff to: previous 1.348: preferred, colored
Changes since revision 1.348: +4 -1 lines
Switch to mesa 21

Works well enough for me on various GPUs, let's try it out. Can be easily
reverted if anyone encounters major issues.

Revision 1.348: download - view: text, markup, annotated - select for diffs
Sat Apr 20 14:06:47 2024 UTC (12 months, 2 weeks ago) by rillig
Branches: MAIN
Diff to: previous 1.347: preferred, colored
Changes since revision 1.347: +3 -698 lines
UPDATING: remove not-so-recent entries

Revision 1.347: download - view: text, markup, annotated - select for diffs
Thu Apr 11 06:20:29 2024 UTC (12 months, 3 weeks ago) by nia
Branches: MAIN
Diff to: previous 1.346: preferred, colored
Changes since revision 1.346: +5 -1 lines
UPDATING: note new sets

Revision 1.346: download - view: text, markup, annotated - select for diffs
Thu Apr 11 02:15:39 2024 UTC (12 months, 3 weeks ago) by riastradh
Branches: MAIN
Diff to: previous 1.345: preferred, colored
Changes since revision 1.345: +6 -1 lines
Nix /var/run/named entry from set lists.

Normally we don't do this, but /var/run/named is

(a) used by running daemons, so postinstall should not delete it, and
(b) deleted at boot-time anyway by /etc/rc.d/mountcritlocal, so
there's no sense in having it checked by mtree.

However, this means that update builds need manual intervention to
delete $DESTDIR/var/run/named or else checkflist will fail, so add a
note to UPDATING about this.

Do the same with /var/run/lwresd just in case.

PR misc/57877

Revision 1.345: download - view: text, markup, annotated - select for diffs
Fri Feb 9 22:08:30 2024 UTC (14 months, 3 weeks ago) by andvar
Branches: MAIN
Diff to: previous 1.344: preferred, colored
Changes since revision 1.344: +2 -2 lines
fix spelling mistakes, mainly in comments and log messages.

Revision 1.344: download - view: text, markup, annotated - select for diffs
Sun Sep 24 16:33:41 2023 UTC (19 months, 1 week ago) by gutteridge
Branches: MAIN
Diff to: previous 1.343: preferred, colored
Changes since revision 1.343: +3 -3 lines
UPDATING: fix a couple of spelling mistakes

Revision 1.343: download - view: text, markup, annotated - select for diffs
Mon Aug 28 22:25:49 2023 UTC (20 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.342: preferred, colored
Changes since revision 1.342: +16 -1 lines
certctl(8): Avoid clobbering prepopulated /etc/openssl/certs.

Also avoid clobbering some other edge cases like symlinks or
non-directories there.

This way, we have the following transitions on system updates:

- If /etc/openssl/certs is empty (as in default NetBSD<10 installs):
  quietly populated on rehash.

- If /etc/openssl/certs is nonempty (you've added things to it,
  e.g. by hand or with mozilla-rootcerts) and has never been managed
  by certctl(8): left alone on rehash, with an error message to
  explain what you need to do.

- If /etc/openssl/certs has been managed by certctl(8): quietly
  updated on rehash.

Note: This means current installations made since certctl(8) was
added will be treated like /etc/openssl/certs is nonempty and has
never been managed by certctl(8).  To work around this, you can just
delete /etc/openssl/certs and rerun `certctl rehash'.

Revision 1.342: download - view: text, markup, annotated - select for diffs
Wed Jul 19 17:49:40 2023 UTC (21 months, 2 weeks ago) by martin
Branches: MAIN
Diff to: previous 1.341: preferred, colored
Changes since revision 1.341: +7 -1 lines
Warn to clean gcc objectdirs for updated compiler.

Revision 1.341: download - view: text, markup, annotated - select for diffs
Tue Jul 18 16:59:57 2023 UTC (21 months, 2 weeks ago) by lukem
Branches: MAIN
Diff to: previous 1.340: preferred, colored
Changes since revision 1.340: +5 -1 lines
build.sh: use mk.conf (if present) as MAKECONF

Set MAKECONF to mk.conf in the same directory as build.sh
(i.e., the top of the source tree) if mk.conf is present.
This means unprivileged users can benefit from mk.conf(5)
semantics without write privileges to /etc/mk.conf, and
also simplifies per-source-directory configuration.

Fail early if $MAKECONF is empty, since build.sh will fail
anyway after rebuilding nbmake.

Ensure that the computed MAKECONF isn't empty, and then
always set MAKECONF in the makewrapper (nbmake-$MACHINE).

Improve some formatting consistency in BUILDING.mdoc,
(even if BUILDING is generated without markup).

Revision 1.340: download - view: text, markup, annotated - select for diffs
Tue Jul 11 15:05:17 2023 UTC (21 months, 3 weeks ago) by martin
Branches: MAIN
Diff to: previous 1.339: preferred, colored
Changes since revision 1.339: +7 -1 lines
Belatedly add an entry for the openssl version switch - it may cause
subtle test failures after update builds (files with same installed
name created from different sources depending on openssl version).

Revision 1.339: download - view: text, markup, annotated - select for diffs
Sun Jun 4 16:14:59 2023 UTC (23 months ago) by martin
Branches: MAIN
Diff to: previous 1.338: preferred, colored
Changes since revision 1.338: +6 -1 lines
Note kernel build lossage in an unsupported build configuration

Revision 1.338: download - view: text, markup, annotated - select for diffs
Tue May 23 20:26:52 2023 UTC (23 months, 1 week ago) by lukem
Branches: MAIN
Diff to: previous 1.337: preferred, colored
Changes since revision 1.337: +6 -2 lines
ctfmerge tool fixes might need a clean tools build

Revision 1.337: download - view: text, markup, annotated - select for diffs
Thu Mar 23 07:15:08 2023 UTC (2 years, 1 month ago) by mrg
Branches: MAIN
Diff to: previous 1.336: preferred, colored
Changes since revision 1.336: +7 -1 lines
add a note about how to fix missing ./usr/lib/libisns* files.

Revision 1.336: download - view: text, markup, annotated - select for diffs
Mon Jan 16 08:49:55 2023 UTC (2 years, 3 months ago) by martin
Branches: MAIN
Diff to: previous 1.335: preferred, colored
Changes since revision 1.335: +7 -1 lines
Note dependency of new binutils on new ld.elf_so for unsupported
DESTDIR=/ builds.

Revision 1.335: download - view: text, markup, annotated - select for diffs
Thu Nov 17 06:40:38 2022 UTC (2 years, 5 months ago) by chs
Branches: MAIN
CVS tags: netbsd-10-base, netbsd-10-1-RELEASE, netbsd-10-0-RELEASE, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1, netbsd-10
Diff to: previous 1.334: preferred, colored
Changes since revision 1.334: +28 -1 lines
Restore backward compatibility of UFS2 with previous NetBSD releases by
disabling support in UFS2 for extended attributes (including ACLs).
Add a new variant of UFS2 called "UFS2ea" that does support extended attributes.
Add new	fsck_ffs operations "-c	ea" and	"-c no-ea" to convert file systems
from UFS2 to UFS2ea and	vice-versa (both of which delete all existing extended
attributes in the process).

Revision 1.334: download - view: text, markup, annotated - select for diffs
Sat Nov 12 02:20:15 2022 UTC (2 years, 5 months ago) by mrg
Branches: MAIN
Diff to: previous 1.333: preferred, colored
Changes since revision 1.333: +12 -1 lines
updates for libdrm 2.4.114.

unfortunately, the i915 ioctls are no longer handled by kdump/ktruss
as the new one conflicts with base.  this needs a clean build in these
dirs (and rescue).  the radeon ioctls have been enabled instead.

Revision 1.333: download - view: text, markup, annotated - select for diffs
Sat Oct 8 08:21:56 2022 UTC (2 years, 6 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.332: preferred, colored
Changes since revision 1.332: +27 -7 lines
UPDATING: More details on bootloader update needed for >=9.99.100.

Revision 1.332: download - view: text, markup, annotated - select for diffs
Wed Sep 21 22:01:56 2022 UTC (2 years, 7 months ago) by gutteridge
Branches: MAIN
Diff to: previous 1.331: preferred, colored
Changes since revision 1.331: +3 -3 lines
UPDATING: a couple of pedantic edits

Revision 1.331: download - view: text, markup, annotated - select for diffs
Wed Sep 21 14:32:26 2022 UTC (2 years, 7 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.330: preferred, colored
Changes since revision 1.330: +10 -1 lines
Note bootloader changes needed for 9.99.100.

Revision 1.330: download - view: text, markup, annotated - select for diffs
Sun Aug 21 07:15:28 2022 UTC (2 years, 8 months ago) by lukem
Branches: MAIN
Diff to: previous 1.329: preferred, colored
Changes since revision 1.329: +5 -1 lines
UPDATING: extsrc deprecated

Revision 1.329: download - view: text, markup, annotated - select for diffs
Fri Jul 15 05:26:08 2022 UTC (2 years, 9 months ago) by mrg
Branches: MAIN
Diff to: previous 1.328: preferred, colored
Changes since revision 1.328: +5 -1 lines
add a note about xorg-server possibly breaking builds.

Revision 1.328: download - view: text, markup, annotated - select for diffs
Tue Jun 28 08:03:49 2022 UTC (2 years, 10 months ago) by martin
Branches: MAIN
Diff to: previous 1.327: preferred, colored
Changes since revision 1.327: +5 -1 lines
Note that src/games/robots now nees a clean rebuild.

Revision 1.327: download - view: text, markup, annotated - select for diffs
Tue Dec 7 21:45:31 2021 UTC (3 years, 4 months ago) by andvar
Branches: MAIN
Diff to: previous 1.326: preferred, colored
Changes since revision 1.326: +2 -2 lines
s/dissallow/disallow/

Revision 1.326: download - view: text, markup, annotated - select for diffs
Tue Dec 7 21:37:36 2021 UTC (3 years, 4 months ago) by andvar
Branches: MAIN
Diff to: previous 1.325: preferred, colored
Changes since revision 1.325: +2 -2 lines
fix various typos, mainly in comments.

Revision 1.325: download - view: text, markup, annotated - select for diffs
Mon Nov 22 12:30:34 2021 UTC (3 years, 5 months ago) by martin
Branches: MAIN
Diff to: previous 1.324: preferred, colored
Changes since revision 1.324: +2 -2 lines
Fix typo. Pointed out by bch - thanks!

Revision 1.324: download - view: text, markup, annotated - select for diffs
Sat Nov 20 16:18:18 2021 UTC (3 years, 5 months ago) by martin
Branches: MAIN
Diff to: previous 1.323: preferred, colored
Changes since revision 1.323: +5 -1 lines
Note that USE_FORT changes for xorg require a clean build.

Revision 1.323: download - view: text, markup, annotated - select for diffs
Sun Nov 14 11:16:28 2021 UTC (3 years, 5 months ago) by nia
Branches: MAIN
Diff to: previous 1.322: preferred, colored
Changes since revision 1.322: +6 -2 lines
UPDATING: note dts update causing things to be renumbered

Revision 1.322: download - view: text, markup, annotated - select for diffs
Thu Oct 14 15:40:00 2021 UTC (3 years, 6 months ago) by martin
Branches: MAIN
Diff to: previous 1.321: preferred, colored
Changes since revision 1.321: +4 -1 lines
aarch64 needs a clean build after MKRELRO default has changed.

Revision 1.321: download - view: text, markup, annotated - select for diffs
Sat Sep 18 03:05:19 2021 UTC (3 years, 7 months ago) by christos
Branches: MAIN
Diff to: previous 1.320: preferred, colored
Changes since revision 1.320: +6 -1 lines
Change the default for ACLs to be posix1e instead of nfsv4 to match FreeBSD.
Requested by chuq.

Revision 1.320: download - view: text, markup, annotated - select for diffs
Sat Aug 21 09:59:45 2021 UTC (3 years, 8 months ago) by andvar
Branches: MAIN
Diff to: previous 1.319: preferred, colored
Changes since revision 1.319: +4 -4 lines
s/helt/held+s/eroneously/erroneously/+s/splitted/split/+s/recommented/recommended/

Revision 1.319: download - view: text, markup, annotated - select for diffs
Sun Jul 11 21:58:52 2021 UTC (3 years, 9 months ago) by mrg
Branches: MAIN
Diff to: previous 1.318: preferred, colored
Changes since revision 1.318: +5 -1 lines
note that new GMP may require some cleaning.

Revision 1.318: download - view: text, markup, annotated - select for diffs
Sat Apr 17 04:08:32 2021 UTC (4 years ago) by mrg
Branches: MAIN
CVS tags: cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Diff to: previous 1.317: preferred, colored
Changes since revision 1.317: +6 -1 lines
add a note about potential GCC 9->10 build failures

Revision 1.317: download - view: text, markup, annotated - select for diffs
Sat Jan 9 20:51:08 2021 UTC (4 years, 3 months ago) by rillig
Branches: MAIN
Diff to: previous 1.316: preferred, colored
Changes since revision 1.316: +5 -1 lines
UPDATING: lint1/ops.c may require OBJDIR to be cleaned

https://mail-index.netbsd.org/source-changes-d/2021/01/09/msg013098.html

Revision 1.316: download - view: text, markup, annotated - select for diffs
Sat Oct 17 07:41:25 2020 UTC (4 years, 6 months ago) by mrg
Branches: MAIN
Diff to: previous 1.315: preferred, colored
Changes since revision 1.315: +5 -1 lines
note about mips kernel modules breaking update builds

Revision 1.315: download - view: text, markup, annotated - select for diffs
Sat Sep 26 08:02:35 2020 UTC (4 years, 7 months ago) by mrg
Branches: MAIN
Diff to: previous 1.314: preferred, colored
Changes since revision 1.314: +5 -1 lines
note mpfr needs a cleaning.

Revision 1.314: download - view: text, markup, annotated - select for diffs
Sat Sep 12 08:31:39 2020 UTC (4 years, 7 months ago) by mrg
Branches: MAIN
Diff to: previous 1.313: preferred, colored
Changes since revision 1.313: +5 -1 lines
switch to GCC 9 on arm and x86.

note GCC 8.3, 8.4 and 9.3 import dates.  add an UPDATING entry.

Revision 1.313: download - view: text, markup, annotated - select for diffs
Mon Sep 7 10:19:02 2020 UTC (4 years, 7 months ago) by mrg
Branches: MAIN
Diff to: previous 1.312: preferred, colored
Changes since revision 1.312: +5 -1 lines
switch mips to binutils 2.34.

Revision 1.312: download - view: text, markup, annotated - select for diffs
Thu Aug 20 03:09:34 2020 UTC (4 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.311: preferred, colored
Changes since revision 1.311: +4 -2 lines
update the latest note to talk about all 3 potential ways that
failure can occur now (1 still upcoming.)

Revision 1.311: download - view: text, markup, annotated - select for diffs
Wed Aug 12 06:48:50 2020 UTC (4 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.310: preferred, colored
Changes since revision 1.310: +4 -1 lines
20200811:
	GCC updates may require cleaning the objdir.

Revision 1.310: download - view: text, markup, annotated - select for diffs
Mon Jun 15 21:52:03 2020 UTC (4 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.309: preferred, colored
Changes since revision 1.309: +3 -5 lines
blocklist migration has been automated.

Revision 1.309: download - view: text, markup, annotated - select for diffs
Mon Jun 15 03:39:00 2020 UTC (4 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.308: preferred, colored
Changes since revision 1.308: +7 -1 lines
mention blacklist -> blocklist rename

Revision 1.308: download - view: text, markup, annotated - select for diffs
Mon Jun 1 14:46:04 2020 UTC (4 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.307: preferred, colored
Changes since revision 1.307: +5 -1 lines
Mention cleaning needed in LIBISPRIVATE directories

Revision 1.295.2.4: download - view: text, markup, annotated - select for diffs
Tue Apr 21 19:37:29 2020 UTC (5 years ago) by martin
Branches: phil-wifi
Diff to: previous 1.295.2.3: preferred, colored; branchpoint 1.295: preferred, colored; next MAIN 1.296: preferred, colored
Changes since revision 1.295.2.3: +1 -1 lines
Ooops, restore accidently removed files from merge mishap

Revision 1.295.2.3
Tue Apr 21 18:41:02 2020 UTC (5 years ago) by martin
Branches: phil-wifi
FILE REMOVED
Changes since revision 1.295.2.2: +1 -1 lines
Sync with HEAD

Revision 1.295.2.2: download - view: text, markup, annotated - select for diffs
Mon Apr 13 07:45:05 2020 UTC (5 years ago) by martin
Branches: phil-wifi
Diff to: previous 1.295.2.1: preferred, colored; branchpoint 1.295: preferred, colored
Changes since revision 1.295.2.1: +120 -1 lines
Mostly merge changes from HEAD upto 20200411

Revision 1.307: download - view: text, markup, annotated - select for diffs
Wed Mar 11 21:07:40 2020 UTC (5 years, 1 month ago) by mrg
Branches: MAIN
CVS tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406
Diff to: previous 1.306: preferred, colored
Changes since revision 1.306: +5 -1 lines
note GCC 8.4 may need some cleaning.

Revision 1.306: download - view: text, markup, annotated - select for diffs
Mon Nov 18 15:42:26 2019 UTC (5 years, 5 months ago) by christos
Branches: MAIN
CVS tags: phil-wifi-20191119, is-mlppp-base, is-mlppp
Diff to: previous 1.305: preferred, colored
Changes since revision 1.305: +8 -5 lines
catch-up with more ports switched to gcc-8
fix typos, consistent whitespace

Revision 1.305: download - view: text, markup, annotated - select for diffs
Wed Nov 13 09:59:02 2019 UTC (5 years, 5 months ago) by martin
Branches: MAIN
Diff to: previous 1.304: preferred, colored
Changes since revision 1.304: +5 -1 lines
Mention LLVM fallout

Revision 1.304: download - view: text, markup, annotated - select for diffs
Wed Oct 23 16:26:42 2019 UTC (5 years, 6 months ago) by martin
Branches: MAIN
Diff to: previous 1.303: preferred, colored
Changes since revision 1.303: +9 -1 lines
Add note for GCC 8 builds (see PR 54644)

Revision 1.303: download - view: text, markup, annotated - select for diffs
Tue Oct 1 09:36:56 2019 UTC (5 years, 7 months ago) by mrg
Branches: MAIN
Diff to: previous 1.302: preferred, colored
Changes since revision 1.302: +7 -1 lines
add a note about GCC 8.3 import probably needing cleaning.

Revision 1.302: download - view: text, markup, annotated - select for diffs
Tue Sep 3 15:38:52 2019 UTC (5 years, 8 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.301: preferred, colored
Changes since revision 1.301: +82 -1 lines
Add UPDATING note about radeon firmware image mistake.

Revision 1.301: download - view: text, markup, annotated - select for diffs
Sat Jul 27 07:55:18 2019 UTC (5 years, 9 months ago) by martin
Branches: MAIN
CVS tags: netbsd-9-base, netbsd-9-4-RELEASE, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9
Diff to: previous 1.300: preferred, colored
Changes since revision 1.300: +7 -1 lines
Note update hickup build issue for uefi boot.

Revision 1.300: download - view: text, markup, annotated - select for diffs
Tue Jul 23 06:35:40 2019 UTC (5 years, 9 months ago) by martin
Branches: MAIN
Diff to: previous 1.299: preferred, colored
Changes since revision 1.299: +8 -1 lines
Add a note to rebuild jemalloc w/o debugging

Revision 1.295.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 21:41:01 2019 UTC (5 years, 10 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.295: preferred, colored
Changes since revision 1.295: +20 -1 lines
Sync with HEAD

Revision 1.299: download - view: text, markup, annotated - select for diffs
Fri Feb 8 09:57:01 2019 UTC (6 years, 2 months ago) by mrg
Branches: MAIN
CVS tags: phil-wifi-20190609
Diff to: previous 1.298: preferred, colored
Changes since revision 1.298: +4 -1 lines
add a quick note about gcc 7 likely causing update build failures.

Revision 1.291.2.5: download - view: text, markup, annotated - select for diffs
Sun Sep 30 01:44:21 2018 UTC (6 years, 7 months ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.291.2.4: preferred, colored; branchpoint 1.291: preferred, colored; next MAIN 1.292: preferred, colored
Changes since revision 1.291.2.4: +6 -1 lines
Ssync with HEAD

Revision 1.298: download - view: text, markup, annotated - select for diffs
Mon Sep 24 13:18:35 2018 UTC (6 years, 7 months ago) by martin
Branches: MAIN
CVS tags: pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930
Diff to: previous 1.297: preferred, colored
Changes since revision 1.297: +6 -1 lines
Note that we need to clean objdir for the OpenSSL update.

Revision 1.291.2.4: download - view: text, markup, annotated - select for diffs
Sat Jul 28 04:32:56 2018 UTC (6 years, 9 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.291.2.3: preferred, colored; branchpoint 1.291: preferred, colored
Changes since revision 1.291.2.3: +12 -1 lines
Sync with HEAD

Revision 1.297: download - view: text, markup, annotated - select for diffs
Tue Jul 17 19:13:53 2018 UTC (6 years, 9 months ago) by joerg
Branches: MAIN
CVS tags: pgoyette-compat-0906, pgoyette-compat-0728
Diff to: previous 1.296: preferred, colored
Changes since revision 1.296: +5 -1 lines
Document aarch64 ABI break.

Revision 1.296: download - view: text, markup, annotated - select for diffs
Mon Jul 16 11:45:01 2018 UTC (6 years, 9 months ago) by martin
Branches: MAIN
Diff to: previous 1.295: preferred, colored
Changes since revision 1.295: +8 -1 lines
Entry for MKSTATICPIE fallout in /rescue build.

Revision 1.291.2.3: download - view: text, markup, annotated - select for diffs
Mon May 21 04:35:48 2018 UTC (6 years, 11 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.291.2.2: preferred, colored; branchpoint 1.291: preferred, colored
Changes since revision 1.291.2.2: +1 -1 lines
Sync with HEAD

Revision 1.295: download - view: text, markup, annotated - select for diffs
Wed May 2 07:34:44 2018 UTC (7 years ago) by pgoyette
Branches: MAIN
CVS tags: phil-wifi-base, pgoyette-compat-0625, pgoyette-compat-0521
Branch point for: phil-wifi
Diff to: previous 1.294: preferred, colored
Changes since revision 1.294: +1 -1 lines
Re-add files that were accidentally deleted in my previous commit.

Revision 1.294
Wed May 2 07:19:58 2018 UTC (7 years ago) by pgoyette
Branches: MAIN
FILE REMOVED
Changes since revision 1.293: +1 -1 lines
Synch with HEAD

Revision 1.291.2.2: download - view: text, markup, annotated - select for diffs
Sun Apr 22 07:20:06 2018 UTC (7 years ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.291.2.1: preferred, colored; branchpoint 1.291: preferred, colored
Changes since revision 1.291.2.1: +6 -1 lines
Sync with HEAD

Revision 1.293: download - view: text, markup, annotated - select for diffs
Sun Apr 15 17:22:03 2018 UTC (7 years ago) by jakllsch
Branches: MAIN
CVS tags: pgoyette-compat-0502, pgoyette-compat-0422
Diff to: previous 1.292: preferred, colored
Changes since revision 1.292: +6 -1 lines
Add a note about potential tools build failure due to yesterday's
binutils sources juggling.

Revision 1.291.2.1: download - view: text, markup, annotated - select for diffs
Thu Mar 15 09:11:52 2018 UTC (7 years, 1 month ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.291: preferred, colored
Changes since revision 1.291: +6 -1 lines
Synch with HEAD

Revision 1.292: download - view: text, markup, annotated - select for diffs
Sun Mar 11 11:18:06 2018 UTC (7 years, 1 month ago) by mrg
Branches: MAIN
CVS tags: pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315
Diff to: previous 1.291: preferred, colored
Changes since revision 1.291: +6 -1 lines
20180311:
	bdftopcf was updated and may need cleaning in the
	src/external/mit/xorg/tools/bdftopcf subdirectory if there are
	link errors.

Revision 1.291: download - view: text, markup, annotated - select for diffs
Tue Feb 13 04:36:00 2018 UTC (7 years, 2 months ago) by mrg
Branches: MAIN
CVS tags: pgoyette-compat-base
Branch point for: pgoyette-compat
Diff to: previous 1.290: preferred, colored
Changes since revision 1.290: +7 -1 lines
note that openssl and GCC may upset your builds.

Revision 1.290: download - view: text, markup, annotated - select for diffs
Wed Dec 27 08:29:02 2017 UTC (7 years, 4 months ago) by martin
Branches: MAIN
Diff to: previous 1.289: preferred, colored
Changes since revision 1.289: +2 -2 lines
Minor tweak to the vadvise entry.

Revision 1.289: download - view: text, markup, annotated - select for diffs
Tue Dec 26 20:04:03 2017 UTC (7 years, 4 months ago) by christos
Branches: MAIN
Diff to: previous 1.288: preferred, colored
Changes since revision 1.288: +5 -3 lines
build without -u does not work because of the dependencies and the stale
files. Be more explicit with instructions.

Revision 1.288: download - view: text, markup, annotated - select for diffs
Tue Dec 26 11:40:47 2017 UTC (7 years, 4 months ago) by martin
Branches: MAIN
Diff to: previous 1.287: preferred, colored
Changes since revision 1.287: +8 -1 lines
Note build fallout from vadvise removal.

Revision 1.287: download - view: text, markup, annotated - select for diffs
Fri Oct 13 07:04:58 2017 UTC (7 years, 6 months ago) by kre
Branches: MAIN
Diff to: previous 1.286: preferred, colored
Changes since revision 1.286: +6 -1 lines

Note possible need to clean objdir (or depends at least) for
external/bsd/acpica/bin/iasl after build structure change a few days ago.

Revision 1.286: download - view: text, markup, annotated - select for diffs
Tue Aug 22 10:04:44 2017 UTC (7 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.285: preferred, colored
Changes since revision 1.285: +7 -1 lines
note GMP 6.1.2 release and the build issues that may occur.

Revision 1.285: download - view: text, markup, annotated - select for diffs
Thu Aug 17 01:16:55 2017 UTC (7 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.284: preferred, colored
Changes since revision 1.284: +7 -1 lines
add a note about MPC/MPFR updates breaking some types of update builds.

Revision 1.272.2.4: download - view: text, markup, annotated - select for diffs
Wed Apr 26 02:52:13 2017 UTC (8 years ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.272.2.3: preferred, colored; branchpoint 1.272: preferred, colored; next MAIN 1.273: preferred, colored
Changes since revision 1.272.2.3: +6 -1 lines
Sync with HEAD

Revision 1.277.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 21 16:50:41 2017 UTC (8 years ago) by bouyer
Branches: bouyer-socketcan
Diff to: previous 1.277: preferred, colored; next MAIN 1.278: preferred, colored
Changes since revision 1.277: +19 -1 lines
Sync with HEAD

Revision 1.284: download - view: text, markup, annotated - select for diffs
Mon Apr 3 09:37:58 2017 UTC (8 years, 1 month ago) by martin
Branches: MAIN
CVS tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-20170426, perseant-stdc-iso10646-base, perseant-stdc-iso10646, netbsd-8-base, netbsd-8-3-RELEASE, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, matt-nb8-mediatek-base, matt-nb8-mediatek, bouyer-socketcan-base1
Diff to: previous 1.283: preferred, colored
Changes since revision 1.283: +6 -1 lines
New dhcpcd does not like update builds from previous versions.

Revision 1.272.2.3: download - view: text, markup, annotated - select for diffs
Mon Mar 20 06:51:32 2017 UTC (8 years, 1 month ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.272.2.2: preferred, colored; branchpoint 1.272: preferred, colored
Changes since revision 1.272.2.2: +14 -1 lines
Sync with HEAD

Revision 1.283: download - view: text, markup, annotated - select for diffs
Fri Feb 17 21:34:19 2017 UTC (8 years, 2 months ago) by kamil
Branches: MAIN
CVS tags: pgoyette-localcount-20170320
Diff to: previous 1.282: preferred, colored
Changes since revision 1.282: +1 -6 lines
Remove entry for "TRAP_HWWPT renamed to TRAP_DBREG" from UPDATING

Suggested by K.R.Elz

Revision 1.282: download - view: text, markup, annotated - select for diffs
Fri Feb 17 01:42:59 2017 UTC (8 years, 2 months ago) by kamil
Branches: MAIN
Diff to: previous 1.281: preferred, colored
Changes since revision 1.281: +6 -1 lines
Note TRAP_HWWPT -> TRAP_DBREG rename manual steps for build.sh -u

Revision 1.281: download - view: text, markup, annotated - select for diffs
Sat Feb 11 15:27:08 2017 UTC (8 years, 2 months ago) by roy
Branches: MAIN
Diff to: previous 1.280: preferred, colored
Changes since revision 1.280: +7 -1 lines
Note a new tic tool is required for the new terminfo database.

Revision 1.280: download - view: text, markup, annotated - select for diffs
Wed Feb 8 14:47:55 2017 UTC (8 years, 2 months ago) by kre
Branches: MAIN
Diff to: previous 1.279: preferred, colored
Changes since revision 1.279: +2 -2 lines

Time waro (thanks Kamil)

Revision 1.279: download - view: text, markup, annotated - select for diffs
Wed Feb 8 13:54:39 2017 UTC (8 years, 2 months ago) by kre
Branches: MAIN
Diff to: previous 1.278: preferred, colored
Changes since revision 1.278: +5 -4 lines

Ammend previous, mention compat/amd64/i386/lib/libc as well.

Revision 1.278: download - view: text, markup, annotated - select for diffs
Wed Feb 8 10:56:12 2017 UTC (8 years, 2 months ago) by kre
Branches: MAIN
Diff to: previous 1.277: preferred, colored
Changes since revision 1.277: +7 -1 lines

Note libc update build issue after change from arch/exect.S to exect.c
(The build system really should be able to cope with changes like this
one without obj dir fiddling or clean builds)

Revision 1.272.2.2: download - view: text, markup, annotated - select for diffs
Sat Jan 7 08:53:41 2017 UTC (8 years, 3 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.272.2.1: preferred, colored; branchpoint 1.272: preferred, colored
Changes since revision 1.272.2.1: +11 -1 lines
Sync with HEAD.  (Note that most of these changes are simply $NetBSD$
tag issues.)

Revision 1.277: download - view: text, markup, annotated - select for diffs
Thu Jan 5 05:40:46 2017 UTC (8 years, 4 months ago) by martin
Branches: MAIN
CVS tags: pgoyette-localcount-20170107, bouyer-socketcan-base
Branch point for: bouyer-socketcan
Diff to: previous 1.276: preferred, colored
Changes since revision 1.276: +6 -1 lines
xinput update build hint

Revision 1.276: download - view: text, markup, annotated - select for diffs
Wed Jan 4 19:34:47 2017 UTC (8 years, 4 months ago) by martin
Branches: MAIN
Diff to: previous 1.275: preferred, colored
Changes since revision 1.275: +6 -1 lines
Not flex update build issue

Revision 1.272.2.1: download - view: text, markup, annotated - select for diffs
Fri Nov 4 14:42:22 2016 UTC (8 years, 6 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.272: preferred, colored
Changes since revision 1.272: +16 -1 lines
Sync with HEAD

Revision 1.275: download - view: text, markup, annotated - select for diffs
Fri Oct 14 16:39:05 2016 UTC (8 years, 6 months ago) by spz
Branches: MAIN
CVS tags: pgoyette-localcount-20161104
Diff to: previous 1.274: preferred, colored
Changes since revision 1.274: +6 -1 lines
note that the OpenSSL import requires some objdir cleanup

Revision 1.274: download - view: text, markup, annotated - select for diffs
Mon Oct 10 13:28:24 2016 UTC (8 years, 6 months ago) by martin
Branches: MAIN
Diff to: previous 1.273: preferred, colored
Changes since revision 1.273: +6 -1 lines
Note that dhcpcd objdir needs to be cleaned for update builds.

Revision 1.273: download - view: text, markup, annotated - select for diffs
Thu Sep 15 07:49:08 2016 UTC (8 years, 7 months ago) by mrg
Branches: MAIN
Diff to: previous 1.272: preferred, colored
Changes since revision 1.272: +6 -1 lines
switch amd64, i386, shark, ofppc and macppc to xorg-server 1.18.

add a note to UPDATING about needing a clean objdir and destdir.

Revision 1.272: download - view: text, markup, annotated - select for diffs
Mon May 30 03:11:48 2016 UTC (8 years, 11 months ago) by dholland
Branches: MAIN
CVS tags: pgoyette-localcount-base, pgoyette-localcount-20160806, pgoyette-localcount-20160726, localcount-20160914
Branch point for: pgoyette-localcount
Diff to: previous 1.271: preferred, colored
Changes since revision 1.271: +5 -1 lines
Note that i386 needs a PIE-related cleandir. Should avoid having PR 51174
happen to anyone else. :-/

Revision 1.271: download - view: text, markup, annotated - select for diffs
Mon Apr 18 19:37:41 2016 UTC (9 years ago) by christos
Branches: MAIN
Diff to: previous 1.270: preferred, colored
Changes since revision 1.270: +3 -2 lines
be more specific about what needs to be cleaned for libedit.

Revision 1.270: download - view: text, markup, annotated - select for diffs
Mon Apr 18 18:58:04 2016 UTC (9 years ago) by christos
Branches: MAIN
Diff to: previous 1.269: preferred, colored
Changes since revision 1.269: +5 -2 lines
mention libedit

Revision 1.269: download - view: text, markup, annotated - select for diffs
Sat Apr 16 19:47:45 2016 UTC (9 years ago) by dholland
Branches: MAIN
Diff to: previous 1.268: preferred, colored
Changes since revision 1.268: +3 -1 lines
Note that deleting objdirs (not just cleandir) may be necessary for the
gcc update.

Revision 1.268: download - view: text, markup, annotated - select for diffs
Sat Apr 16 18:28:22 2016 UTC (9 years ago) by riastradh
Branches: MAIN
Diff to: previous 1.267: preferred, colored
Changes since revision 1.267: +20 -1 lines
Add a note about PIE for amd64 requiring clean objdir.

Revision 1.267: download - view: text, markup, annotated - select for diffs
Sun Apr 3 06:16:02 2016 UTC (9 years, 1 month ago) by mrg
Branches: MAIN
Diff to: previous 1.266: preferred, colored
Changes since revision 1.266: +4 -1 lines
add a simple note about GCC 5.3.

Revision 1.266: download - view: text, markup, annotated - select for diffs
Sun Mar 6 10:26:57 2016 UTC (9 years, 2 months ago) by aymeric
Branches: MAIN
Diff to: previous 1.265: preferred, colored
Changes since revision 1.265: +2 -2 lines
bump date for entry about using NetBSD's regex, now that it works

Revision 1.265: download - view: text, markup, annotated - select for diffs
Mon Feb 29 22:49:11 2016 UTC (9 years, 2 months ago) by aymeric
Branches: MAIN
Diff to: previous 1.264: preferred, colored
Changes since revision 1.264: +9 -1 lines
mention that the recent addition of the NetBSD implementation of regexps
to libnbcompat may lead to crashes in tools using them on non-NetBSD hosts
if these are not rebuilt from scratch.

Revision 1.264: download - view: text, markup, annotated - select for diffs
Mon Jan 25 09:24:29 2016 UTC (9 years, 3 months ago) by martin
Branches: MAIN
Diff to: previous 1.263: preferred, colored
Changes since revision 1.263: +9 -1 lines
Note that update builds are broken if MKDTRACE got enabled for your
platform.

Revision 1.263: download - view: text, markup, annotated - select for diffs
Sat Sep 19 18:31:41 2015 UTC (9 years, 7 months ago) by dholland
Branches: MAIN
Diff to: previous 1.262: preferred, colored
Changes since revision 1.262: +5 -1 lines
add note about the most recent acpica update

Revision 1.262: download - view: text, markup, annotated - select for diffs
Tue Apr 14 14:18:59 2015 UTC (10 years ago) by christos
Branches: MAIN
Diff to: previous 1.261: preferred, colored
Changes since revision 1.261: +6 -1 lines
mention yacc requirement for acpica

Revision 1.261: download - view: text, markup, annotated - select for diffs
Sat Apr 4 12:15:38 2015 UTC (10 years, 1 month ago) by martin
Branches: MAIN
Diff to: previous 1.260: preferred, colored
Changes since revision 1.260: +7 -1 lines
Note required cleandir for lint changes

Revision 1.260: download - view: text, markup, annotated - select for diffs
Wed Mar 11 08:50:32 2015 UTC (10 years, 1 month ago) by skrll
Branches: MAIN
Diff to: previous 1.259: preferred, colored
Changes since revision 1.259: +6 -1 lines
Add a note about recent arm openssl update.

Revision 1.259: download - view: text, markup, annotated - select for diffs
Mon Oct 27 11:21:28 2014 UTC (10 years, 6 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.258: preferred, colored
Changes since revision 1.258: +2 -2 lines
Fix typo.

Revision 1.258: download - view: text, markup, annotated - select for diffs
Mon Oct 27 09:06:35 2014 UTC (10 years, 6 months ago) by martin
Branches: MAIN
Diff to: previous 1.257: preferred, colored
Changes since revision 1.257: +8 -1 lines
Add an entry for recent pppd modules mishap.

Revision 1.178.2.4: download - view: text, markup, annotated - select for diffs
Wed Sep 3 02:15:10 2014 UTC (10 years, 8 months ago) by msaitoh
Branches: netbsd-5
Diff to: previous 1.178.2.3: preferred, colored; branchpoint 1.178: preferred, colored; next MAIN 1.179: preferred, colored
Changes since revision 1.178.2.3: +7 -1 lines
Pull up following revision(s) (requested by tls in ticket #1339):
	UPDATING: revision 1.209 via patch
Note shared objects extension change, and stalled files.

Revision 1.238.2.3: download - view: text, markup, annotated - select for diffs
Tue Aug 19 23:45:10 2014 UTC (10 years, 8 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.238.2.2: preferred, colored; next MAIN 1.239: preferred, colored
Changes since revision 1.238.2.2: +51 -0 lines
Rebase to HEAD as of a few days ago.

Revision 1.254.2.1: download - view: text, markup, annotated - select for diffs
Sun Aug 10 07:27:15 2014 UTC (10 years, 8 months ago) by tls
Branches: tls-earlyentropy
Diff to: previous 1.254: preferred, colored; next MAIN 1.255: preferred, colored
Changes since revision 1.254: +27 -1 lines
Rebase.

Revision 1.257: download - view: text, markup, annotated - select for diffs
Wed Jul 23 08:52:32 2014 UTC (10 years, 9 months ago) by apb
Branches: MAIN
CVS tags: tls-maxphys-base, tls-earlyentropy-base, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7
Diff to: previous 1.256: preferred, colored
Changes since revision 1.256: +14 -1 lines
More general advice about "cvs [update aborted]... No such file
or directory".

Also invent a "Cause:" keyword for use in "Symptom:/Cause:/Fix" sections.

Also add a note near the top of the file saying that there are
several sections marked by "^^^".

Revision 1.256: download - view: text, markup, annotated - select for diffs
Wed Jul 23 08:37:03 2014 UTC (10 years, 9 months ago) by apb
Branches: MAIN
Diff to: previous 1.255: preferred, colored
Changes since revision 1.255: +10 -1 lines
How to deal with src/external/mit/lua/src: No such file or directory

Revision 1.255: download - view: text, markup, annotated - select for diffs
Fri May 30 18:33:30 2014 UTC (10 years, 11 months ago) by joerg
Branches: MAIN
Diff to: previous 1.254: preferred, colored
Changes since revision 1.254: +5 -1 lines
Add note about the eARM flag day for C++.

Revision 1.229.2.4: download - view: text, markup, annotated - select for diffs
Thu May 22 13:23:26 2014 UTC (10 years, 11 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.229.2.3: preferred, colored; branchpoint 1.229: preferred, colored; next MAIN 1.230: preferred, colored
Changes since revision 1.229.2.3: +45 -1 lines
sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs.  ("Protocol error: too many arguments")

Revision 1.254: download - view: text, markup, annotated - select for diffs
Sat Feb 1 13:29:45 2014 UTC (11 years, 3 months ago) by skrll
Branches: MAIN
CVS tags: yamt-pagecache-base9, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3
Branch point for: tls-earlyentropy
Diff to: previous 1.253: preferred, colored
Changes since revision 1.253: +2 -2 lines
Improve the compiler_rt entry slightly

Revision 1.253: download - view: text, markup, annotated - select for diffs
Sat Feb 1 12:51:02 2014 UTC (11 years, 3 months ago) by joerg
Branches: MAIN
Diff to: previous 1.252: preferred, colored
Changes since revision 1.252: +4 -8 lines
Advise a clean build for the compiler-rt migration.

Revision 1.252: download - view: text, markup, annotated - select for diffs
Fri Jan 31 11:19:37 2014 UTC (11 years, 3 months ago) by wiz
Branches: MAIN
Diff to: previous 1.251: preferred, colored
Changes since revision 1.251: +2 -2 lines
Add a letter, fix a word.

Revision 1.251: download - view: text, markup, annotated - select for diffs
Fri Jan 31 10:40:44 2014 UTC (11 years, 3 months ago) by martin
Branches: MAIN
Diff to: previous 1.250: preferred, colored
Changes since revision 1.250: +10 -1 lines
Add a note for the libc/compile_rt changes requiring a partial clean.

Revision 1.250: download - view: text, markup, annotated - select for diffs
Sat Dec 28 03:39:07 2013 UTC (11 years, 4 months ago) by christos
Branches: MAIN
Diff to: previous 1.249: preferred, colored
Changes since revision 1.249: +9 -1 lines
mention visible changes

Revision 1.249: download - view: text, markup, annotated - select for diffs
Wed Dec 4 14:47:41 2013 UTC (11 years, 5 months ago) by mrg
Branches: MAIN
Diff to: previous 1.248: preferred, colored
Changes since revision 1.248: +5 -1 lines
add a note about GMP i wrote but forgot to commit a few days ago.

Revision 1.248: download - view: text, markup, annotated - select for diffs
Fri Nov 29 02:05:59 2013 UTC (11 years, 5 months ago) by mrg
Branches: MAIN
Diff to: previous 1.247: preferred, colored
Changes since revision 1.247: +5 -1 lines
add a note about MPC and MPFR potentially upsetting the update build.

Revision 1.247: download - view: text, markup, annotated - select for diffs
Thu Aug 8 20:00:20 2013 UTC (11 years, 8 months ago) by spz
Branches: MAIN
Diff to: previous 1.246: preferred, colored
Changes since revision 1.246: +5 -1 lines
add hints about FAST_IPSEC no longer being around

Revision 1.238.2.2: download - view: text, markup, annotated - select for diffs
Sun Jun 23 06:26:12 2013 UTC (11 years, 10 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.238.2.1: preferred, colored
Changes since revision 1.238.2.1: +20 -1 lines
resync from head

Revision 1.246: download - view: text, markup, annotated - select for diffs
Wed Jun 5 21:59:59 2013 UTC (11 years, 11 months ago) by martin
Branches: MAIN
CVS tags: riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2
Diff to: previous 1.245: preferred, colored
Changes since revision 1.245: +6 -1 lines
Note manual removal of internal freetype headers.

Revision 1.245: download - view: text, markup, annotated - select for diffs
Sat Jun 1 08:25:17 2013 UTC (11 years, 11 months ago) by mrg
Branches: MAIN
Diff to: previous 1.244: preferred, colored
Changes since revision 1.244: +7 -1 lines
add a specific note about an xdm.man failure mode

Revision 1.244: download - view: text, markup, annotated - select for diffs
Fri May 31 10:39:02 2013 UTC (11 years, 11 months ago) by mrg
Branches: MAIN
Diff to: previous 1.243: preferred, colored
Changes since revision 1.243: +5 -1 lines
add a note about xsrc updates.

Revision 1.243: download - view: text, markup, annotated - select for diffs
Sat Mar 2 08:51:42 2013 UTC (12 years, 2 months ago) by christos
Branches: MAIN
CVS tags: khorben-n900, agc-symver-base, agc-symver
Diff to: previous 1.242: preferred, colored
Changes since revision 1.242: +2 -2 lines
more

Revision 1.242: download - view: text, markup, annotated - select for diffs
Sat Mar 2 07:32:59 2013 UTC (12 years, 2 months ago) by christos
Branches: MAIN
Diff to: previous 1.241: preferred, colored
Changes since revision 1.241: +5 -1 lines
add netiso caveat

Revision 1.238.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 20 02:57:27 2012 UTC (12 years, 5 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.238: preferred, colored
Changes since revision 1.238: +49 -48 lines
Resync to 2012-11-19 00:00:00 UTC

Revision 1.234.2.1.2.1: download - view: text, markup, annotated - select for diffs
Thu Nov 1 16:44:44 2012 UTC (12 years, 6 months ago) by matt
Branches: matt-nb6-plus
Diff to: previous 1.234.2.1: preferred, colored; next MAIN 1.234.2.2: preferred, colored
Changes since revision 1.234.2.1: +9 -2 lines
sync with netbsd-6-0-RELEASE.

Revision 1.229.2.3: download - view: text, markup, annotated - select for diffs
Tue Oct 30 18:46:04 2012 UTC (12 years, 6 months ago) by yamt
Branches: yamt-pagecache
CVS tags: yamt-pagecache-tag8
Diff to: previous 1.229.2.2: preferred, colored; branchpoint 1.229: preferred, colored
Changes since revision 1.229.2.2: +51 -44 lines
sync with head

Revision 1.241: download - view: text, markup, annotated - select for diffs
Wed Oct 3 19:17:00 2012 UTC (12 years, 7 months ago) by wiz
Branches: MAIN
CVS tags: yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6
Diff to: previous 1.240: preferred, colored
Changes since revision 1.240: +46 -46 lines
- Capitalization fixes (``OpenSSL'', not ``openssl'');
- change single to double space in between sentences;
- remove trailing white space.

From Bug Hunting.

Revision 1.234.2.4: download - view: text, markup, annotated - select for diffs
Sun Sep 30 18:47:58 2012 UTC (12 years, 7 months ago) by bouyer
Branches: netbsd-6
CVS tags: netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, matt-nb6-plus-nbase, matt-nb6-plus-base
Diff to: previous 1.234.2.3: preferred, colored; branchpoint 1.234: preferred, colored; next MAIN 1.235: preferred, colored
Changes since revision 1.234.2.3: +5 -4 lines
Pull up following revision(s) (requested by dholland in ticket #565):
	UPDATING: revision 1.240
Strengthen the entry about the openssl update, to clarify and emphasize
that just doing a non-update build isn't enough; you really do have to
nuke $DESTDIR.

Revision 1.234.2.3: download - view: text, markup, annotated - select for diffs
Sun Sep 30 18:35:40 2012 UTC (12 years, 7 months ago) by bouyer
Branches: netbsd-6
Diff to: previous 1.234.2.2: preferred, colored; branchpoint 1.234: preferred, colored
Changes since revision 1.234.2.2: +2 -2 lines
Pull up following revision(s) (requested by dholland in ticket #561):
	UPDATING: revision 1.239
Fix typo, noticed by stu314 on freenode.

Revision 1.240: download - view: text, markup, annotated - select for diffs
Mon Sep 17 05:56:27 2012 UTC (12 years, 7 months ago) by dholland
Branches: MAIN
Diff to: previous 1.239: preferred, colored
Changes since revision 1.239: +5 -4 lines
Strengthen the entry about the openssl update, to clarify and emphasize
that just doing a non-update build isn't enough; you really do have to
nuke $DESTDIR.

Revision 1.239: download - view: text, markup, annotated - select for diffs
Sat Sep 15 18:03:42 2012 UTC (12 years, 7 months ago) by dholland
Branches: MAIN
Diff to: previous 1.238: preferred, colored
Changes since revision 1.238: +2 -2 lines
Fix typo, noticed by stu314 on freenode.

Revision 1.234.2.2: download - view: text, markup, annotated - select for diffs
Fri Sep 7 22:19:27 2012 UTC (12 years, 7 months ago) by bouyer
Branches: netbsd-6
CVS tags: netbsd-6-0-RC2
Diff to: previous 1.234.2.1: preferred, colored; branchpoint 1.234: preferred, colored
Changes since revision 1.234.2.1: +7 -1 lines
Pull up following revision(s) (requested by dholland in ticket #549):
	src/UPDATING: revision 1.238 via patch
Add note about cleaning required by last month's openssl update.
Closes PR 46816.

Revision 1.238: download - view: text, markup, annotated - select for diffs
Wed Aug 22 04:16:47 2012 UTC (12 years, 8 months ago) by dholland
Branches: MAIN
Branch point for: tls-maxphys
Diff to: previous 1.237: preferred, colored
Changes since revision 1.237: +7 -1 lines
Add note about cleaning required by last month's openssl update.
Closes PR 46816.

Revision 1.229.2.2: download - view: text, markup, annotated - select for diffs
Wed May 23 10:07:04 2012 UTC (12 years, 11 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.229.2.1: preferred, colored; branchpoint 1.229: preferred, colored
Changes since revision 1.229.2.1: +6 -1 lines
sync with head.

Revision 1.237: download - view: text, markup, annotated - select for diffs
Mon May 7 11:20:24 2012 UTC (13 years ago) by wiz
Branches: MAIN
CVS tags: yamt-pagecache-base5
Diff to: previous 1.236: preferred, colored
Changes since revision 1.236: +6 -1 lines
Mention that you should run makemandb -f, or wait for the weekly script.

Revision 1.229.2.1: download - view: text, markup, annotated - select for diffs
Tue Apr 17 00:01:35 2012 UTC (13 years ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.229: preferred, colored
Changes since revision 1.229: +35 -2 lines
sync with head

Revision 1.236: download - view: text, markup, annotated - select for diffs
Mon Mar 19 06:08:51 2012 UTC (13 years, 1 month ago) by bsh
Branches: MAIN
CVS tags: yamt-pagecache-base4
Diff to: previous 1.235: preferred, colored
Changes since revision 1.235: +8 -1 lines
add note about SYMTAB_SPACE.

Revision 1.234.2.1: download - view: text, markup, annotated - select for diffs
Thu Feb 16 19:56:43 2012 UTC (13 years, 2 months ago) by riz
Branches: netbsd-6
CVS tags: netbsd-6-0-RC1
Branch point for: matt-nb6-plus
Diff to: previous 1.234: preferred, colored
Changes since revision 1.234: +6 -3 lines
Pull up following revision(s) (requested by joerg in ticket #2):
	etc/weekly: revision 1.26
	etc/daily: revision 1.81
	UPDATING: revision 1.235
Run makemandb with the normal 022 umask, not the restrictive 077.
Extend entry to makemandb permission issue.

Revision 1.235: download - view: text, markup, annotated - select for diffs
Wed Feb 15 23:32:27 2012 UTC (13 years, 2 months ago) by joerg
Branches: MAIN
Diff to: previous 1.234: preferred, colored
Changes since revision 1.234: +6 -3 lines
Extend entry to makemandb permission issue.

Revision 1.234: download - view: text, markup, annotated - select for diffs
Thu Feb 9 21:49:31 2012 UTC (13 years, 2 months ago) by spz
Branches: MAIN
CVS tags: netbsd-6-base
Branch point for: netbsd-6
Diff to: previous 1.233: preferred, colored
Changes since revision 1.233: +2 -2 lines
fix typo/braino

Revision 1.233: download - view: text, markup, annotated - select for diffs
Tue Feb 7 19:37:14 2012 UTC (13 years, 2 months ago) by joerg
Branches: MAIN
Diff to: previous 1.232: preferred, colored
Changes since revision 1.232: +5 -1 lines
Add note about new apropos and mandoc for formatting. Document failing
update builds due to the cat page removal.

Revision 1.232: download - view: text, markup, annotated - select for diffs
Tue Dec 27 16:54:51 2011 UTC (13 years, 4 months ago) by christos
Branches: MAIN
Diff to: previous 1.231: preferred, colored
Changes since revision 1.231: +6 -1 lines
mention pam unbump.

Revision 1.231: download - view: text, markup, annotated - select for diffs
Sat Nov 26 01:20:25 2011 UTC (13 years, 5 months ago) by tls
Branches: MAIN
Diff to: previous 1.230: preferred, colored
Changes since revision 1.230: +7 -1 lines
Mention that "pseudo-device rnd" should be removed from custom kernel
configs.  Thanks to Julio for pointing this out.

Revision 1.230: download - view: text, markup, annotated - select for diffs
Sat Nov 19 22:51:18 2011 UTC (13 years, 5 months ago) by tls
Branches: MAIN
Diff to: previous 1.229: preferred, colored
Changes since revision 1.229: +10 -2 lines
First step of random number subsystem rework described in
<20111022023242.BA26F14A158@mail.netbsd.org>.  This change includes
the following:

	An initial cleanup and minor reorganization of the entropy pool
	code in sys/dev/rnd.c and sys/dev/rndpool.c.  Several bugs are
	fixed.  Some effort is made to accumulate entropy more quickly at
	boot time.

	A generic interface, "rndsink", is added, for stream generators to
	request that they be re-keyed with good quality entropy from the pool
	as soon as it is available.

	The arc4random()/arc4randbytes() implementation in libkern is
	adjusted to use the rndsink interface for rekeying, which helps
	address the problem of low-quality keys at boot time.

	An implementation of the FIPS 140-2 statistical tests for random
	number generator quality is provided (libkern/rngtest.c).  This
	is based on Greg Rose's implementation from Qualcomm.

	A new random stream generator, nist_ctr_drbg, is provided.  It is
	based on an implementation of the NIST SP800-90 CTR_DRBG by
	Henric Jungheim.  This generator users AES in a modified counter
	mode to generate a backtracking-resistant random stream.

	An abstraction layer, "cprng", is provided for in-kernel consumers
	of randomness.  The arc4random/arc4randbytes API is deprecated for
	in-kernel use.  It is replaced by "cprng_strong".  The current
	cprng_fast implementation wraps the existing arc4random
	implementation.  The current cprng_strong implementation wraps the
	new CTR_DRBG implementation.  Both interfaces are rekeyed from
	the entropy pool automatically at intervals justifiable from best
	current cryptographic practice.

	In some quick tests, cprng_fast() is about the same speed as
	the old arc4randbytes(), and cprng_strong() is about 20% faster
	than rnd_extract_data().  Performance is expected to improve.

	The AES code in src/crypto/rijndael is no longer an optional
	kernel component, as it is required by cprng_strong, which is
	not an optional kernel component.

	The entropy pool output is subjected to the rngtest tests at
	startup time; if it fails, the system will reboot.  There is
	approximately a 3/10000 chance of a false positive from these
	tests.  Entropy pool _input_ from hardware random numbers is
	subjected to the rngtest tests at attach time, as well as the
	FIPS continuous-output test, to detect bad or stuck hardware
	RNGs; if any are detected, they are detached, but the system
	continues to run.

	A problem with rndctl(8) is fixed -- datastructures with
	pointers in arrays are no longer passed to userspace (this
	was not a security problem, but rather a major issue for
	compat32).  A new kernel will require a new rndctl.

	The sysctl kern.arandom() and kern.urandom() nodes are hooked
	up to the new generators, but the /dev/*random pseudodevices
	are not, yet.

	Manual pages for the new kernel interfaces are forthcoming.

Revision 1.229: download - view: text, markup, annotated - select for diffs
Fri Sep 30 22:17:50 2011 UTC (13 years, 7 months ago) by jym
Branches: MAIN
CVS tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base
Branch point for: yamt-pagecache
Diff to: previous 1.228: preferred, colored
Changes since revision 1.228: +7 -1 lines
Inform that the prop_{array,dictionary}_send_syscall(3) change breaks
backward compatibility with old quota2 binaries, so ensure that you
update both (proplib + quota2 executables) simultaneously when updating
a -current installation.

Revision 1.228: download - view: text, markup, annotated - select for diffs
Wed Aug 17 09:18:38 2011 UTC (13 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.227: preferred, colored
Changes since revision 1.227: +5 -1 lines
switch sparc to GCC 4.5.3.

Revision 1.227: download - view: text, markup, annotated - select for diffs
Fri Aug 12 03:26:51 2011 UTC (13 years, 8 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.226: preferred, colored
Changes since revision 1.226: +5 -1 lines
i386 and amd64 are on GCC 4.5 too now.

Revision 1.226: download - view: text, markup, annotated - select for diffs
Sat Aug 6 23:07:14 2011 UTC (13 years, 9 months ago) by mrg
Branches: MAIN
Diff to: previous 1.225: preferred, colored
Changes since revision 1.225: +7 -1 lines
add a note about cleaning the tree for GCC 4.5.

Revision 1.225: download - view: text, markup, annotated - select for diffs
Thu Aug 4 03:48:11 2011 UTC (13 years, 9 months ago) by matt
Branches: MAIN
Diff to: previous 1.224: preferred, colored
Changes since revision 1.224: +7 -1 lines
Note changes to xz require cleaning of a directory by hand.

Revision 1.178.2.1.2.1.2.2: download - view: text, markup, annotated - select for diffs
Fri May 20 08:11:12 2011 UTC (13 years, 11 months ago) by matt
Branches: matt-nb5-mips64
Diff to: previous 1.178.2.1.2.1.2.1: preferred, colored; branchpoint 1.178.2.1.2.1: preferred, colored; next MAIN 1.178.2.2: preferred, colored
Changes since revision 1.178.2.1.2.1.2.1: +8 -1 lines
bring matt-nb5-mips64 up to date with netbsd-5-1-RELEASE (except compat).

Revision 1.224: download - view: text, markup, annotated - select for diffs
Sun Apr 10 22:46:09 2011 UTC (14 years ago) by dholland
Branches: MAIN
CVS tags: cherry-xenmp-base, cherry-xenmp
Diff to: previous 1.223: preferred, colored
Changes since revision 1.223: +4 -4 lines
Update this weekend's note on cleaning gcc: you need to clean binutils too.

Revision 1.223: download - view: text, markup, annotated - select for diffs
Sun Apr 10 20:22:32 2011 UTC (14 years ago) by joerg
Branches: MAIN
Diff to: previous 1.222: preferred, colored
Changes since revision 1.222: +10 -1 lines
Add a generic note about GCC's error on changed variables and a specific
entry for the sysroot related changes breaking MKUPDATE.

Revision 1.222: download - view: text, markup, annotated - select for diffs
Sun Apr 10 08:29:31 2011 UTC (14 years ago) by plunky
Branches: MAIN
Diff to: previous 1.221: preferred, colored
Changes since revision 1.221: +8 -1 lines
	Building the Xorg binary was moved into a subdirectory to fix
	ordering issues with "make all". It may be necessary to remove
	the OBJDIR for external/mit/xorg/server/xorg-server/hw/xfree86
	if your update build fails, as the "Xorg" entry there is now a
	directory.

Revision 1.219.2.1: download - view: text, markup, annotated - select for diffs
Tue Feb 8 16:18:27 2011 UTC (14 years, 2 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.219: preferred, colored; next MAIN 1.220: preferred, colored
Changes since revision 1.219: +6 -12 lines
Sync with HEAD

Revision 1.221: download - view: text, markup, annotated - select for diffs
Sun Jan 23 23:40:37 2011 UTC (14 years, 3 months ago) by lukem
Branches: MAIN
CVS tags: bouyer-quota2-nbase, bouyer-quota2-base
Diff to: previous 1.220: preferred, colored
Changes since revision 1.220: +2 -2 lines
fix typo in "-traditional-cpp"

Revision 1.220: download - view: text, markup, annotated - select for diffs
Fri Jan 21 15:59:04 2011 UTC (14 years, 3 months ago) by joerg
Branches: MAIN
Diff to: previous 1.219: preferred, colored
Changes since revision 1.219: +6 -12 lines
Switch remaining platforms to modern CPP for assembler.

Revision 1.219: download - view: text, markup, annotated - select for diffs
Mon Jan 17 18:11:09 2011 UTC (14 years, 3 months ago) by joerg
Branches: MAIN
Branch point for: bouyer-quota2
Diff to: previous 1.218: preferred, colored
Changes since revision 1.218: +8 -3 lines
Move SPARC and SPARC64 to modern CPP. Update UPDATING note for this and
Alpha.

Revision 1.218: download - view: text, markup, annotated - select for diffs
Sat Jan 15 16:13:59 2011 UTC (14 years, 3 months ago) by joerg
Branches: MAIN
Diff to: previous 1.217: preferred, colored
Changes since revision 1.217: +8 -1 lines
Add entry about -tradition-cpp change for people not using build.sh.

Revision 1.217: download - view: text, markup, annotated - select for diffs
Fri Dec 17 09:54:27 2010 UTC (14 years, 4 months ago) by jruoho
Branches: MAIN
CVS tags: matt-mips64-premerge-20101231
Diff to: previous 1.216: preferred, colored
Changes since revision 1.216: +6 -1 lines
Make tcpdump(8) to drop root privileges and chroot(2) by default.

Revision 1.216: download - view: text, markup, annotated - select for diffs
Thu Nov 25 22:08:49 2010 UTC (14 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.215: preferred, colored
Changes since revision 1.215: +11 -1 lines
Mention setenv lossage.

Revision 1.215: download - view: text, markup, annotated - select for diffs
Tue Nov 23 06:49:29 2010 UTC (14 years, 5 months ago) by mrg
Branches: MAIN
Diff to: previous 1.214: preferred, colored
Changes since revision 1.214: +7 -1 lines
add a note about xorg updates

Revision 1.178.2.3: download - view: text, markup, annotated - select for diffs
Sat Jun 12 01:55:43 2010 UTC (14 years, 10 months ago) by riz
Branches: netbsd-5
CVS tags: netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1, matt-nb5-pq3-base, matt-nb5-pq3
Diff to: previous 1.178.2.2: preferred, colored; branchpoint 1.178: preferred, colored
Changes since revision 1.178.2.2: +8 -1 lines
Pull up following revision(s) (requested by mrg in ticket #1413):
	UPDATING: revision 1.197
add a note about native xorg updates

Revision 1.214: download - view: text, markup, annotated - select for diffs
Wed Jun 9 17:29:15 2010 UTC (14 years, 10 months ago) by dholland
Branches: MAIN
Diff to: previous 1.213: preferred, colored
Changes since revision 1.213: +2 -2 lines
minor clarification

Revision 1.213: download - view: text, markup, annotated - select for diffs
Fri Jun 4 15:11:31 2010 UTC (14 years, 11 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.212: preferred, colored
Changes since revision 1.212: +7 -1 lines
atf 0.9 includes a backwards incompatible change that requires rebuilding
the sh tests.  Add a note to tell users to clean up the old files, as
otherwise the rebuilds will not be triggered.

Revision 1.212: download - view: text, markup, annotated - select for diffs
Sat May 22 11:10:59 2010 UTC (14 years, 11 months ago) by mrg
Branches: MAIN
Diff to: previous 1.211: preferred, colored
Changes since revision 1.211: +6 -2 lines
note about xsrc update build issues.

Revision 1.211: download - view: text, markup, annotated - select for diffs
Sat May 22 09:11:04 2010 UTC (14 years, 11 months ago) by tnozaki
Branches: MAIN
Diff to: previous 1.210: preferred, colored
Changes since revision 1.210: +5 -1 lines
ctype.h was splitted, so you have to make cleandir tools/mklocale.

Revision 1.210: download - view: text, markup, annotated - select for diffs
Sat May 22 02:31:25 2010 UTC (14 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.209: preferred, colored
Changes since revision 1.209: +6 -1 lines
mention compiled xkb move.

Revision 1.178.2.1.2.1.2.1: download - view: text, markup, annotated - select for diffs
Wed Apr 21 05:15:01 2010 UTC (15 years ago) by matt
Branches: matt-nb5-mips64
CVS tags: matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-k15
Diff to: previous 1.178.2.1.2.1: preferred, colored
Changes since revision 1.178.2.1.2.1: +1 -1 lines
sync to netbsd-5

Revision 1.209: download - view: text, markup, annotated - select for diffs
Mon Feb 22 12:35:32 2010 UTC (15 years, 2 months ago) by njoly
Branches: MAIN
Diff to: previous 1.208: preferred, colored
Changes since revision 1.208: +7 -1 lines
Note shared objects extension change, and stalled files.

Revision 1.208: download - view: text, markup, annotated - select for diffs
Thu Feb 4 22:25:21 2010 UTC (15 years, 3 months ago) by roy
Branches: MAIN
Diff to: previous 1.207: preferred, colored
Changes since revision 1.207: +8 -1 lines
Document termcap database removal.

Revision 1.207: download - view: text, markup, annotated - select for diffs
Sat Dec 26 11:00:46 2009 UTC (15 years, 4 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.206: preferred, colored
Changes since revision 1.206: +6 -5 lines
Fold long lines.

Revision 1.206: download - view: text, markup, annotated - select for diffs
Mon Nov 16 07:45:50 2009 UTC (15 years, 5 months ago) by dholland
Branches: MAIN
CVS tags: matt-premerge-20091211
Diff to: previous 1.205: preferred, colored
Changes since revision 1.205: +5 -1 lines
Note briefly that new amd64 kernels don't build with old binutils.

Revision 1.205: download - view: text, markup, annotated - select for diffs
Mon Nov 16 07:39:54 2009 UTC (15 years, 5 months ago) by dholland
Branches: MAIN
Diff to: previous 1.204: preferred, colored
Changes since revision 1.204: +5 -5 lines
fix typo in previous

Revision 1.204: download - view: text, markup, annotated - select for diffs
Mon Nov 2 01:11:31 2009 UTC (15 years, 6 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.203: preferred, colored
Changes since revision 1.203: +3 -2 lines
Mention that 'build.sh -u' may also break while building lex.

Revision 1.203: download - view: text, markup, annotated - select for diffs
Mon Nov 2 01:09:21 2009 UTC (15 years, 6 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.202: preferred, colored
Changes since revision 1.202: +6 -1 lines
Mention that build.sh -u may get hung up building yacc.

Revision 1.202: download - view: text, markup, annotated - select for diffs
Fri Oct 2 03:13:23 2009 UTC (15 years, 7 months ago) by mrg
Branches: MAIN
Diff to: previous 1.201: preferred, colored
Changes since revision 1.201: +6 -1 lines
add a note about accidental compiled/xkb symlinks appearing

Revision 1.201: download - view: text, markup, annotated - select for diffs
Sat Jul 18 09:50:32 2009 UTC (15 years, 9 months ago) by dsl
Branches: MAIN
Diff to: previous 1.200: preferred, colored
Changes since revision 1.200: +7 -1 lines
Presence of index.o in existing libc.a causes duplicate symbol now that
strchr.[cS] provides its definition.

Revision 1.200: download - view: text, markup, annotated - select for diffs
Thu Jul 9 08:04:32 2009 UTC (15 years, 9 months ago) by dholland
Branches: MAIN
Diff to: previous 1.199: preferred, colored
Changes since revision 1.199: +15 -1 lines
Add an entry for last summer's libpthread compat fix, since it
apparently never got listed (only posted on current-users) and came up
again recently.

Thanks to Martin Husemann, Matthias Drochner, and Geoff Wing for info
(any errors are mine).

As per http://mail-index.netbsd.org/current-users/2008/08/05/msg003880.html.

Revision 1.199: download - view: text, markup, annotated - select for diffs
Thu Jul 9 07:50:24 2009 UTC (15 years, 9 months ago) by dholland
Branches: MAIN
Diff to: previous 1.198: preferred, colored
Changes since revision 1.198: +5 -4 lines
Fix a garbled old entry that I happened upon just now.

Revision 1.198: download - view: text, markup, annotated - select for diffs
Thu Jul 9 07:31:54 2009 UTC (15 years, 9 months ago) by mrg
Branches: MAIN
Diff to: previous 1.197: preferred, colored
Changes since revision 1.197: +5 -1 lines
note that update builds might again fail for new xorg

Revision 1.197: download - view: text, markup, annotated - select for diffs
Sun Jun 21 20:08:36 2009 UTC (15 years, 10 months ago) by mrg
Branches: MAIN
Diff to: previous 1.196: preferred, colored
Changes since revision 1.196: +8 -1 lines
add a note about native xorg updates

Revision 1.152.2.1: download - view: text, markup, annotated - select for diffs
Fri Jun 5 17:19:26 2009 UTC (15 years, 11 months ago) by snj
Branches: netbsd-4
Diff to: previous 1.152: preferred, colored; next MAIN 1.153: preferred, colored
Changes since revision 1.152: +12 -1 lines
Pull up pkg_install-20090528, libarchive-2.5.5 and libfetch-2.23
with the associated build infrastructure as of 20090929 from HEAD.

Revision 1.152.6.1: download - view: text, markup, annotated - select for diffs
Fri Jun 5 17:01:43 2009 UTC (15 years, 11 months ago) by snj
Branches: netbsd-4-0
Diff to: previous 1.152: preferred, colored; next MAIN 1.153: preferred, colored
Changes since revision 1.152: +12 -1 lines
Apply patch (requested by joerg in ticket #1322):
Pull up pkg_install-20090528, libarchive-2.5.5 and libfetch-2.23
with the associated build infrastructure as of 20090529 from HEAD.

Revision 1.178.2.2: download - view: text, markup, annotated - select for diffs
Sat May 30 16:40:30 2009 UTC (15 years, 11 months ago) by snj
Branches: netbsd-5
CVS tags: netbsd-5-1-RC2, netbsd-5-1-RC1
Diff to: previous 1.178.2.1: preferred, colored; branchpoint 1.178: preferred, colored
Changes since revision 1.178.2.1: +12 -1 lines
Pull up following revision(s) (requested by joerg in ticket #784):
	UPDATING: patch
	distrib/sets/lists/base/mi: patch
	distrib/sets/lists/etc/mi: patch
	distrib/sets/lists/man/mi: patch
	external/bsd/pkg_install/Makefile.inc: patch
	external/bsd/pkg_install/prepare-import.sh: patch
	external/bsd/pkg_install/dist/add/add.h: pkg_install-20090528
	external/bsd/pkg_install/dist/add/main.c: pkg_install-20090528
	external/bsd/pkg_install/dist/add/perform.c: pkg_install-20090528
	external/bsd/pkg_install/dist/add/pkg_add.1: pkg_install-20090528
	external/bsd/pkg_install/dist/admin/admin.h: pkg_install-20090528
	external/bsd/pkg_install/dist/admin/audit.c: pkg_install-20090528
	external/bsd/pkg_install/dist/admin/check.c: pkg_install-20090528
	external/bsd/pkg_install/dist/admin/main.c: pkg_install-20090528
	external/bsd/pkg_install/dist/admin/pkg_admin.1: pkg_install-20090528
	external/bsd/pkg_install/dist/bpm/bpm.1: pkg_install-20090528
	external/bsd/pkg_install/dist/create/build.c: pkg_install-20090528
	external/bsd/pkg_install/dist/create/create.h: pkg_install-20090528
	external/bsd/pkg_install/dist/create/main.c: pkg_install-20090528
	external/bsd/pkg_install/dist/create/perform.c: pkg_install-20090528
	external/bsd/pkg_install/dist/create/pkg_create.1: pkg_install-20090528
	external/bsd/pkg_install/dist/create/pl.c: pkg_install-20090528
	external/bsd/pkg_install/dist/create/util.c: pkg_install-20090528
	external/bsd/pkg_install/dist/delete/pkg_delete.1: pkg_install-20090528
	external/bsd/pkg_install/dist/info/info.h: pkg_install-20090528
	external/bsd/pkg_install/dist/info/main.c: pkg_install-20090528
	external/bsd/pkg_install/dist/info/perform.c: pkg_install-20090528
	external/bsd/pkg_install/dist/info/pkg_info.1: pkg_install-20090528
	external/bsd/pkg_install/dist/info/show.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/automatic.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/config.h.in: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/conflicts.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/decompress.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/dewey.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/fexec.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/file.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/global.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/iterate.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/lib.h: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/lpkg.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/opattern.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/pkg_io.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/pkg_summary.5: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/pkgdb.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/plist.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/str.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/var.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/version.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/version.h: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/vulnerabilities-file.c: pkg_install-20090528
	external/bsd/pkg_install/dist/admin/audit-packages.sh.in: pkg_install-20090528
	external/bsd/pkg_install/dist/admin/download-vulnerability-list.sh.in: pkg_install-20090528
	external/bsd/pkg_install/dist/delete/pkg_delete.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/gpgsig.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/license.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/parse-config.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/pkcs7.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/pkg_install.conf.5.in: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/pkg_signature.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/remove.c: pkg_install-20090528
	external/bsd/pkg_install/dist/lib/xwrapper.c: pkg_install-20090528
	external/bsd/pkg_install/dist/x509/pkgsrc.cnf: pkg_install-20090528
	external/bsd/pkg_install/dist/x509/pkgsrc.sh: pkg_install-20090528
	external/bsd/pkg_install/dist/x509/signing.txt: pkg_install-20090528
	external/bsd/pkg_install/lib/Makefile: patch
	external/bsd/pkg_install/sbin/Makefile: patch
	external/bsd/pkg_install/sbin/Makefile.inc: patch
	external/bsd/pkg_install/sbin/pkg_add/Makefile: patch
	external/bsd/pkg_install/sbin/pkg_admin/Makefile: patch
	external/bsd/pkg_install/sbin/pkg_create/Makefile: patch
	external/bsd/pkg_install/sbin/pkg_delete/Makefile: patch
	external/bsd/pkg_install/sbin/pkg_info/Makefile: patch
	external/bsd/pkg_install/dist/add/extract.c: removed
	external/bsd/pkg_install/dist/add/futil.c: removed
	external/bsd/pkg_install/dist/add/verify.c: removed
	external/bsd/pkg_install/dist/add/verify.h: removed
	external/bsd/pkg_install/dist/admin/config.c: removed
	external/bsd/pkg_install/dist/audit-packages/AUTHORS: removed
	external/bsd/pkg_install/dist/audit-packages/COPYING: removed
	external/bsd/pkg_install/dist/audit-packages/README: removed
	external/bsd/pkg_install/dist/audit-packages/audit-packages.1.in: removed
	external/bsd/pkg_install/dist/audit-packages/audit-packages.c: removed
	external/bsd/pkg_install/dist/audit-packages/audit-packages.conf.5.in: removed
	external/bsd/pkg_install/dist/audit-packages/audit-packages.conf.in: removed
	external/bsd/pkg_install/dist/audit-packages/download-vulnerability-list.1.in: removed
	external/bsd/pkg_install/dist/audit-packages/download-vulnerability-list.sh.in: removed
	external/bsd/pkg_install/dist/delete/delete.h: removed
	external/bsd/pkg_install/dist/delete/main.c: removed
	external/bsd/pkg_install/dist/delete/perform.c: removed
	external/bsd/pkg_install/dist/lib/ftpio.c: removed
	external/bsd/pkg_install/dist/lib/path.c: removed
	external/bsd/pkg_install/dist/lib/path.h: removed
	external/bsd/pkg_install/dist/lib/pen.c: removed
	external/bsd/pkg_install/dist/lib/pexec.c: removed
	external/bsd/pkg_install/dist/view/linkfarm.1: removed
	external/bsd/pkg_install/dist/view/linkfarm.sh.in: removed
	external/bsd/pkg_install/dist/view/pkg_view.1: removed
	external/bsd/pkg_install/dist/view/pkg_view.sh.in: removed
	external/bsd/pkg_install/sbin/audit-packages/Makefile: removed
	external/bsd/pkg_install/sbin/pkg_view/Makefile: removed
Merge pkg_install-20090528 from HEAD.

Revision 1.178.2.1.2.1: download - view: text, markup, annotated - select for diffs
Sat May 30 16:30:24 2009 UTC (15 years, 11 months ago) by snj
Branches: netbsd-5-0
CVS tags: netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20091211, matt-nb4-mips64-k7-u2a-k9b
Branch point for: matt-nb5-mips64
Diff to: previous 1.178.2.1: preferred, colored; next MAIN 1.178.2.2: preferred, colored
Changes since revision 1.178.2.1: +12 -1 lines
Apply patch (requested by joerg in ticket #784):
Note new pkg_install.

Revision 1.196: download - view: text, markup, annotated - select for diffs
Wed May 27 18:02:57 2009 UTC (15 years, 11 months ago) by dholland
Branches: MAIN
Diff to: previous 1.195: preferred, colored
Changes since revision 1.195: +5 -1 lines
Add note about Postgres WRT the time_t change.

Revision 1.193.2.1: download - view: text, markup, annotated - select for diffs
Wed May 13 19:15:48 2009 UTC (15 years, 11 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.193: preferred, colored; next MAIN 1.194: preferred, colored
Changes since revision 1.193: +13 -1 lines
Sync with HEAD.

Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html

Revision 1.195: download - view: text, markup, annotated - select for diffs
Fri May 1 23:08:25 2009 UTC (16 years ago) by perry
Branches: MAIN
CVS tags: jym-xensuspend-nbase, jym-xensuspend-base
Diff to: previous 1.194: preferred, colored
Changes since revision 1.194: +9 -1 lines
note a new failure mode thanks to the new string functions
requested by mrg

Revision 1.194: download - view: text, markup, annotated - select for diffs
Sun Mar 29 18:33:56 2009 UTC (16 years, 1 month ago) by mrg
Branches: MAIN
Diff to: previous 1.193: preferred, colored
Changes since revision 1.193: +5 -1 lines
add a note about needing to rebuild i386 toolchain

Revision 1.193: download - view: text, markup, annotated - select for diffs
Sun Feb 8 11:58:25 2009 UTC (16 years, 2 months ago) by skrll
Branches: MAIN
Branch point for: jym-xensuspend
Diff to: previous 1.192: preferred, colored
Changes since revision 1.192: +3 -3 lines
s/posix_fadvise/__posix_fadvise50/ in last.

Revision 1.192: download - view: text, markup, annotated - select for diffs
Sat Feb 7 13:44:48 2009 UTC (16 years, 2 months ago) by skrll
Branches: MAIN
Diff to: previous 1.191: preferred, colored
Changes since revision 1.191: +6 -1 lines
posix_fadvise needs help again.

Revision 1.191: download - view: text, markup, annotated - select for diffs
Thu Feb 5 20:00:58 2009 UTC (16 years, 3 months ago) by joerg
Branches: MAIN
Diff to: previous 1.190: preferred, colored
Changes since revision 1.190: +6 -1 lines
Add recommendation to rebuild the pkgdb cache after an update.

Revision 1.190: download - view: text, markup, annotated - select for diffs
Wed Jan 21 14:19:58 2009 UTC (16 years, 3 months ago) by apb
Branches: MAIN
Diff to: previous 1.189: preferred, colored
Changes since revision 1.189: +13 -5 lines
Try to clarify the situation for utmp/utmpx/wtmpx/account files after
the time_t and dev_t changes.  I am not sure that this is accurate,
and there's no mention of the wtmp file.

Revision 1.189: download - view: text, markup, annotated - select for diffs
Wed Jan 14 15:53:29 2009 UTC (16 years, 3 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.188: preferred, colored
Changes since revision 1.188: +4 -2 lines
Make it clearer how link time failures in packages can be fixed
OK'd by christos

Revision 1.188: download - view: text, markup, annotated - select for diffs
Sun Jan 11 18:00:04 2009 UTC (16 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.187: preferred, colored
Changes since revision 1.187: +5 -2 lines
provide more details.

Revision 1.187: download - view: text, markup, annotated - select for diffs
Sun Jan 11 03:32:44 2009 UTC (16 years, 3 months ago) by dholland
Branches: MAIN
Diff to: previous 1.186: preferred, colored
Changes since revision 1.186: +2 -2 lines
fix typo

Revision 1.186: download - view: text, markup, annotated - select for diffs
Sun Jan 11 03:31:12 2009 UTC (16 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.185: preferred, colored
Changes since revision 1.185: +6 -1 lines
mentioned files that need changing.

Revision 1.185: download - view: text, markup, annotated - select for diffs
Sun Jan 11 03:28:45 2009 UTC (16 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.184: preferred, colored
Changes since revision 1.184: +2 -1 lines
add whitespace

Revision 1.184: download - view: text, markup, annotated - select for diffs
Sun Jan 11 03:20:31 2009 UTC (16 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.183: preferred, colored
Changes since revision 1.183: +14 -1 lines
mention how to deal with christos-time_t

Revision 1.183: download - view: text, markup, annotated - select for diffs
Fri Dec 19 20:37:45 2008 UTC (16 years, 4 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.182: preferred, colored
Changes since revision 1.182: +8 -1 lines
Add a note concerning this morning's changes to config(1).

Revision 1.182: download - view: text, markup, annotated - select for diffs
Sun Dec 7 10:29:39 2008 UTC (16 years, 5 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.181: preferred, colored
Changes since revision 1.181: +2 -2 lines
amd64 GENERIC still has compat and file-system options
so it doesn't require installed modules yet.

Revision 1.178.2.1: download - view: text, markup, annotated - select for diffs
Sat Dec 6 22:09:18 2008 UTC (16 years, 5 months ago) by snj
Branches: netbsd-5
CVS tags: netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1
Branch point for: netbsd-5-0
Diff to: previous 1.178: preferred, colored
Changes since revision 1.178: +5 -1 lines
Pull up following revision(s) (requested by cube in ticket #168):
	UPDATING: revision 1.181
Mention that /etc/rc.d/x{dm,fs} moved to xetc and will thus appear as extra
files for MKX11=no update builds.

Revision 1.181: download - view: text, markup, annotated - select for diffs
Sat Dec 6 20:23:38 2008 UTC (16 years, 5 months ago) by cube
Branches: MAIN
Diff to: previous 1.180: preferred, colored
Changes since revision 1.180: +5 -1 lines
Mention that /etc/rc.d/x{dm,fs} moved to xetc and will thus appear as extra
files for MKX11=no update builds.

Revision 1.180: download - view: text, markup, annotated - select for diffs
Wed Nov 26 19:00:34 2008 UTC (16 years, 5 months ago) by wiz
Branches: MAIN
Diff to: previous 1.179: preferred, colored
Changes since revision 1.179: +8 -8 lines
Improve grammar.

Revision 1.179: download - view: text, markup, annotated - select for diffs
Tue Nov 25 14:27:43 2008 UTC (16 years, 5 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.178: preferred, colored
Changes since revision 1.178: +16 -1 lines
Mention that i386 and amd64 GENERIC kernels now require
installed kernel modules and the latest bootloader.

Revision 1.170.6.2: download - view: text, markup, annotated - select for diffs
Thu Sep 18 04:27:24 2008 UTC (16 years, 7 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.170.6.1: preferred, colored; branchpoint 1.170: preferred, colored; next MAIN 1.171: preferred, colored
Changes since revision 1.170.6.1: +30 -1 lines
Sync with wrstuden-revivesa-base-2.

Revision 1.178: download - view: text, markup, annotated - select for diffs
Tue Sep 2 07:34:15 2008 UTC (16 years, 8 months ago) by lukem
Branches: MAIN
CVS tags: wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, netbsd-5-base, matt-mips64-base2
Branch point for: netbsd-5
Diff to: previous 1.177: preferred, colored
Changes since revision 1.177: +10 -1 lines
Add an entry for the "libc lint problem", mostly taken
from Matthias Drochner <drochner>'s post:
  http://mail-index.netbsd.org/current-users/2008/08/28/msg004193.html

Revision 1.177: download - view: text, markup, annotated - select for diffs
Wed Aug 13 16:37:56 2008 UTC (16 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.176: preferred, colored
Changes since revision 1.176: +5 -1 lines
mention stale libfoo_g.a fix.

Revision 1.176: download - view: text, markup, annotated - select for diffs
Sat Aug 2 14:30:37 2008 UTC (16 years, 9 months ago) by simonb
Branches: MAIN
Diff to: previous 1.175: preferred, colored
Changes since revision 1.175: +4 -2 lines
Note in WAPBL entry that the super block needs to be in UFS2 format.

Revision 1.175: download - view: text, markup, annotated - select for diffs
Fri Aug 1 07:34:57 2008 UTC (16 years, 9 months ago) by simonb
Branches: MAIN
Diff to: previous 1.174: preferred, colored
Changes since revision 1.174: +8 -1 lines
Add a note about WAPBL and backwards compatibility.

Revision 1.174: download - view: text, markup, annotated - select for diffs
Wed Jul 23 00:29:35 2008 UTC (16 years, 9 months ago) by lukem
Branches: MAIN
Diff to: previous 1.173: preferred, colored
Changes since revision 1.173: +8 -1 lines
Add entries for WARNS>0 enabling fatal warnings in the linker & assembler.

Revision 1.170.6.1: download - view: text, markup, annotated - select for diffs
Mon Jun 23 04:26:44 2008 UTC (16 years, 10 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.170: preferred, colored
Changes since revision 1.170: +24 -1 lines
Sync w/ -current. 34 merge conflicts to follow.

Revision 1.170.4.1: download - view: text, markup, annotated - select for diffs
Wed Jun 4 02:02:56 2008 UTC (16 years, 11 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.170: preferred, colored; next MAIN 1.171: preferred, colored
Changes since revision 1.170: +24 -1 lines
sync with head

Revision 1.173: download - view: text, markup, annotated - select for diffs
Sat May 31 13:24:57 2008 UTC (16 years, 11 months ago) by freza
Branches: MAIN
CVS tags: yamt-pf42-base4, yamt-pf42-base3, wrstuden-revivesa-base-1, wrstuden-revivesa-base
Diff to: previous 1.172: preferred, colored
Changes since revision 1.172: +13 -1 lines
Change DRVSUSPENDDEV ioctl number. Fixes PR kern/38740.

Revision 1.172: download - view: text, markup, annotated - select for diffs
Sat May 31 09:47:23 2008 UTC (16 years, 11 months ago) by lukem
Branches: MAIN
Diff to: previous 1.171: preferred, colored
Changes since revision 1.171: +4 -1 lines
entry for MKPRIVATELIB rename to LIBISPRIVATE

Revision 1.171: download - view: text, markup, annotated - select for diffs
Wed May 21 20:01:37 2008 UTC (16 years, 11 months ago) by he
Branches: MAIN
Diff to: previous 1.170: preferred, colored
Changes since revision 1.170: +9 -1 lines
Explain how to get out of the problem related to the kernel modules
directory in an unprivileged UPDATE build.

Revision 1.163.4.3: download - view: text, markup, annotated - select for diffs
Sun Mar 23 00:12:06 2008 UTC (17 years, 1 month ago) by matt
Branches: matt-armv6
Diff to: previous 1.163.4.2: preferred, colored; branchpoint 1.163: preferred, colored; next MAIN 1.164: preferred, colored
Changes since revision 1.163.4.2: +7 -1 lines
sync with HEAD

Revision 1.170: download - view: text, markup, annotated - select for diffs
Mon Jan 28 03:30:26 2008 UTC (17 years, 3 months ago) by christos
Branches: MAIN
CVS tags: yamt-pf42-baseX, yamt-pf42-base2, yamt-pf42-base, matt-armv6-nbase, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-nbase, hpcarm-cleanup-base
Branch point for: yamt-pf42, wrstuden-revivesa
Diff to: previous 1.169: preferred, colored
Changes since revision 1.169: +7 -1 lines
mention posix_fadvise lossage.

Revision 1.163.4.2: download - view: text, markup, annotated - select for diffs
Wed Jan 9 01:19:18 2008 UTC (17 years, 3 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.163.4.1: preferred, colored; branchpoint 1.163: preferred, colored
Changes since revision 1.163.4.1: +14 -2 lines
sync with HEAD

Revision 1.169: download - view: text, markup, annotated - select for diffs
Mon Dec 17 23:59:41 2007 UTC (17 years, 4 months ago) by wiz
Branches: MAIN
CVS tags: matt-armv6-base
Diff to: previous 1.168: preferred, colored
Changes since revision 1.168: +2 -2 lines
Fix typo.

Revision 1.168: download - view: text, markup, annotated - select for diffs
Mon Dec 17 14:38:40 2007 UTC (17 years, 4 months ago) by joerg
Branches: MAIN
Diff to: previous 1.167: preferred, colored
Changes since revision 1.167: +6 -1 lines
Belatedly add a note about acpiec changes from the jmcneill-pm merge.

Revision 1.167: download - view: text, markup, annotated - select for diffs
Sat Nov 17 09:53:16 2007 UTC (17 years, 5 months ago) by wiz
Branches: MAIN
CVS tags: cube-autoconf-base, cube-autoconf
Diff to: previous 1.166: preferred, colored
Changes since revision 1.166: +3 -3 lines
Fix a few typos.

Revision 1.166: download - view: text, markup, annotated - select for diffs
Thu Nov 15 12:53:43 2007 UTC (17 years, 5 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.165: preferred, colored
Changes since revision 1.165: +8 -1 lines
Rename it(4) to itesio(4) to accomodate for the following changes:

- The driver now uses the Super I/O address port as port argument in
  the configuration file. The Environmental Controller base address is
  fetched by the Super I/O EC LDN configuration registers.

- Invalidate voltage sensors if data returned is 0xff.

- Use the Super I/O Global Configuration Registers Chip ID[12] and Device
  Revision to store/print the correct information.

- Use only the Fan Extended Tachometer registers on IT871[68]F for now;
  this gives us correct data for IT8705/IT8712F again.

Inspired by the smsc(4) driver. The UPDATING file has been updated to
reflect the rename.

Revision 1.163.4.1: download - view: text, markup, annotated - select for diffs
Tue Nov 6 23:07:11 2007 UTC (17 years, 6 months ago) by matt
Branches: matt-armv6
CVS tags: matt-armv6-prevmlocking
Diff to: previous 1.163: preferred, colored
Changes since revision 1.163: +19 -1 lines
sync with HEAD

Revision 1.165: download - view: text, markup, annotated - select for diffs
Sun Oct 28 18:13:38 2007 UTC (17 years, 6 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.164: preferred, colored
Changes since revision 1.164: +9 -1 lines
Note the removal of pccons(4) from NetBSD/shark.

Revision 1.164: download - view: text, markup, annotated - select for diffs
Tue Oct 2 12:45:51 2007 UTC (17 years, 7 months ago) by gdt
Branches: MAIN
Diff to: previous 1.163: preferred, colored
Changes since revision 1.163: +11 -1 lines
At pooka@'s request, add hints about the recent
dhcp/racoon/SIOCGIFCONF lossage:

20070913:
	A latent bug in dhclient/dhcpd that caused it to be unable to
	enumerate interfaces was fixed.  The bug began to cause
	problems after 20070911 when the kernel's SIOCGIFCONF
	implementation was repaired.  From 20070529 to 20070911 racoon
	could not enumerate interfaces.  (These are noted because
	normal kernel/userspace version matching hygiene is not
	sufficient to avoid this problem.)  Ensure that both kernel
	and userland are from after 20070913.

Revision 1.163: download - view: text, markup, annotated - select for diffs
Tue Jul 3 16:35:47 2007 UTC (17 years, 10 months ago) by joerg
Branches: MAIN
CVS tags: matt-mips64-base, matt-mips64, hpcarm-cleanup
Branch point for: matt-armv6
Diff to: previous 1.162: preferred, colored
Changes since revision 1.162: +6 -1 lines
Add a note that tools have to be re-installed.

Revision 1.162: download - view: text, markup, annotated - select for diffs
Sun Jun 10 00:45:08 2007 UTC (17 years, 10 months ago) by ad
Branches: MAIN
Diff to: previous 1.161: preferred, colored
Changes since revision 1.161: +1 -720 lines
Nuke most of 2000-2006, but keep 1 year worth of changes.

Revision 1.161: download - view: text, markup, annotated - select for diffs
Mon Apr 30 20:50:20 2007 UTC (18 years ago) by dsl
Branches: MAIN
Diff to: previous 1.160: preferred, colored
Changes since revision 1.160: +12 -1 lines
Add a note about the way absolute symlinks inside the emulated root are now
handeld.

Revision 1.160: download - view: text, markup, annotated - select for diffs
Thu Apr 12 13:17:56 2007 UTC (18 years ago) by jmcneill
Branches: MAIN
Diff to: previous 1.159: preferred, colored
Changes since revision 1.159: +6 -1 lines
Note sgimips IP32 pckbc replacement with macekbc

Revision 1.159: download - view: text, markup, annotated - select for diffs
Sun Mar 25 16:23:04 2007 UTC (18 years, 1 month ago) by gdt
Branches: MAIN
Diff to: previous 1.158: preferred, colored
Changes since revision 1.158: +10 -1 lines
Note libc Makefile problems and give advice to make cleandir in libc
and ld.elf_so.  Suggested by Ryo HAYASAKA on current-users@.

Revision 1.158: download - view: text, markup, annotated - select for diffs
Sat Mar 10 00:10:15 2007 UTC (18 years, 2 months ago) by dbj
Branches: MAIN
Diff to: previous 1.157: preferred, colored
Changes since revision 1.157: +7 -1 lines
note src/sys/sys/{sa.h,savar.h} removal and workaround

Revision 1.157: download - view: text, markup, annotated - select for diffs
Tue Feb 27 13:42:35 2007 UTC (18 years, 2 months ago) by apb
Branches: MAIN
Diff to: previous 1.156: preferred, colored
Changes since revision 1.156: +12 -1 lines
kernel after newlock2 needs libpthread after newlock2.
Text reviewed by martin.

Revision 1.156: download - view: text, markup, annotated - select for diffs
Fri Dec 15 14:18:38 2006 UTC (18 years, 4 months ago) by he
Branches: MAIN
Diff to: previous 1.155: preferred, colored
Changes since revision 1.155: +3 -2 lines
Note also that the distrib/ install images need cleaning to excise
references to the now-removed stat-flags.h file.

Revision 1.155: download - view: text, markup, annotated - select for diffs
Thu Dec 14 23:49:03 2006 UTC (18 years, 4 months ago) by he
Branches: MAIN
Diff to: previous 1.154: preferred, colored
Changes since revision 1.154: +2 -2 lines
The rescue/ directory also needs cleaninng.

Revision 1.154: download - view: text, markup, annotated - select for diffs
Thu Dec 14 20:15:32 2006 UTC (18 years, 4 months ago) by he
Branches: MAIN
Diff to: previous 1.153: preferred, colored
Changes since revision 1.153: +11 -1 lines
Add a note documenting which directories needs to be cleaned out
before doing an UPDATE build after the move of string_to_flags()
and flags_to_string() to libutil.

Revision 1.153: download - view: text, markup, annotated - select for diffs
Thu Dec 14 02:11:52 2006 UTC (18 years, 4 months ago) by reed
Branches: MAIN
Diff to: previous 1.152: preferred, colored
Changes since revision 1.152: +4 -4 lines
Fix some typos. I had this in my tree for a long time.
Hopefully, okay to change these old history ...

Revision 1.152: download - view: text, markup, annotated - select for diffs
Thu Nov 9 18:20:59 2006 UTC (18 years, 5 months ago) by christos
Branches: MAIN
CVS tags: wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, netbsd-4-base, netbsd-4-0-RELEASE, netbsd-4-0-RC5, netbsd-4-0-RC4, netbsd-4-0-RC3, netbsd-4-0-RC2, netbsd-4-0-RC1, netbsd-4-0-1-RELEASE
Branch point for: netbsd-4-0, netbsd-4
Diff to: previous 1.151: preferred, colored
Changes since revision 1.151: +7 -1 lines
mention needing gcc rebuild for ssp.

Revision 1.151: download - view: text, markup, annotated - select for diffs
Mon Oct 9 18:57:30 2006 UTC (18 years, 6 months ago) by rpaulo
Branches: MAIN
Diff to: previous 1.150: preferred, colored
Changes since revision 1.150: +5 -1 lines
Mention removal of net.inet.tcp.newreno.

Revision 1.150: download - view: text, markup, annotated - select for diffs
Tue Aug 15 20:48:01 2006 UTC (18 years, 8 months ago) by bjh21
Branches: MAIN
Diff to: previous 1.149: preferred, colored
Changes since revision 1.149: +7 -1 lines
Mention acorn32 console changes, since they'll break builds with custom
kernel configs.

Revision 1.149: download - view: text, markup, annotated - select for diffs
Tue Jul 4 00:40:43 2006 UTC (18 years, 10 months ago) by christos
Branches: MAIN
CVS tags: abandoned-netbsd-4-base, abandoned-netbsd-4
Diff to: previous 1.148: preferred, colored
Changes since revision 1.148: +6 -1 lines
Mention ACPI PCI interrupt changes (original code from FreeBSD)

Revision 1.148: download - view: text, markup, annotated - select for diffs
Tue Jun 27 21:14:11 2006 UTC (18 years, 10 months ago) by dogcow
Branches: MAIN
Diff to: previous 1.147: preferred, colored
Changes since revision 1.147: +7 -1 lines
document where and why the socket syscall changed.

Revision 1.147: download - view: text, markup, annotated - select for diffs
Fri Jun 2 19:08:00 2006 UTC (18 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.146: preferred, colored
Changes since revision 1.146: +13 -8 lines
more details.

Revision 1.146: download - view: text, markup, annotated - select for diffs
Fri Jun 2 19:01:00 2006 UTC (18 years, 11 months ago) by pavel
Branches: MAIN
Diff to: previous 1.145: preferred, colored
Changes since revision 1.145: +11 -1 lines
document that a recent linker is needed to link the i386 and xen kernels
after the changes to the ldscript.

Revision 1.145: download - view: text, markup, annotated - select for diffs
Tue Jan 31 22:54:22 2006 UTC (19 years, 3 months ago) by martin
Branches: MAIN
Diff to: previous 1.144: preferred, colored
Changes since revision 1.144: +8 -1 lines
Note new sparc64 bootloader requirement.

Revision 1.144: download - view: text, markup, annotated - select for diffs
Mon Oct 3 04:45:52 2005 UTC (19 years, 7 months ago) by yamt
Branches: MAIN
Diff to: previous 1.143: preferred, colored
Changes since revision 1.143: +8 -1 lines
note about conf/std.
(forgot to commit with conf/std.)

Revision 1.135.2.2: download - view: text, markup, annotated - select for diffs
Thu Sep 15 21:05:48 2005 UTC (19 years, 7 months ago) by tron
Branches: netbsd-3
CVS tags: netbsd-3-1-RELEASE, netbsd-3-1-RC4, netbsd-3-1-RC3, netbsd-3-1-RC2, netbsd-3-1-RC1, netbsd-3-1-1-RELEASE, netbsd-3-1, netbsd-3-0-RELEASE, netbsd-3-0-RC6, netbsd-3-0-RC5, netbsd-3-0-RC4, netbsd-3-0-RC3, netbsd-3-0-RC2, netbsd-3-0-RC1, netbsd-3-0-3-RELEASE, netbsd-3-0-2-RELEASE, netbsd-3-0-1-RELEASE, netbsd-3-0
Diff to: previous 1.135.2.1: preferred, colored; branchpoint 1.135: preferred, colored; next MAIN 1.136: preferred, colored
Changes since revision 1.135.2.1: +6 -0 lines
Pull up following revision(s) (requested by lukem in ticket #788):
	distrib/sets/lists/etc/mi: revision 1.160
	UPDATING: revision 1.143 via patch
Don't mark /etc/namedb/named.conf as "obsolete" since that will cause
a file that has end-user configuration to be unconditionally removed.
Instead, remove the entry from the set list, and add a note to UPDATING
reminding users of MKUPDATE=yes to manually rectify the problem in
their DESTDIR.
The "named" fix in postinstall(8) will migrate /etc/namedb/named.conf
to /etc/named.conf if the latter doesn't exist.
(The need for these style of migrations was why I implemented postinstall(8)
in the first place.)

Revision 1.143: download - view: text, markup, annotated - select for diffs
Wed Sep 14 00:32:26 2005 UTC (19 years, 7 months ago) by lukem
Branches: MAIN
Diff to: previous 1.142: preferred, colored
Changes since revision 1.142: +7 -1 lines
Don't mark /etc/namedb/named.conf as "obsolete" since that will cause
a file that has end-user configuration to be unconditionally removed.
Instead, remove the entry from the set list, and add a note to UPDATING
reminding users of MKUPDATE=yes to manually rectify the problem in
their DESTDIR.

The "named" fix in postinstall(8) will migrate /etc/namedb/named.conf
to /etc/named.conf if the latter doesn't exist.
(The need for these style of migrations was why I implemented postinstall(8)
in the first place.)

Revision 1.142: download - view: text, markup, annotated - select for diffs
Thu Aug 25 16:01:14 2005 UTC (19 years, 8 months ago) by drochner
Branches: MAIN
Diff to: previous 1.141: preferred, colored
Changes since revision 1.141: +11 -8 lines
mention recent kernel config change,
being here, usr.sbin/config -> usr.bin/config where appropriate,
and remove references to egcs

Revision 1.141: download - view: text, markup, annotated - select for diffs
Fri Jul 1 09:55:37 2005 UTC (19 years, 10 months ago) by augustss
Branches: MAIN
Diff to: previous 1.140: preferred, colored
Changes since revision 1.140: +3 -3 lines
It's genassym(1) not genassym(8), and it's in /usr/bin not /usr/sbin.

Revision 1.140: download - view: text, markup, annotated - select for diffs
Fri Jun 3 11:02:59 2005 UTC (19 years, 11 months ago) by yamt
Branches: MAIN
Diff to: previous 1.139: preferred, colored
Changes since revision 1.139: +5 -1 lines
note about kernfs fix and xentools.

Revision 1.139: download - view: text, markup, annotated - select for diffs
Tue May 31 18:42:44 2005 UTC (19 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.138: preferred, colored
Changes since revision 1.138: +6 -1 lines
Add an entry for genassym.

Revision 1.135.2.1: download - view: text, markup, annotated - select for diffs
Wed Apr 20 11:40:16 2005 UTC (20 years ago) by tron
Branches: netbsd-3
Diff to: previous 1.135: preferred, colored
Changes since revision 1.135: +7 -1 lines
Pull up revision 1.138 via patch (requested by lukem in ticket #168):
Tweaks for the move of postinstall from /etc to /usr/sbin

Revision 1.138: download - view: text, markup, annotated - select for diffs
Sun Apr 17 23:12:40 2005 UTC (20 years ago) by lukem
Branches: MAIN
Diff to: previous 1.137: preferred, colored
Changes since revision 1.137: +7 -1 lines
Tweaks for the move of postinstall from /etc to /usr/sbin

Revision 1.137: download - view: text, markup, annotated - select for diffs
Mon Apr 11 15:36:46 2005 UTC (20 years ago) by cube
Branches: MAIN
Diff to: previous 1.136: preferred, colored
Changes since revision 1.136: +5 -4 lines
Add a note into 20050325 entry that the speaker might not even play any
sound if you don't add an attimer(4) device, as pointed out by Steven M.
Bellovin.

Revision 1.136: download - view: text, markup, annotated - select for diffs
Sat Mar 26 14:25:25 2005 UTC (20 years, 1 month ago) by cube
Branches: MAIN
Diff to: previous 1.135: preferred, colored
Changes since revision 1.135: +9 -1 lines
Add a note about pcppi -> pcppi+attimer.

Revision 1.135: download - view: text, markup, annotated - select for diffs
Fri Feb 11 17:50:13 2005 UTC (20 years, 2 months ago) by jmc
Branches: MAIN
CVS tags: netbsd-3-base
Branch point for: netbsd-3
Diff to: previous 1.134: preferred, colored
Changes since revision 1.134: +8 -1 lines
Note that configure in some places (binutils is what got me) will abort if
the new environment is different than the original configured one (i.e. for
UPDATE=1)

Revision 1.134: download - view: text, markup, annotated - select for diffs
Sun Jan 9 07:31:31 2005 UTC (20 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.133: preferred, colored
Changes since revision 1.133: +7 -1 lines
Mention /etc/pam.d requirement.

Revision 1.133: download - view: text, markup, annotated - select for diffs
Thu Jan 6 23:28:56 2005 UTC (20 years, 4 months ago) by christos
Branches: MAIN
Diff to: previous 1.132: preferred, colored
Changes since revision 1.132: +7 -1 lines
mention make lossage

Revision 1.132: download - view: text, markup, annotated - select for diffs
Tue Jan 4 19:14:00 2005 UTC (20 years, 4 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.131: preferred, colored
Changes since revision 1.131: +2 -2 lines
Drop duplicate word.

Revision 1.131: download - view: text, markup, annotated - select for diffs
Thu Dec 2 00:00:11 2004 UTC (20 years, 5 months ago) by wiz
Branches: MAIN
Diff to: previous 1.130: preferred, colored
Changes since revision 1.130: +2 -2 lines
Only delete /dev/bpf[0-9]*, not /dev/bpf too :).

Revision 1.130: download - view: text, markup, annotated - select for diffs
Wed Dec 1 23:55:19 2004 UTC (20 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.129: preferred, colored
Changes since revision 1.129: +5 -1 lines
Mention /dev/bpfX -> /dev/bpf

Revision 1.129: download - view: text, markup, annotated - select for diffs
Tue Oct 12 04:03:20 2004 UTC (20 years, 6 months ago) by jmc
Branches: MAIN
Diff to: previous 1.128: preferred, colored
Changes since revision 1.128: +13 -1 lines
Note the breakage w. 1.35 of var.c in /bin/sh and the need to update /bin/sh
before attempting a build

Revision 1.128: download - view: text, markup, annotated - select for diffs
Sat Oct 2 16:24:32 2004 UTC (20 years, 7 months ago) by he
Branches: MAIN
Diff to: previous 1.127: preferred, colored
Changes since revision 1.127: +3 -3 lines
Complete the list of victims of the IPF relocation by adding ftp-proxy.

Revision 1.127: download - view: text, markup, annotated - select for diffs
Fri Oct 1 15:29:23 2004 UTC (20 years, 7 months ago) by christos
Branches: MAIN
Diff to: previous 1.126: preferred, colored
Changes since revision 1.126: +8 -1 lines
say what breaks now that we've moved ipf out of netinet.

Revision 1.126: download - view: text, markup, annotated - select for diffs
Sun Aug 15 16:02:59 2004 UTC (20 years, 8 months ago) by lukem
Branches: MAIN
Diff to: previous 1.125: preferred, colored
Changes since revision 1.125: +6 -1 lines
postinstall currently does not migrate /usr/X11R6/lib/X11/* -> /etc/X11/*

Revision 1.114.2.2: download - view: text, markup, annotated - select for diffs
Tue Aug 3 22:32:12 2004 UTC (20 years, 9 months ago) by jmc
Branches: netbsd-2-0
CVS tags: netbsd-2-base, netbsd-2-1-RELEASE, netbsd-2-1-RC6, netbsd-2-1-RC5, netbsd-2-1-RC4, netbsd-2-1-RC3, netbsd-2-1-RC2, netbsd-2-1-RC1, netbsd-2-1, netbsd-2-0-RELEASE, netbsd-2-0-RC5, netbsd-2-0-RC4, netbsd-2-0-RC3, netbsd-2-0-RC2, netbsd-2-0-RC1, netbsd-2-0-3-RELEASE, netbsd-2-0-2-RELEASE, netbsd-2-0-1-RELEASE, netbsd-2
Diff to: previous 1.114.2.1: preferred, colored; branchpoint 1.114: preferred, colored; next MAIN 1.115: preferred, colored
Changes since revision 1.114.2.1: +27 -1 lines
Pullup patch (requested by martin in ticket #726)

Describe the sysctl failure case.

Revision 1.114.2.1: download - view: text, markup, annotated - select for diffs
Fri Jul 23 08:45:42 2004 UTC (20 years, 9 months ago) by tron
Branches: netbsd-2-0
Diff to: previous 1.114: preferred, colored
Changes since revision 1.114: +21 -1 lines
Pull up revision 1.125 via patch (requested by atatat in ticket #687):
Note the sendmail auto-start change, add a note about the ath
reworking, and fix a little spacing and unnecessary abbreviation.

Revision 1.125: download - view: text, markup, annotated - select for diffs
Thu Jul 22 03:55:33 2004 UTC (20 years, 9 months ago) by atatat
Branches: MAIN
Diff to: previous 1.124: preferred, colored
Changes since revision 1.124: +22 -3 lines
Note the sendmail auto-start change, add a note about the ath
reworking, and fix a little spacing and unnecessary abbreviation.

Revision 1.124: download - view: text, markup, annotated - select for diffs
Tue Jun 22 01:29:51 2004 UTC (20 years, 10 months ago) by jmc
Branches: MAIN
Diff to: previous 1.123: preferred, colored
Changes since revision 1.123: +11 -1 lines
Include notes about purging most of tools/* before building to get correctly
generated yacc/lex output files from new bsd.hostprog.mk

Revision 1.123: download - view: text, markup, annotated - select for diffs
Sun Jun 13 08:08:43 2004 UTC (20 years, 10 months ago) by jmc
Branches: MAIN
Diff to: previous 1.122: preferred, colored
Changes since revision 1.122: +33 -16 lines
Add suggested wording from PR#24654 to reference BUILDING and build.sh as
the first place one should go when building.

Revision 1.122: download - view: text, markup, annotated - select for diffs
Mon May 31 00:18:58 2004 UTC (20 years, 11 months ago) by itojun
Branches: MAIN
Diff to: previous 1.121: preferred, colored
Changes since revision 1.121: +6 -1 lines
sysctl update: describe failure case.

Revision 1.121: download - view: text, markup, annotated - select for diffs
Sun May 16 11:33:44 2004 UTC (20 years, 11 months ago) by lukem
Branches: MAIN
Diff to: previous 1.120: preferred, colored
Changes since revision 1.120: +8 -2 lines
src/x11 stuff after the /etc/X11 change

Revision 1.120: download - view: text, markup, annotated - select for diffs
Mon May 3 04:12:21 2004 UTC (21 years ago) by atatat
Branches: MAIN
Diff to: previous 1.119: preferred, colored
Changes since revision 1.119: +8 -4 lines
You also need a new libc for the new sysctl binary to work.

Revision 1.119: download - view: text, markup, annotated - select for diffs
Mon May 3 03:57:15 2004 UTC (21 years ago) by atatat
Branches: MAIN
Diff to: previous 1.118: preferred, colored
Changes since revision 1.118: +18 -1 lines
Note the change to the sysctl machinery, and how to rebootstrap
yourself if both your boots appear to have fallen off.

Revision 1.118: download - view: text, markup, annotated - select for diffs
Sun Apr 25 21:16:57 2004 UTC (21 years ago) by dbj
Branches: MAIN
Diff to: previous 1.117: preferred, colored
Changes since revision 1.117: +13 -1 lines
mention the fixsb script and updated information on botched superblock
upgrade issues

Revision 1.117: download - view: text, markup, annotated - select for diffs
Fri Apr 23 19:44:47 2004 UTC (21 years ago) by jmc
Branches: MAIN
Diff to: previous 1.116: preferred, colored
Changes since revision 1.116: +2 -2 lines
Typo police

Revision 1.116: download - view: text, markup, annotated - select for diffs
Fri Apr 23 15:07:31 2004 UTC (21 years ago) by christos
Branches: MAIN
Diff to: previous 1.115: preferred, colored
Changes since revision 1.115: +3 -2 lines
be more specific about what to cleanup.

Revision 1.115: download - view: text, markup, annotated - select for diffs
Thu Apr 22 14:35:55 2004 UTC (21 years ago) by christos
Branches: MAIN
Diff to: previous 1.114: preferred, colored
Changes since revision 1.114: +9 -2 lines
Mention statvfs pitfalls.

Revision 1.114.4.2: download - view: text, markup, annotated - select for diffs
Sun Apr 11 02:23:45 2004 UTC (21 years ago) by jmc
Branches: netbsd-1-5
Diff to: previous 1.114.4.1: preferred, colored; branchpoint 1.114: preferred, colored; next MAIN 1.115: preferred, colored
Changes since revision 1.114.4.1: +20 -0 lines
Add UPDATING and note requirements needed to build a complete post 1.5.3

Revision 1.114.4.1
Fri Mar 26 17:48:13 2004 UTC (21 years, 1 month ago) by jmc
Branches: netbsd-1-5
FILE REMOVED
Changes since revision 1.114: +0 -683 lines
file UPDATING was added on branch netbsd-1-5 on 2004-04-11 02:23:45 +0000

Revision 1.114: download - view: text, markup, annotated - select for diffs
Fri Mar 26 17:48:13 2004 UTC (21 years, 1 month ago) by jmc
Branches: MAIN
CVS tags: netbsd-2-0-base
Branch point for: netbsd-2-0, netbsd-1-5
Diff to: previous 1.113: preferred, colored
Changes since revision 1.113: +11 -1 lines
Note need for latest bsd.files.mk now wrt athhal-elf.o

Revision 1.113: download - view: text, markup, annotated - select for diffs
Thu Mar 18 11:03:57 2004 UTC (21 years, 1 month ago) by dan
Branches: MAIN
Diff to: previous 1.112: preferred, colored
Changes since revision 1.112: +9 -1 lines
Note cgd blowfish changes, see comments in sys/dev/cgd.c 1.15 for more
details.

Revision 1.112: download - view: text, markup, annotated - select for diffs
Tue Mar 16 14:33:03 2004 UTC (21 years, 1 month ago) by keihan
Branches: MAIN
Diff to: previous 1.111: preferred, colored
Changes since revision 1.111: +2 -2 lines
s/netbsd.org/NetBSD.org/

Revision 1.111: download - view: text, markup, annotated - select for diffs
Sun Mar 14 21:08:10 2004 UTC (21 years, 1 month ago) by simonb
Branches: MAIN
Diff to: previous 1.110: preferred, colored
Changes since revision 1.110: +16 -16 lines
Use tabs consistently at the start of lines.

Revision 1.110: download - view: text, markup, annotated - select for diffs
Sun Mar 14 14:56:47 2004 UTC (21 years, 1 month ago) by dbj
Branches: MAIN
Diff to: previous 1.109: preferred, colored
Changes since revision 1.109: +2 -2 lines
update information about the botched superblock messages

Revision 1.109: download - view: text, markup, annotated - select for diffs
Sun Mar 14 14:56:00 2004 UTC (21 years, 1 month ago) by dbj
Branches: MAIN
Diff to: previous 1.108: preferred, colored
Changes since revision 1.108: +16 -12 lines
update information about the botched superblock messages

Revision 1.108: download - view: text, markup, annotated - select for diffs
Sat Mar 13 20:03:52 2004 UTC (21 years, 1 month ago) by bjh21
Branches: MAIN
Diff to: previous 1.107: preferred, colored
Changes since revision 1.107: +7 -1 lines
Mention required kernel config change caused by death of busmouse(4)
on acorn32.

Revision 1.107: download - view: text, markup, annotated - select for diffs
Mon Feb 23 22:51:51 2004 UTC (21 years, 2 months ago) by reinoud
Branches: MAIN
Diff to: previous 1.106: preferred, colored
Changes since revision 1.106: +9 -1 lines
It wasn't stated that with the superblock problems that were fixed before
it is also needed to update fsck_ffs or it will keep on bugging.

Revision 1.106: download - view: text, markup, annotated - select for diffs
Sun Jan 25 14:13:08 2004 UTC (21 years, 3 months ago) by bjh21
Branches: MAIN
Diff to: previous 1.105: preferred, colored
Changes since revision 1.105: +5 -4 lines
Mention removal of "beep" alongside "sysbeep".

Revision 1.105: download - view: text, markup, annotated - select for diffs
Sun Jan 18 12:52:47 2004 UTC (21 years, 3 months ago) by bjh21
Branches: MAIN
Diff to: previous 1.104: preferred, colored
Changes since revision 1.104: +5 -1 lines
Mention acorn32 sysbeep removal, since it needs a kernel config file change.

Revision 1.104: download - view: text, markup, annotated - select for diffs
Mon Jan 12 16:19:19 2004 UTC (21 years, 3 months ago) by dbj
Branches: MAIN
Diff to: previous 1.103: preferred, colored
Changes since revision 1.103: +3 -2 lines
change the updating note to say you may need fsck_ffs -b 32 -c 4'

Revision 1.103: download - view: text, markup, annotated - select for diffs
Mon Jan 12 05:01:22 2004 UTC (21 years, 3 months ago) by dbj
Branches: MAIN
Diff to: previous 1.102: preferred, colored
Changes since revision 1.102: +2 -2 lines
change fsck to fsck_ffs in 20040109 updating note

Revision 1.102: download - view: text, markup, annotated - select for diffs
Fri Jan 9 19:36:28 2004 UTC (21 years, 3 months ago) by dbj
Branches: MAIN
Diff to: previous 1.101: preferred, colored
Changes since revision 1.101: +9 -1 lines
add fsck compatibility notes
20040109:
	Compatibility for old ffs superblock layouts has been
	added, and the restrictive fsck checks have been reenabled
	when using those layouts.  If you have been using -current
	since 20030402, you may find that fsck again signals fatal
	superblock mismatches.  To work around, you can use
	fsck -b 32 to restore an alternate superblock.

Revision 1.101: download - view: text, markup, annotated - select for diffs
Wed Dec 31 16:20:54 2003 UTC (21 years, 4 months ago) by junyoung
Branches: MAIN
Diff to: previous 1.100: preferred, colored
Changes since revision 1.100: +2 -2 lines
Fix typo.

Revision 1.100: download - view: text, markup, annotated - select for diffs
Fri Dec 12 12:36:37 2003 UTC (21 years, 4 months ago) by keihan
Branches: MAIN
Diff to: previous 1.99: preferred, colored
Changes since revision 1.99: +2 -2 lines
Typo: dependancies -> dependencies.

Revision 1.99: download - view: text, markup, annotated - select for diffs
Thu Dec 4 01:25:21 2003 UTC (21 years, 5 months ago) by mrg
Branches: MAIN
Diff to: previous 1.98: preferred, colored
Changes since revision 1.98: +6 -1 lines
note binutils/cxxfilt dependancies issues

Revision 1.98: download - view: text, markup, annotated - select for diffs
Thu Nov 20 08:07:52 2003 UTC (21 years, 5 months ago) by wiz
Branches: MAIN
Diff to: previous 1.97: preferred, colored
Changes since revision 1.97: +5 -1 lines
Add a paragraph about mkdep.

Revision 1.97: download - view: text, markup, annotated - select for diffs
Wed Oct 8 04:25:43 2003 UTC (21 years, 7 months ago) by lukem
Branches: MAIN
Diff to: previous 1.96: preferred, colored
Changes since revision 1.96: +6 -1 lines
Overhaul MBR handling (part 1):

<sys/bootblock.h>:
    *	Added definitions for the Master Boot Record (MBR) used by
	a variety of systems (primarily i386), including the format
	of the BIOS Parameter Block (BPB).
	This information was cribbed from a variety of sources
	including <sys/disklabel_mbr.h> which this is a superset of.

	As part of this, some data structure elements and #defines
	were renamed to be more "namespace friendly" and consistent
	with other bootblocks and MBR documentation.
	Update all uses of the old names to the new names.

<sys/disklabel_mbr.h>:
    *	Deprecated in favor of <sys/bootblock.h> (the latter is more
	"host tool" friendly).

amd64 & i386:
    *	Renamed /usr/mdec/bootxx_dosfs to /usr/mdec/bootxx_msdos, to
	be consistent with the naming convention of the msdosfs tools.

    *	Removed /usr/mdec/bootxx_ufs, as it's equivalent to bootxx_ffsv1
	and it's confusing to have two functionally equivalent bootblocks,
	especially given that "ufs" has multiple meanings (it could be
	a synonym for "ffs", or the group of ffs/lfs/ext2fs file systems).

    *	Rework pbr.S (the first sector of bootxx_*):
	    +	Ensure that BPB (bytes 11..89) and the partition table
		(bytes 446..509) do not contain code.
	    +	Add support for booting from FAT partitions if BOOT_FROM_FAT
		is defined.  (Only set for bootxx_msdos).
	    +	Remove "dummy" partition 3; if people want to installboot(8)
		these to the start of the disk they can use fdisk(8) to
		create a real MBR partition table...
	    +	Compile with TERSE_ERROR so it fits because of the above.
		Whilst this is less user friendly, I feel it's important
		to have a valid partition table and BPB in the MBR/PBR.

    *	Renamed /usr/mdec/biosboot to /usr/mdec/boot, to be consistent
	with other platforms.

    *	Enable SUPPORT_DOSFS in /usr/mdec/boot (stage2), so that
    	we can boot off FAT partitions.

    *	Crank version of /usr/mdec/boot to 3.1, and fix some of the other
	entries in the version file.

installboot(8) (i386):
    *	Read the existing MBR of the filesystem and retain the BIOS
    	Parameter Block (BPB) in bytes 11..89 and the MBR partition
	table in bytes 446..509.  (Previously installboot(8) would
	trash those two sections of the MBR.)

mbrlabel(8):
    *	Use sys/lib/libkern/xlat_mbr_fstype.c instead of homegrown code
	to map the MBR partition type to the NetBSD disklabel type.


Test built "make release" for i386, and new bootblocks verified to work
(even off FAT!).

Revision 1.96: download - view: text, markup, annotated - select for diffs
Sat Sep 6 22:12:42 2003 UTC (21 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.95: preferred, colored
Changes since revision 1.95: +6 -1 lines
mention that you *need* COMPAT_16 before building.

Revision 1.95: download - view: text, markup, annotated - select for diffs
Tue Aug 5 18:39:56 2003 UTC (21 years, 9 months ago) by wiz
Branches: MAIN
Diff to: previous 1.94: preferred, colored
Changes since revision 1.94: +3 -3 lines
It is openssl, not openssh, and fix another typo.

Revision 1.94: download - view: text, markup, annotated - select for diffs
Tue Aug 5 17:49:52 2003 UTC (21 years, 9 months ago) by christos
Branches: MAIN
Diff to: previous 1.93: preferred, colored
Changes since revision 1.93: +6 -1 lines
Mention how to fix libdes lossage.

Revision 1.93: download - view: text, markup, annotated - select for diffs
Sat Jul 26 17:10:25 2003 UTC (21 years, 9 months ago) by salo
Branches: MAIN
Diff to: previous 1.92: preferred, colored
Changes since revision 1.92: +4 -4 lines
netbsd.org->NetBSD.org

Revision 1.92: download - view: text, markup, annotated - select for diffs
Thu Jul 3 15:29:15 2003 UTC (21 years, 10 months ago) by wiz
Branches: MAIN
Diff to: previous 1.91: preferred, colored
Changes since revision 1.91: +8 -1 lines
Add paragraph for texinfo-4.6.

Revision 1.91: download - view: text, markup, annotated - select for diffs
Tue Jul 1 08:13:41 2003 UTC (21 years, 10 months ago) by wiz
Branches: MAIN
Diff to: previous 1.90: preferred, colored
Changes since revision 1.90: +2 -1 lines
Note that you need to update share/mk too.

Revision 1.90: download - view: text, markup, annotated - select for diffs
Mon Jun 30 20:13:26 2003 UTC (21 years, 10 months ago) by wiz
Branches: MAIN
Diff to: previous 1.89: preferred, colored
Changes since revision 1.89: +7 -1 lines
Add (untested) paragraph about groff update.

Revision 1.89: download - view: text, markup, annotated - select for diffs
Fri May 16 14:19:49 2003 UTC (21 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.88: preferred, colored
Changes since revision 1.88: +11 -1 lines
mention export lossage

Revision 1.88: download - view: text, markup, annotated - select for diffs
Wed Apr 30 07:23:49 2003 UTC (22 years ago) by itojun
Branches: MAIN
Diff to: previous 1.87: preferred, colored
Changes since revision 1.87: +7 -1 lines
put a not on 2002/12/19 cvs repository layout change.

Revision 1.87: download - view: text, markup, annotated - select for diffs
Sat Apr 19 21:27:04 2003 UTC (22 years ago) by bjh21
Branches: MAIN
Diff to: previous 1.86: preferred, colored
Changes since revision 1.86: +9 -1 lines
Mention nasty interactions between new FFS superblock layout and old
fsck_ffs, using a heavily-abridged version of fvdl's original announcement.

Revision 1.86: download - view: text, markup, annotated - select for diffs
Thu Apr 10 08:12:29 2003 UTC (22 years, 1 month ago) by kleink
Branches: MAIN
Diff to: previous 1.85: preferred, colored
Changes since revision 1.85: +2 -2 lines
Since we mention __assert13, add __unsetenv13 here as well.

Revision 1.85: download - view: text, markup, annotated - select for diffs
Wed Apr 2 18:01:53 2003 UTC (22 years, 1 month ago) by atatat
Branches: MAIN
Diff to: previous 1.84: preferred, colored
Changes since revision 1.84: +14 -1 lines
Mention the import of the new version of sendmail, describe what's
needed of people when updating, and point them at some of the sendmail
documentation so that they can easily find more information.

Revision 1.84: download - view: text, markup, annotated - select for diffs
Thu Feb 6 04:37:59 2003 UTC (22 years, 3 months ago) by grant
Branches: MAIN
Diff to: previous 1.83: preferred, colored
Changes since revision 1.83: +12 -1 lines
add entry for smmsp user/group.

fixes PR misc/17513 from Geoff C. Wing.

Revision 1.83: download - view: text, markup, annotated - select for diffs
Wed Jan 29 09:17:08 2003 UTC (22 years, 3 months ago) by kei
Branches: MAIN
Diff to: previous 1.82: preferred, colored
Changes since revision 1.82: +2 -2 lines
fix typo.  USETOOLS, not USE_TOOLS.

Revision 1.82: download - view: text, markup, annotated - select for diffs
Fri Jan 17 22:58:53 2003 UTC (22 years, 3 months ago) by wiz
Branches: MAIN
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +8 -1 lines
Note texinfo-4.3 update and how to make it work if one wants to avoid build.sh.

Revision 1.81: download - view: text, markup, annotated - select for diffs
Mon Dec 23 06:55:33 2002 UTC (22 years, 4 months ago) by lukem
Branches: MAIN
CVS tags: fvdl_fs64_base
Diff to: previous 1.80: preferred, colored
Changes since revision 1.80: +8 -1 lines
METALOG format tweak

Revision 1.80: download - view: text, markup, annotated - select for diffs
Thu Dec 19 12:48:42 2002 UTC (22 years, 4 months ago) by lukem
Branches: MAIN
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +11 -1 lines
the recently added -N option of install(1) is now used by default

Revision 1.79: download - view: text, markup, annotated - select for diffs
Mon Dec 9 18:59:07 2002 UTC (22 years, 5 months ago) by wiz
Branches: MAIN
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +12 -14 lines
Some typo and grammar fixes. Begin new sentences with upper case letters.

Revision 1.78: download - view: text, markup, annotated - select for diffs
Wed Dec 4 12:50:43 2002 UTC (22 years, 5 months ago) by lukem
Branches: MAIN
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +10 -1 lines
fparseln issues

Revision 1.77: download - view: text, markup, annotated - select for diffs
Tue Nov 26 23:35:42 2002 UTC (22 years, 5 months ago) by lukem
Branches: MAIN
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +7 -1 lines
bye bye SYS_INCLUDE=symlinks

Revision 1.76: download - view: text, markup, annotated - select for diffs
Fri Nov 22 15:48:33 2002 UTC (22 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +15 -1 lines
Note that libtool needs to be rebuilt after updating to a
crti/crtn-using C run-time.

Revision 1.75: download - view: text, markup, annotated - select for diffs
Thu Nov 21 18:05:59 2002 UTC (22 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +31 -1 lines
Note the ARM ELF "softvfp" object marking change, and the resulting
(somewhat minor) flag-day.

Revision 1.74: download - view: text, markup, annotated - select for diffs
Wed Nov 20 04:36:43 2002 UTC (22 years, 5 months ago) by jschauma
Branches: MAIN
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +9 -1 lines
Add a short blurb explaining that after the merge of the i386mp branch
people will need 'cpu* at mainbus?'.

Revision 1.73: download - view: text, markup, annotated - select for diffs
Fri Oct 11 21:55:48 2002 UTC (22 years, 6 months ago) by provos
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +6 -1 lines
kernel update requires userland systrace recompile.

Revision 1.72: download - view: text, markup, annotated - select for diffs
Fri Oct 11 02:09:42 2002 UTC (22 years, 6 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +7 -1 lines
Yet Another config(8) Hazard.

Revision 1.71: download - view: text, markup, annotated - select for diffs
Wed Oct 9 21:20:20 2002 UTC (22 years, 7 months ago) by wiz
Branches: MAIN
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +2 -2 lines
mmm, bullding

Revision 1.70: download - view: text, markup, annotated - select for diffs
Wed Oct 9 20:27:59 2002 UTC (22 years, 7 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +7 -1 lines
Note new attribute dependency syntax in config(8).

Revision 1.69: download - view: text, markup, annotated - select for diffs
Fri Oct 4 04:37:06 2002 UTC (22 years, 7 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +6 -1 lines
Note that a new config is needed after the autoconfiguration overhaul.

Revision 1.68: download - view: text, markup, annotated - select for diffs
Tue Sep 24 14:43:39 2002 UTC (22 years, 7 months ago) by lukem
Branches: MAIN
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +11 -1 lines
MKDYNAMICROOT=yes; care needs to be taken if "make build" is not used

Revision 1.67: download - view: text, markup, annotated - select for diffs
Sat Sep 21 04:12:35 2002 UTC (22 years, 7 months ago) by lukem
Branches: MAIN
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +11 -1 lines
USE_NEW_TOOLCHAIN has been replaced

Revision 1.66: download - view: text, markup, annotated - select for diffs
Fri Sep 6 13:55:43 2002 UTC (22 years, 8 months ago) by gehenna
Branches: MAIN
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +5 -1 lines
Merge the gehenna-devsw branch into the trunk.

Revision 1.65: download - view: text, markup, annotated - select for diffs
Sat Aug 24 13:25:01 2002 UTC (22 years, 8 months ago) by lukem
Branches: MAIN
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +15 -1 lines
/rescue/*, and a new crunchgen to ensure /rescue/* is statically linked

Revision 1.64: download - view: text, markup, annotated - select for diffs
Mon Jul 1 02:12:11 2002 UTC (22 years, 10 months ago) by sommerfeld
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +7 -6 lines
Revise 20010803 since i386 gas is no longer built where that entry
said it was.

Revision 1.63: download - view: text, markup, annotated - select for diffs
Sun May 19 00:54:35 2002 UTC (22 years, 11 months ago) by enami
Branches: MAIN
CVS tags: netbsd-1-6-base, netbsd-1-6-RELEASE, netbsd-1-6-RC3, netbsd-1-6-RC2, netbsd-1-6-RC1, netbsd-1-6-PATCH002-RELEASE, netbsd-1-6-PATCH002-RC4, netbsd-1-6-PATCH002-RC3, netbsd-1-6-PATCH002-RC2, netbsd-1-6-PATCH002-RC1, netbsd-1-6-PATCH002, netbsd-1-6-PATCH001-RELEASE, netbsd-1-6-PATCH001-RC3, netbsd-1-6-PATCH001-RC2, netbsd-1-6-PATCH001-RC1, netbsd-1-6-PATCH001, netbsd-1-6
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +2 -2 lines
Sync the sshd entry with etc/master.passwd.

Revision 1.62: download - view: text, markup, annotated - select for diffs
Sat May 18 15:44:18 2002 UTC (22 years, 11 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +2 -2 lines
/var/chroot/sshd is used instead of /var/empty

Revision 1.61: download - view: text, markup, annotated - select for diffs
Tue May 14 23:33:07 2002 UTC (22 years, 11 months ago) by itojun
Branches: MAIN
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +16 -1 lines
turn on privilege separation, as 3.2.1 default do.
requires sshd uid/gid as well as /var/empty directory.

Revision 1.60: download - view: text, markup, annotated - select for diffs
Thu May 2 22:13:30 2002 UTC (23 years ago) by sommerfeld
Branches: MAIN
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +4 -1 lines
Correct BUGS in BUILDING.mdoc now that most ports are USE_NEW_TOOLCHAIN

Obsolete NBUILDJOBS; build.sh just passes -jN through to make(1),
which inherits it cooperatively through the build tree.  Fix
documentation so that it's shown to be deprecated.

If you use build -jN, please save full build logs so that errors due
to missing dependancies can be analyzed and corrected.

Revision 1.59: download - view: text, markup, annotated - select for diffs
Mon Apr 29 08:36:20 2002 UTC (23 years ago) by lukem
Branches: MAIN
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +8 -1 lines
add postinstall info

Revision 1.58: download - view: text, markup, annotated - select for diffs
Fri Apr 26 15:54:41 2002 UTC (23 years ago) by lukem
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +6 -6 lines
s/BSDSRCDIR/NETBSDSRCDIR/

Revision 1.57: download - view: text, markup, annotated - select for diffs
Wed Apr 10 05:26:15 2002 UTC (23 years, 1 month ago) by itojun
Branches: MAIN
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +2 -1 lines
install(1) is at usr.bin/xinstall, which is not obvious

Revision 1.56: download - view: text, markup, annotated - select for diffs
Tue Mar 19 14:42:41 2002 UTC (23 years, 1 month ago) by lukem
Branches: MAIN
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +5 -1 lines
<bsd.lib.mk> needs a new install(1)

Revision 1.55: download - view: text, markup, annotated - select for diffs
Tue Mar 19 01:23:32 2002 UTC (23 years, 1 month ago) by itojun
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +6 -1 lines
strict sa_len/family checking on raw ip6 socket

Revision 1.54: download - view: text, markup, annotated - select for diffs
Mon Mar 11 04:57:55 2002 UTC (23 years, 2 months ago) by itojun
Branches: MAIN
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +7 -2 lines
move sshd config files to /etc/ssh

Revision 1.53: download - view: text, markup, annotated - select for diffs
Sun Feb 24 01:15:21 2002 UTC (23 years, 2 months ago) by matt
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +6 -1 lines
Tell VAX people to update their gas so they can assemble -current sources.

Revision 1.52: download - view: text, markup, annotated - select for diffs
Sat Feb 23 17:06:24 2002 UTC (23 years, 2 months ago) by wiz
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +4 -4 lines
Typo and grammar fixes.

Revision 1.51: download - view: text, markup, annotated - select for diffs
Sat Feb 23 11:06:53 2002 UTC (23 years, 2 months ago) by pooka
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +2 -2 lines
libstdc++, not libstc++

Revision 1.50: download - view: text, markup, annotated - select for diffs
Wed Jan 30 06:54:56 2002 UTC (23 years, 3 months ago) by itojun
Branches: MAIN
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +14 -1 lines
note addition of ntpd user/group.  checked w/lukem

Revision 1.49: download - view: text, markup, annotated - select for diffs
Fri Dec 7 09:56:44 2001 UTC (23 years, 5 months ago) by jmc
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +17 -1 lines
Add note about how to work around reloc problems in groff now that the toolchain
fixes are commited.

Revision 1.48: download - view: text, markup, annotated - select for diffs
Sun Dec 2 03:13:10 2001 UTC (23 years, 5 months ago) by jmc
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +2 -2 lines
Forgot a word

Revision 1.47: download - view: text, markup, annotated - select for diffs
Sun Dec 2 03:07:29 2001 UTC (23 years, 5 months ago) by jmc
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +13 -1 lines
Provide writeup and install steps for getting a working awk before building
on sparc64

Revision 1.46: download - view: text, markup, annotated - select for diffs
Wed Nov 28 18:53:34 2001 UTC (23 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +8 -1 lines
Note that a new config(8) is required in order to build a kernel.

Revision 1.45: download - view: text, markup, annotated - select for diffs
Tue Oct 30 06:05:28 2001 UTC (23 years, 6 months ago) by yamt
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +4 -1 lines
note wcstod.c needs new lint.
pointed by Bernd Ernesti.

Revision 1.44: download - view: text, markup, annotated - select for diffs
Mon Oct 29 19:57:38 2001 UTC (23 years, 6 months ago) by tv
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +12 -36 lines
- Describe BUILDING documentation.
- Remove old references to new toolchain system in favor of reference to
  BUILDING.
- Remove old reference to MKCRYPTO being added; new .mk files are used
  at the top level automatically.
- Clean up vertical space.

Revision 1.43: download - view: text, markup, annotated - select for diffs
Mon Oct 29 01:53:56 2001 UTC (23 years, 6 months ago) by mason
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +11 -1 lines
note build.sh

Revision 1.42: download - view: text, markup, annotated - select for diffs
Mon Oct 29 01:46:25 2001 UTC (23 years, 6 months ago) by perry
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +14 -1 lines
1) Note that install has been fixed and will need to be upated for
   src/etc/Makefile to work properly.
2) Note that users of the new toolchain are often able to avoid the
   UPDATING hell.

Revision 1.41: download - view: text, markup, annotated - select for diffs
Fri Oct 26 13:38:52 2001 UTC (23 years, 6 months ago) by wiz
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +7 -4 lines
Describe another workaround for i386-'fxsave' kernel build problem.

Revision 1.40: download - view: text, markup, annotated - select for diffs
Fri Oct 5 16:24:34 2001 UTC (23 years, 7 months ago) by lukem
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +8 -1 lines
mtree update needed

Revision 1.39: download - view: text, markup, annotated - select for diffs
Thu Oct 4 04:27:48 2001 UTC (23 years, 7 months ago) by jmc
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +6 -1 lines
Note crunchgen changes

Revision 1.38: download - view: text, markup, annotated - select for diffs
Sun Sep 30 20:09:11 2001 UTC (23 years, 7 months ago) by tron
Branches: MAIN
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +2 -2 lines
Fix a typo in last entry.

Revision 1.37: download - view: text, markup, annotated - select for diffs
Sat Sep 29 21:22:49 2001 UTC (23 years, 7 months ago) by kristerw
Branches: MAIN
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +2 -2 lines
Fixed a typo.

Revision 1.36: download - view: text, markup, annotated - select for diffs
Tue Sep 25 02:26:13 2001 UTC (23 years, 7 months ago) by tv
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +15 -1 lines
Document need to set TOOLDIR on i386 now, as well as optional USETOOLS=no
for building subtrees without using the separate toolchain.

Revision 1.35: download - view: text, markup, annotated - select for diffs
Sun Sep 16 04:25:39 2001 UTC (23 years, 7 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +9 -1 lines
Add text describing what to do if make complains about a missing
uvm_vnode.h

Revision 1.34: download - view: text, markup, annotated - select for diffs
Sat Sep 15 13:59:29 2001 UTC (23 years, 7 months ago) by simonb
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +2 -2 lines
Fix typo.

Revision 1.33: download - view: text, markup, annotated - select for diffs
Wed Aug 22 03:15:48 2001 UTC (23 years, 8 months ago) by itojun
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +1 -5 lines
it seems that TOODIR change is yet to be reach the tree.  i guess i leave
it to tv@netbsd...

Revision 1.32: download - view: text, markup, annotated - select for diffs
Wed Aug 22 03:11:09 2001 UTC (23 years, 8 months ago) by itojun
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +5 -1 lines
mention TOOLDIR change (8/14).

Revision 1.31: download - view: text, markup, annotated - select for diffs
Fri Aug 3 14:47:17 2001 UTC (23 years, 9 months ago) by enami
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +7 -1 lines
Since the new makeinfo is necessary to build grep.info, advertize to install
it.

Revision 1.30: download - view: text, markup, annotated - select for diffs
Fri Aug 3 14:19:50 2001 UTC (23 years, 9 months ago) by enami
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +6 -1 lines
Advise to build and install -current gas to build -current kernel
successfully.

Revision 1.29: download - view: text, markup, annotated - select for diffs
Tue Jul 31 22:53:21 2001 UTC (23 years, 9 months ago) by bjh21
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +6 -1 lines
Mention my recent loadfile/ELF hacks.

Revision 1.28: download - view: text, markup, annotated - select for diffs
Thu Jul 26 08:51:17 2001 UTC (23 years, 9 months ago) by assar
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +5 -3 lines
update texinfo bootstrap with simpler method (based on text from
itojun)

Revision 1.27: download - view: text, markup, annotated - select for diffs
Thu Jul 26 02:30:29 2001 UTC (23 years, 9 months ago) by assar
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +6 -1 lines
add blurb about bootstrapping new texinfo

Revision 1.26: download - view: text, markup, annotated - select for diffs
Wed Jul 25 22:58:05 2001 UTC (23 years, 9 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +7 -1 lines
Before you change a perfectly valid construct in uvm_page.h,
please make sure your lint(1) binary is up-to-date.  Thanks.

Revision 1.25: download - view: text, markup, annotated - select for diffs
Mon Jul 23 05:49:09 2001 UTC (23 years, 9 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +14 -1 lines
Note a problem that can occur when upgrading crt0, and how to
work around it.

Revision 1.24: download - view: text, markup, annotated - select for diffs
Sun May 27 23:34:22 2001 UTC (23 years, 11 months ago) by abs
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +4 -1 lines
Add the following to help in the "lint needs new libc, libc needs new lint"
case.
Symptom:lint does not understand the '-X' option
Fix:    May need to build & install libs with NOLINT=1 before rebuilding lint

Revision 1.23: download - view: text, markup, annotated - select for diffs
Tue May 22 17:50:05 2001 UTC (23 years, 11 months ago) by tron
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -2 lines
Fix incorrect source directory of "make".

Revision 1.22: download - view: text, markup, annotated - select for diffs
Tue Mar 6 19:03:31 2001 UTC (24 years, 2 months ago) by jmc
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +9 -3 lines
Extend note to mention named user as well

Revision 1.21: download - view: text, markup, annotated - select for diffs
Tue Mar 6 19:00:59 2001 UTC (24 years, 2 months ago) by jmc
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +12 -1 lines
Add note about named group needing to be hand added or make build will fail.

Revision 1.20: download - view: text, markup, annotated - select for diffs
Sat Feb 24 20:23:10 2001 UTC (24 years, 2 months ago) by jmc
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +4 -2 lines
Add note about mdsetimage

Revision 1.19: download - view: text, markup, annotated - select for diffs
Sat Feb 24 01:05:04 2001 UTC (24 years, 2 months ago) by cgd
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +7 -1 lines
add some more entries related to getprogname/setprogname

Revision 1.18: download - view: text, markup, annotated - select for diffs
Tue Feb 20 06:00:54 2001 UTC (24 years, 2 months ago) by jmc
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +7 -1 lines
Add notes about getprogname and hostprog builds

Revision 1.17: download - view: text, markup, annotated - select for diffs
Sun Feb 18 19:13:58 2001 UTC (24 years, 2 months ago) by erh
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +6 -2 lines
Add examples of how to rebuild make, including a failsafe method that doesn't
use make when rebuilding it.

Revision 1.16: download - view: text, markup, annotated - select for diffs
Sat Feb 17 16:11:00 2001 UTC (24 years, 2 months ago) by wiz
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +2 -2 lines
Fix typo.

Revision 1.15: download - view: text, markup, annotated - select for diffs
Sun Feb 4 19:50:26 2001 UTC (24 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +6 -1 lines
mention that we need to rebuild yacc now.

Revision 1.14: download - view: text, markup, annotated - select for diffs
Sat Feb 3 08:24:07 2001 UTC (24 years, 3 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -2 lines
for the "Complaints involving a Makefile" symptom, reverse the order
of suggested fixes.

I see many people who think they have to go to -current, then run into a
problem, and update share/mk. After that they see they need make(1) updated
as well, but that doesn't work any more with the new share/mk file.

Revision 1.13: download - view: text, markup, annotated - select for diffs
Fri Jan 26 01:31:38 2001 UTC (24 years, 3 months ago) by dogcow
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +6 -1 lines
note that undefined __assert13 refs are fixed by rebuilding lib/libc

Revision 1.12: download - view: text, markup, annotated - select for diffs
Wed Jan 24 12:35:48 2001 UTC (24 years, 3 months ago) by itojun
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +4 -1 lines
mklocale necessary during share/locale/ctype

Revision 1.11: download - view: text, markup, annotated - select for diffs
Mon Jan 22 14:24:53 2001 UTC (24 years, 3 months ago) by lukem
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -1 lines
add usr.bin/xlint as a possible program to upgrade

Revision 1.10: download - view: text, markup, annotated - select for diffs
Mon Jan 15 15:03:38 2001 UTC (24 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +7 -1 lines
mention that we need to build make first.

Revision 1.9: download - view: text, markup, annotated - select for diffs
Mon Jan 1 15:29:16 2001 UTC (24 years, 4 months ago) by sommerfeld
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +5 -1 lines
mention fixed bsd.subdir.mk bug.

Revision 1.8: download - view: text, markup, annotated - select for diffs
Mon Jan 1 14:13:51 2001 UTC (24 years, 4 months ago) by sommerfeld
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +7 -1 lines
Mention the SUBDIR .WAIT change

Revision 1.7: download - view: text, markup, annotated - select for diffs
Sun Nov 26 17:46:28 2000 UTC (24 years, 5 months ago) by ad
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -2 lines
lsu -> ld, by popular request.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Thu Oct 19 15:02:38 2000 UTC (24 years, 6 months ago) by ad
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +6 -1 lines
ca -> lsu

Revision 1.5: download - view: text, markup, annotated - select for diffs
Sat Oct 14 01:06:55 2000 UTC (24 years, 6 months ago) by wiz
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +4 -1 lines
add a case for menuc-updating

Revision 1.4: download - view: text, markup, annotated - select for diffs
Mon Oct 2 06:19:17 2000 UTC (24 years, 7 months ago) by itojun
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +14 -1 lines
changes to libcrypto (RC5/IDEA/RSA make symbols are obsoleted).
an update tip (obsolete intermediate file)

Revision 1.3: download - view: text, markup, annotated - select for diffs
Sun Aug 20 19:51:24 2000 UTC (24 years, 8 months ago) by itojun
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +2 -3 lines
crypto-* is no longer there.
refer usr.bin/compile_et.
remove reference to make_cmds (add it if i'm wrong about this)

Revision 1.2: download - view: text, markup, annotated - select for diffs
Sun Aug 20 15:43:43 2000 UTC (24 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +18 -5 lines
fix a few things; expand a few as well.

Revision 1.1: download - view: text, markup, annotated - select for diffs
Thu Aug 17 20:17:43 2000 UTC (24 years, 8 months ago) by abs
Branches: MAIN
Initial cut of an 'UPDATING' file, intended to help those tracking -current.
Most of this taken directly from Eric Haszlakiewicz's README.
It is the hope that developers will update this as they make changes that
break 'make build' from an earlier version of the tree.

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

CVSweb <webmaster@jp.NetBSD.org>