Home | History | Annotate | only in /src/distrib/pmax/ramdisk
History log of /src/distrib/pmax/ramdisk
RevisionDateAuthorComments
 1.56 27-Nov-2024  christos bump for ssp build
 1.55 25-Apr-2021  christos branches: 1.55.8;
handle mipsn64
 1.54 07-Sep-2020  mrg bump image size for pmax64 builds.
 1.53 29-Dec-2019  christos 1. Remove all the special handling of variables (-d -p -P -s -S) that
were dealing with DBG (-d) LDSTATIC/NOPIE (-p), and the rest with
disabling/enabling sanitizers.
2. Use emalloc/estrdup for all the allocators instead of only some cases.
3. Add -V varspec which passes variables on the command line (as DBG
and LDSTATIC used to be passed before) instead of appending them
to the on-the-fly Makefile using -v varspec.
4. Change the distrib and rescue Makefiles to use -V instead of the removed
flags.

The motivation of this is to make variable handling consistent, less magical,
and remove the need for changing crunchgen each time we want to add disabling
an option by default.

(as proposed in tech-toolchain)
 1.52 26-Jun-2019  martin Bump ramdisk slightly (non MKREPRO builds with long paths fail otherwise)
 1.51 03-Apr-2019  christos Give us a bit of breathing room since the calculated size of mkfs is not
working.
 1.50 29-Mar-2019  christos Bumpity bump bump
 1.49 13-Feb-2019  gson Bump pmax install ramdisk size by another 100k, as 3500k is no longer
enough with GCC 7.
 1.48 16-Jul-2017  christos branches: 1.48.2; 1.48.6;
Give us a little room, too much potato chips.
 1.47 24-Jan-2017  christos += for MAKEFS_FLAGS
 1.46 14-Aug-2012  martin branches: 1.46.16; 1.46.20;
Change all install media to use ipty instead of pty0
 1.45 11-Feb-2010  roy branches: 1.45.6; 1.45.8;
Remove terminfo.db as it's now embedded in libterminfo.
 1.44 05-Feb-2010  roy Use the rescue terminfo.db in our images instead of termcap.
 1.43 20-Sep-2009  abs 34 different termcap subsets, plus a couple of ports still using
the full termcap distfile. In an attempt to reduce the madness
switch everyone (except the i386 cd install which does its own
thing) to the same (under 8K) termcap subset:

ansi ansi/pc-term compatible with color
dumb|unknown 80-column dumb tty
hp300h HP Catseye console
iris-ansi-ap IRIS ANSI in application-keypad mode
iris-ansi|iris-ansi-net IRIS emulating 40 line ANSI terminal (almost VT100)
sun|sun1|sun2|sun-il Sun Microsystems Inc. console with working insert-line
vt100|vt100-am DEC VT100 (w/advanced video)
vt220-8 DEC VT220 8 bit terminal
vt220|vt200|vt300 DEC VT220 in vt100 emulation mode
wsvt25 NetBSD wscons in 25 line DEC VT220 mode
wsvt25m NetBSD wscons in 25 line DEC VT220 mode with Meta
x68k|x68k-ite NetBSD/x68k ITE
xterm|vs100 xterm terminal emulator (X Window System)

Trying to provide similar functionality across all ports? It'll never
catch on...
 1.42 20-Sep-2009  abs Nothing needs disktab anymore, so we'd rather have an inode and
slightly over 1K of space on install media...
 1.41 20-Sep-2009  abs ${NETBSDSRCDIR}/distrib/common/protocols => ${DISTRIBDIR}/common/protocols
${NETBSDSRCDIR}/distrib/common/services => ${DISTRIBDIR}/common/services
 1.40 20-Sep-2009  abs Alas poor dot.hdprofile. I knew him... not at all Horatio. (Remove)
 1.39 18-Jan-2009  he Bump the size of ramdisk and diskimages, so that what needs to
be put there still fits.
 1.38 30-Nov-2008  tsutsui Use shrinked src/distrib/common/protocols rather than fat src/etc/protocols.
 1.37 10-May-2007  dogcow branches: 1.37.12;
Since /etc/services has gotten rather large, use a minimal one for install
kernels. (mount_nfs is notably the only binary that doesn't gracefully deal
with the lack of an /etc/services file, it appears.)
 1.36 29-Jul-2006  ad Remove RASTERCONSOLE support from the pmax port.
 1.35 16-Jan-2006  tsutsui Use -mmemcpy.
 1.34 15-Oct-2004  he Increase the pmax ramdisk size with 100KB, so that the contents
fits again.
 1.33 09-Jun-2004  he Bump size of ramdisk image from 3148KB to 3200KB so that the contents
fits again.
 1.32 14-May-2004  he Expand the ramdisk image size from 3m to 3148k so that the contents
fits again.
 1.31 01-Feb-2003  tsutsui branches: 1.31.2;
Remove "-Wa,-xgot" hack from DBG flag for broken objcopy-crunchide
that has been fixed by simonb.

BTW, should we also add "-mmemcpy" here to reduce code size?
 1.30 02-May-2002  lukem yet another distrib overhaul:
- move guts of distrib/Makefile.inc to distrib/common/Makefile.distrib
(fixes problem caused by implicit include of ../Makefile.inc in certain
submake conditions triggered by makefiles not yet in tree)
- removed mkdir of ${RELEASEDIR}/*; rely upon "snap_pre" target of
etc/Makefile to create all the release directories
- renamed RELINSTALL to RELEASE_INSTALL
- renamed FLOPPYINSTDIR to FLOPPY_RELEASEDIR
- renamed MDSETDIR to MDSET_RELEASEDIR
- removed ITARGET
- move release target from top level to appropriate subdirectory
- ensure release target has correct depends
- replace miniroot's IMAGE_MD_POST with common/Makefile.image IMAGEPOSTBUILD
- Makefile.image: add realall: ${IMAGE}
 1.29 02-May-2002  simonb ${DISTRIBDIR} has changed; grab our rcons termcap relative to ${CURDIR}.
 1.28 26-Apr-2002  lukem replace _SRC_TOP_ with NETBSDSRCDIR, since the latter is the "public" version
 1.27 23-Apr-2002  tv The "objcopy" based crunchide method has a problem on MIPS; it turns global
symbols into locals, but relocs are left in place (rather than attempting
to resolve-in-place with "ld -r", even with "-Bsymbolic").

Standard MIPS code will generate CALL16 relocs for function calls, but
the linker forbids such relocs from being used to call local symbols (such
as those turned "local" by objcopy). So, rather than battle the toolchain
uphill, work around it for the moment by forcing 32-bit GOT references with
the assembler option "-xgot".

This will be fixed in a more clean manner in the future.
 1.26 12-Apr-2002  lukem use ${IMAGETAR} support from Makefile.image
 1.25 12-Apr-2002  lukem use ${DISTRIBDIR} appropriately
 1.24 06-Apr-2002  tsutsui Set DBG=-Os for libhack.
 1.23 01-Apr-2002  lukem ensure all sysinst-using makefs generated images have at least 15 inodes free,
and be consistent how MAKEFS_FLAGS is defined.
 1.22 29-Mar-2002  lukem use libhack
 1.21 28-Mar-2002  lukem cosmetic reorg
 1.20 24-Mar-2002  lukem cosmetic tweaks
 1.19 12-Mar-2002  lukem convert to New Distrib World Order.
this should be able to be built as non-root now.

XXX: untested (hi simon! :), as it can't be cross built yet due to
elf2ecoff and installboot issues.
 1.18 09-Feb-2002  lukem don't set the owner or group when installing into $RELEASEDIR
 1.17 13-Oct-2001  jmc Add MTREE?= to add Makefiles and use when running mtree
 1.16 10-Oct-2001  enami Use symbol MTREECONF instead of MTREE to refer configuration file
to avoid conflicts. Pointed out by chs@netbsd.org.
 1.15 24-Mar-2001  simonb Add dummy dependall target.
 1.14 01-Nov-2000  garbled Change all ocurrences of "crunchgen" to ${CRUNCHGEN}
 1.13 30-Aug-2000  jhawk Use
${MAKE}
instead of
make
 1.12 02-May-2000  sjg branches: 1.12.4;
use bsd.kernobj.mk to tell us KERNOBJDIR for compiled kernels.
 1.11 06-Jan-2000  simonb Tidy up a little and make work.
Now uses like disktab files for disk labels.
 1.10 28-Dec-1999  simonb Don't do the disklabel dance - just newfs the vnode.
Add an "echoimage" target.
 1.9 11-May-1999  veego Sync with the recent crunchgen changes.
- Remove *.cro files and not the obsoleted *.lo files.

From Bill Studenmund commit message:
> 3) Generate .cro files rather than .lo files. .lo now is used for "local
> objects" - obj's for the host machine not the target machine.
 1.8 06-May-1999  simonb Tidy up "make clean", remove compressed tar file of diskimage.
 1.7 04-May-1999  simonb Oops, remove ".include <bsd.sys.mk>" added by mistake in previous commit.
 1.6 04-May-1999  simonb Add dummy depend targets so that "make depend" doesn't bomb out.
 1.5 27-Apr-1999  simonb Add BINDIR and an install rule to install into ${RELEASEDIR}${BINDIR}.
 1.4 27-Apr-1999  simonb Make the "all" target depend in the ramdisk image and not the crunched
binary.
 1.3 16-Apr-1999  simonb Build a tar file of the ramdisk.fs suitable for installing on an NFS
server for diskless installs on machines that can't netboot a kernel
with a full ramdisk.
 1.2 04-Mar-1999  wrstuden branches: 1.2.2;
Modify all calls to newfs in ramdisk/miniroot creation to include
the needed endianism of the architecture. One step towards cross-building
releases.

Not touched are newfs calls in install scripts as they run on the desired
machine and thus default correctly.
 1.1 27-Nov-1998  jonathan pmax installation ramdisk configuration.
 1.2.2.2 20-Oct-1999  he Pull up revisions 1.4-1.9 (requested by simonb):
Bring pmax release building machinery up-to-date.
(BTW, revision 1.3 was pulled up already, noted as 1.2.)
 1.2.2.1 17-Apr-1999  simonb Pull up rev 1.2 from the trunk:
Build a tar file of the ramdisk.fs suitable for installing on an
NFS server for diskless installs on machines that can't netboot
a kernel with a full ramdisk.
 1.12.4.1 25-Mar-2002  he Apply patch (requested by he):
Introduce dependency between ramdisk/miniroot construction and
osrelease.sh, to better support UPDATE builds of releases.
 1.31.2.1 20-May-2004  tron Pull up revision 1.32 (requested by he in ticket #353):
Expand the ramdisk image size from 3m to 3148k so that the contents
fits again.
 1.37.12.1 05-Oct-2008  mjf Sync with HEAD.
 1.45.8.1 15-Aug-2012  riz Pull up following revision(s) (requested by martin in ticket #500):
distrib/evbppc/ramdisk/Makefile: revision 1.16
distrib/emips/ramdisk/Makefile: revision 1.2
distrib/sandpoint/ramdisk/Makefile: revision 1.10
distrib/evbmips/instkernel/ramdisk/Makefile: revision 1.12
distrib/i386/ramdisks/ramdisk-rescuetiny/Makefile: revision 1.2
distrib/ibmnws/netboot/ramdisk/Makefile: revision 1.11
distrib/pmax/ramdisk/Makefile: revision 1.46
distrib/i386/ramdisks/ramdisk-tiny/Makefile: revision 1.2
just make the installation ptys (ipty); change it to opty if more needed.
Change all install media to use ipty instead of pty0
 1.45.6.1 30-Oct-2012  yamt sync with head
 1.46.20.1 21-Apr-2017  bouyer Sync with HEAD
 1.46.16.1 20-Mar-2017  pgoyette Sync with HEAD
 1.48.6.3 13-Apr-2020  martin Mostly merge changes from HEAD upto 20200411
 1.48.6.2 08-Apr-2020  martin Merge changes from current as of 20200406
 1.48.6.1 10-Jun-2019  christos Sync with HEAD
 1.48.2.2 16-Jul-2017  christos 287934
 1.48.2.1 16-Jul-2017  christos file Makefile was added on branch perseant-stdc-iso10646 on 2017-07-16 14:24:30 +0000
 1.55.8.1 02-Aug-2025  perseant Sync with HEAD
 1.3 20-Sep-2009  abs Nothing needs disktab anymore, so we'd rather have an inode and
slightly over 1K of space on install media...
 1.2 19-Apr-2004  wiz branches: 1.2.26;
Spell removable with only two es. Inspired by jmc@openbsd.
 1.1 27-Nov-1998  jonathan pmax installation ramdisk configuration.
 1.2.26.1 05-Oct-2008  mjf Sync with HEAD.
 1.2 12-Mar-2002  lukem convert to New Distrib World Order.
this should be able to be built as non-root now.

XXX: untested (hi simon! :), as it can't be cross built yet due to
elf2ecoff and installboot issues.
 1.1 06-Jan-2000  simonb Small disktab entries for the ramdisk and miniroot disk images.
 1.8 20-Sep-2009  abs Alas poor dot.hdprofile. I knew him... not at all Horatio. (Remove)
 1.7 29-Jul-2006  ad branches: 1.7.20;
Remove RASTERCONSOLE support from the pmax port.
 1.6 26-Jul-2003  salo netbsd.org->NetBSD.org
 1.5 14-Jun-2000  cgd sweep of my licenses (userland files w/o only my copyright) for
consistency. (no functional changes)
 1.4 14-Jun-2000  cgd fix up NetBSD RCS Ids to match the standard, and the leading comment as
to match as well. No functional changes.
 1.3 26-Jun-1999  cgd after checking and setting DONEPROFILE, export it so that children of the
shell (e.g. programs and shells invoked via sysinst) don't try to run
sysinst again. Fixes PR#7805.
 1.2 29-Mar-1999  simonb branches: 1.2.2;
Use TERM=rcons, not sun or pc3.
 1.1 27-Nov-1998  jonathan pmax installation ramdisk configuration.
 1.2.2.1 26-Jun-1999  cgd pull up rev 1.3 from trunk. (cgd)
 1.7.20.1 05-Oct-2008  mjf Sync with HEAD.
 1.11 09-Jan-2020  martin PR install/54780: in the (of course totally unlikely) case that sysinst
should crash, run "stty sane".
 1.10 29-Jul-2006  ad branches: 1.10.20; 1.10.88; 1.10.90;
Remove RASTERCONSOLE support from the pmax port.
 1.9 26-Jul-2003  salo netbsd.org->NetBSD.org
 1.8 14-Jun-2000  cgd sweep of my licenses for consistency. (no functional changes) These
files have copyright held by people in addition to myself. (I did the
original work, they copied it, enhanced it, and added their copyright
to the derivative work.) Their approval has been given re: the license
change.
 1.7 14-Jun-2000  cgd fix up NetBSD RCS Ids to match the standard, and the leading comment as
to match as well. No functional changes.
 1.6 21-Jan-2000  tsutsui rename (revert) memory disk filename /dev/mdX -> /dev/mdXa
 1.5 10-Jan-2000  tsutsui Fix root device name md0a -> md0
 1.4 23-Nov-1999  simonb Don't start update.
 1.3 26-Jun-1999  cgd branches: 1.3.4;
after checking and setting DONEPROFILE, export it so that children of the
shell (e.g. programs and shells invoked via sysinst) don't try to run
sysinst again. Fixes PR#7805.
 1.2 29-Mar-1999  simonb branches: 1.2.2;
Use TERM=rcons, not sun or pc3.
 1.1 27-Nov-1998  jonathan pmax installation ramdisk configuration.
 1.2.2.1 26-Jun-1999  cgd pull up rev 1.3 from trunk. (cgd)
 1.3.4.1 27-Dec-1999  wrstuden Pull up to last week's -current.
 1.10.90.1 28-Jan-2020  msaitoh Pull up following revision(s) (requested by martin in ticket #669):
distrib/playstation2/miniroot/dot.profile: revision 1.5
distrib/sparc64/instfs/dot.profile: revision 1.8
distrib/hpcarm/miniroot/dot.profile: revision 1.3
distrib/emips/miniroot/dot.profile: revision 1.2
distrib/x68k/floppies/ramdisk/dot.profile: revision 1.16
distrib/zaurus/ramdisk/dot.profile: revision 1.4
distrib/i386/ramdisks/common/dot.profile: revision 1.7
distrib/cobalt/ramdisk/dot.profile: revision 1.2
distrib/hpcsh/miniroot/dot.profile: revision 1.5
distrib/evbarm/instkernel/ramdisk/dot.profile: revision 1.3
distrib/riscv/ramdisk/dot.profile: revision 1.2
distrib/sandpoint/ramdisk/dot.profile: revision 1.2
distrib/landisk/ramdisk/dot.profile: revision 1.3
distrib/amd64/ramdisks/common/dot.profile: revision 1.4
distrib/macppc/floppies/ramdisk/dot.profile: revision 1.14
distrib/mipsco/ramdisk/dot.profile: revision 1.3
distrib/evbmips/instkernel/ramdisk/dot.profile: revision 1.2
distrib/acorn32/ramdisk/dot.profile: revision 1.4
distrib/cats/ramdisk/dot.profile: revision 1.5
distrib/vax/ramdisk/dot.profile: revision 1.10
distrib/pmax/miniroot/dot.profile: revision 1.3
distrib/sparc/miniroot/dot.profile: revision 1.16
distrib/hpcmips/miniroot/dot.profile: revision 1.8
distrib/prep/floppies/ramdisk/dot.profile: revision 1.3
distrib/news68k/floppies/ramdisk/dot.profile: revision 1.8
distrib/alpha/instkernel/ramdisk/dot.profile: revision 1.11
distrib/ofppc/ramdisks/common/dot.profile: revision 1.2
distrib/mac68k/instkernel/ramdisk/dot.profile: revision 1.9
distrib/hp300/ramdisk/dot.profile: revision 1.7
distrib/ews4800mips/floppies/ramdisk/dot.profile: revision 1.2
distrib/emips/ramdisk/dot.profile: revision 1.3
distrib/newsmips/floppies/ramdisk/dot.profile: revision 1.7
distrib/bebox/ramdisk/dot.profile: revision 1.2
distrib/rs6000/ramdisk/dot.profile: revision 1.2
distrib/sgimips/miniroot/dot.profile: revision 1.2
distrib/mvme68k/miniroot/dot.profile: revision 1.9
distrib/hppa/ramdisk/dot.profile: revision 1.2
distrib/luna68k/ramdisk/dot.profile: revision 1.2
distrib/sgimips/ramdisk/dot.profile: revision 1.4
distrib/evbsh3/instkernel/ramdisk/dot.profile: revision 1.2
distrib/evbppc/ramdisk/dot.profile: revision 1.5
distrib/shark/instkernel/ramdisk/dot.profile: revision 1.5
distrib/pmax/ramdisk/dot.profile: revision 1.11
distrib/dreamcast/ramdisk/dot.profile: revision 1.3
distrib/arc/ramdisk/dot.profile: revision 1.5
distrib/atari/floppies/common/dot.profile: revision 1.8
PR install/54780: in the (of course totally unlikely) case that sysinst
should crash, run "stty sane".
 1.10.88.1 08-Apr-2020  martin Merge changes from current as of 20200406
 1.10.20.1 05-Oct-2008  mjf Sync with HEAD.
 1.30 19-Jun-2011  tsutsui Remove unnecessary gnu/usr.bin path from SRCDIRS.
 1.29 19-Jun-2011  tsutsui Use src/distrib/utils/x_gzip in all install ramdisks/miniroots for now
since installation file systems might be flooded by -llzma.
 1.28 14-Jan-2011  tsutsui branches: 1.28.4;
Adjust file lists for recent move:
usr/sbin/chown -> sbin/chown
usr/bin/chgrp -> bin/chgrp
 1.27 11-Feb-2010  roy Remove terminfo.db as it's now embedded in libterminfo.
 1.26 05-Feb-2010  roy Use the rescue terminfo.db in our images instead of termcap.
 1.25 20-Sep-2009  abs 34 different termcap subsets, plus a couple of ports still using
the full termcap distfile. In an attempt to reduce the madness
switch everyone (except the i386 cd install which does its own
thing) to the same (under 8K) termcap subset:

ansi ansi/pc-term compatible with color
dumb|unknown 80-column dumb tty
hp300h HP Catseye console
iris-ansi-ap IRIS ANSI in application-keypad mode
iris-ansi|iris-ansi-net IRIS emulating 40 line ANSI terminal (almost VT100)
sun|sun1|sun2|sun-il Sun Microsystems Inc. console with working insert-line
vt100|vt100-am DEC VT100 (w/advanced video)
vt220-8 DEC VT220 8 bit terminal
vt220|vt200|vt300 DEC VT220 in vt100 emulation mode
wsvt25 NetBSD wscons in 25 line DEC VT220 mode
wsvt25m NetBSD wscons in 25 line DEC VT220 mode with Meta
x68k|x68k-ite NetBSD/x68k ITE
xterm|vs100 xterm terminal emulator (X Window System)

Trying to provide similar functionality across all ports? It'll never
catch on...
 1.24 20-Sep-2009  abs Nothing needs disktab anymore, so we'd rather have an inode and
slightly over 1K of space on install media...
 1.23 20-Sep-2009  abs ${NETBSDSRCDIR}/distrib/common/protocols => ${DISTRIBDIR}/common/protocols
${NETBSDSRCDIR}/distrib/common/services => ${DISTRIBDIR}/common/services
 1.22 20-Sep-2009  abs Alas poor dot.hdprofile. I knew him... not at all Horatio. (Remove)
 1.21 22-Apr-2009  tsutsui Put /usr/mdec/bootxx_ffsv2 into install ramdisk.
 1.20 30-Nov-2008  tsutsui branches: 1.20.2;
Use shrinked src/distrib/common/protocols rather than fat src/etc/protocols.
 1.19 06-May-2008  dyoung Add -lprop to the LIBS line so that ifconfig will link.
 1.18 10-May-2007  dogcow branches: 1.18.12; 1.18.14;
Since /etc/services has gotten rather large, use a minimal one for install
kernels. (mount_nfs is notably the only binary that doesn't gracefully deal
with the lack of an /etc/services file, it appears.)
 1.17 29-Jul-2006  ad Remove RASTERCONSOLE support from the pmax port.
 1.16 25-Dec-2003  martin Add -lz, now needed by gzip.
 1.15 27-May-2002  lukem use usr/sbin/installboot not usr/mdec/installboot
 1.14 02-May-2002  simonb branches: 1.14.2;
${DISTRIBDIR} has changed; grab our rcons termcap relative to ${CURDIR}.
 1.13 26-Apr-2002  lukem replace _SRC_TOP_ with NETBSDSRCDIR, since the latter is the "public" version
 1.12 13-Apr-2002  lukem link mount_mfs to newfs
 1.11 12-Apr-2002  lukem use ${DISTRIBDIR} appropriately
 1.10 12-Mar-2002  lukem convert to New Distrib World Order.
this should be able to be built as non-root now.

XXX: untested (hi simon! :), as it can't be cross built yet due to
elf2ecoff and installboot issues.
 1.9 07-Jun-2000  thorpej Need /etc/netconfig.
 1.8 06-Jan-2000  simonb Clean this up a little, use links instead of symlinks.
 1.7 03-Jan-2000  simonb Store new installboot-style bootblocks in ramdisk /usr/mdec.
 1.6 28-Dec-1999  simonb Add /usr/mdec/installboot.
 1.5 23-Nov-1999  simonb Remove update from the miniroot lists.
 1.4 05-Jun-1999  bouyer branches: 1.4.4;
Generate the /dist/obsolete_* files used by sysinst from the obsolete lists
in sets/lists/*. The sript sets/makeobsolete concatenates the mi and md
obsolete list files all or a specified set and dumps it in a file, in a
subdir specified on the command line (inspired from the maketar and makeflist
files).
Use this for all the sysinst-based installs.
Untested for non-i386, and the md obsolete list may be wrong or incomplete.
Each postmaster is supposed to check this on his port.
 1.3 23-May-1999  tron Fix listfiles to handle object directories. Patches supplied by
Izumi Tsutsui in PR misc/7628.
 1.2 05-Apr-1999  simonb Add pax, cpio.
Remove installboot.
Add ptys to MAKEDEV command line.
 1.1 27-Nov-1998  jonathan branches: 1.1.2;
pmax installation ramdisk configuration.
 1.1.2.1 05-Apr-1999  simonb Pull up rev 1.2 from trunk.
 1.4.4.1 27-Dec-1999  wrstuden Pull up to last week's -current.
 1.14.2.1 28-May-2002  lukem Pull up revision 1.15 (requested by lukem):
use usr/sbin/installboot not usr/mdec/installboot
 1.18.14.1 18-May-2008  yamt sync with head.
 1.18.12.2 05-Oct-2008  mjf Sync with HEAD.
 1.18.12.1 02-Jun-2008  mjf Sync with HEAD.
 1.20.2.1 13-May-2009  jym Sync with HEAD.

Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
 1.28.4.1 23-Jun-2011  cherry Catchup with rmind-uvmplock merge.
 1.3 12-Mar-2002  lukem convert to New Distrib World Order.
this should be able to be built as non-root now.

XXX: untested (hi simon! :), as it can't be cross built yet due to
elf2ecoff and installboot issues.
 1.2 05-Jun-1999  bouyer Generate the /dist/obsolete_* files used by sysinst from the obsolete lists
in sets/lists/*. The sript sets/makeobsolete concatenates the mi and md
obsolete list files all or a specified set and dumps it in a file, in a
subdir specified on the command line (inspired from the maketar and makeflist
files).
Use this for all the sysinst-based installs.
Untested for non-i386, and the md obsolete list may be wrong or incomplete.
Each postmaster is supposed to check this on his port.
 1.1 27-Nov-1998  jonathan pmax installation ramdisk configuration.
 1.9 12-Mar-2002  lukem convert to New Distrib World Order.
this should be able to be built as non-root now.

XXX: untested (hi simon! :), as it can't be cross built yet due to
elf2ecoff and installboot issues.
 1.8 03-Feb-2000  itojun use x_ping for ping, remove reference to -lipsec.
(sorry if you have specific need for "real" ping)
 1.7 04-Jan-2000  simonb Add installboot.
 1.6 28-Dec-1999  simonb Add /usr/mdec/installboot.
 1.5 23-Nov-1999  simonb Remove update from all ramdisks.
 1.4 15-Nov-1999  mhitch A couple of more libraries needed by the ramdiskbin program.
 1.3 05-Apr-1999  simonb branches: 1.3.4;
Add cpio link to pax.
 1.2 21-Jan-1999  garbled branches: 1.2.2;
Use pax instead of tar on the ramdisk bins.. create appropriate link for
tar to get tar-like fonctionality.
 1.1 27-Nov-1998  jonathan pmax installation ramdisk configuration.
 1.2.2.1 05-Apr-1999  simonb Pull up rev 1.3 from trunk.
 1.3.4.1 27-Dec-1999  wrstuden Pull up to last week's -current.

RSS XML Feed