| History log of /src/distrib/shark/instkernel |
| Revision | Date | Author | Comments |
| 1.2 | 13-Apr-2002 |
lukem | branches: 1.2.34; add TARGETS+=release
|
| 1.1 | 11-Feb-2002 |
thorpej | First cut at instkernel for NetBSD/shark. Based on NetBSD/alpha instkernel.
|
| 1.2.34.1 | 05-Oct-2008 |
mjf | Sync with HEAD.
|
| 1.2 | 30-Mar-2002 |
thorpej | Fix shark release building targets.
|
| 1.1 | 11-Feb-2002 |
thorpej | First cut at instkernel for NetBSD/shark. Based on NetBSD/alpha instkernel.
|
| 1.24 | 02-Jan-2019 |
christos | use ARM_ELF2AOUT
|
| 1.23 | 10-Jul-2011 |
tsutsui | branches: 1.23.42; 1.23.44; Use common ${OBJCOPY_ELF2AOUT_FLAGS}.
|
| 1.22 | 02-Jul-2011 |
tsutsui | Sync with src/sys/arch/shark/conf/Makefile.shark.inc rev 1.14: > also need to strip out GCC 4.5's new .debug_pubtypes section. > while here, minor cleanup.
XXX: probably we should have something like ${ARM_AOUT_REMOVE_SECTIONS} XXX: in bsd.own.mk
|
| 1.21 | 04-Oct-2010 |
tsutsui | Copy ramdisk INSTALL.aout kernel into installation/instkernel in ${RELEASEDIR} where it had been put and documented. Actually closes PR port-shark/41672.
|
| 1.20 | 06-Nov-2009 |
is | 2nd part of "install kernel -> release" fix, inspired by tsutsui@'s patch to PR 41672.
|
| 1.19 | 06-Nov-2009 |
is | Install a.out version of INSTALL kernel in release. Slightly modified from a patch provided by Izumi Tsutsui as response to PR 41672.
|
| 1.18 | 02-Sep-2009 |
skrll | More sections to remove when doing ELF->a.out conversion.
|
| 1.17 | 03-Apr-2009 |
perry | Consistently use gzip with the -n flag so dates are not embedded.
Not tested on all platforms.
|
| 1.16 | 23-Jun-2008 |
matt | branches: 1.16.2; 1.16.4; Change remaining instances of ${RELEASEDIR}/${MACHINES} to ${RELEASEDIR}/${RELEASEMACHINEDIR}
|
| 1.15 | 10-Mar-2007 |
jmmv | branches: 1.15.12; 1.15.16; Convert shark's installation kernel image (netbsd-INSTALL) to a.out format so that it can be loaded by the machine's firmware. Put the resulting image inside the 'installation/instkernel' release subdirectory, as the installation instructions explain.
Fixes port-shark/35563.
|
| 1.14 | 21-Sep-2003 |
matt | branches: 1.14.16; For GCC 3.3.1, need to remove .comment too.
|
| 1.13 | 23-Nov-2002 |
thorpej | Use objcopy to a.out'ify the install kernel image.
|
| 1.12 | 08-May-2002 |
lukem | branches: 1.12.2; - whitespace consistency cleanup - build (mdset/nm/strip) into ${filename} as one rule, and move ${filename}.gz into separate rule - rename MDSET.${filename}.nosymbols -> MDSET_NOSYMBOLS.${filename} - rename MDSET.${filename}.post -> MDSET_POST.${filename}, and don't do suffix handling here - rework suffix handling: - rename MDSET.${filename}.suffixes -> MDSET_SUFFIXES.${filename}, and change from list of suffixes to list of "suffix cmdtobuildsuffix", where cmdtobuildsuffix is the name of the variable containing the command to build ${filename}.${suffix} (available as "${.TARGET}"). - for each ${filename}.${suffix}, depend upon ${filename} and use ${cmdtobuildsuffix} to create the former. - add separate ${filename}.${suffix}.gz rule - mipsco & pmax: rename "install.gz" to "netbsd-INSTALL.gz", for consistency and so the target to build the mdset kernel doesn't get confused with general "install" target
|
| 1.11 | 03-May-2002 |
lukem | rather than blocking parallel mdset builds with .WAIT, replace usage of "netbsd.tmp" with "${.TARGET:R}" (et al)
|
| 1.10 | 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.9 | 26-Apr-2002 |
lukem | replace _SRC_TOP_ with NETBSDSRCDIR, since the latter is the "public" version
|
| 1.8 | 14-Apr-2002 |
lukem | - Rename Makefile.mdset variables: MDEXTRA_SUFFIXES.${KERNEL} -> MDSET.${FILENAME}.suffixes ${KERNEL.${_K}}.post -> MDSET.${FILENAME}.post This allows "default" rules for for MDSETTARGETS with FILENAMEs of "-" by defined MDSET.-.post & MDSET.-.suffixes - Document the above - Use the above appropriately in various Makefiles - Be a be quieter when building these kernels - Add .WAIT syncs so that multiple kernels aren't built in parallel, because the temporary filename is the same, and it also avoid hairy magic in syncing the targets generated from MDSET.${FILENAME}.suffixes with the master target for that ${FILENAME}
|
| 1.7 | 12-Apr-2002 |
lukem | Makefile.mdset: replace TARGETS = KERNEL IMAGE [...] with MDTARGETS = KERNEL IMAGE FILENAME [...] If FILENAME is "-", use "netbsd.${KERNEL}" as the target filename
The rest: Update for new MDTARGETS syntax. In some cases, the kernel name from the "old" method will be used to override the default.
|
| 1.6 | 12-Apr-2002 |
lukem | - don't pull in <bsd.prog.mk> in Makefile.mdset; do that in the caller instead - renamed optional post-strip action variable from ${KERNEL}.post to netbsd.${KERNEL}.post
|
| 1.5 | 11-Apr-2002 |
lukem | convert to distrib/common/Makefile.mdset
|
| 1.4 | 30-Mar-2002 |
thorpej | Fix shark release building targets.
|
| 1.3 | 05-Mar-2002 |
thorpej | Make sure <bsd.own.mk> is pulled in before ${PRINTOBJDIR} is used.
|
| 1.2 | 05-Mar-2002 |
thorpej | Use ${PRINTOBJDIR}.
|
| 1.1 | 11-Feb-2002 |
thorpej | First cut at instkernel for NetBSD/shark. Based on NetBSD/alpha instkernel.
|
| 1.12.2.1 | 12-Aug-2003 |
tron | Apply patch (requested by jmc in ticket #1404): Fix 2 remaining places items are depending on execute permissions coming out from a cvs checkout on scripts.
|
| 1.14.16.1 | 22-Mar-2007 |
jdc | Pull up revision 1.15 (requested by jmmv in ticket #509).
Convert shark's installation kernel image (netbsd-INSTALL) to a.out format so that it can be loaded by the machine's firmware. Put the resulting image inside the 'installation/instkernel' release subdirectory, as the installation instructions explain.
Fixes port-shark/35563.
|
| 1.15.16.1 | 18-Sep-2008 |
wrstuden | Sync with wrstuden-revivesa-base-2.
|
| 1.15.12.2 | 05-Oct-2008 |
mjf | Sync with HEAD.
|
| 1.15.12.1 | 29-Jun-2008 |
mjf | Sync with HEAD.
|
| 1.16.4.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.16.2.2 | 22-Nov-2010 |
riz | Pull up following revision(s) (requested by tsutsui in ticket #1127): distrib/shark/instkernel/instkernel/Makefile: revision 1.21 etc/etc.shark/Makefile.inc: revision 1.12 Copy ramdisk INSTALL.aout kernel into installation/instkernel in ${RELEASEDIR} where it had been put and documented. Actually closes PR port-shark/41672.
|
| 1.16.2.1 | 22-Nov-2010 |
riz | Pull up following revision(s) (requested by is in ticket #1127): distrib/shark/instkernel/instkernel/Makefile: revision 1.20 etc/etc.shark/Makefile.inc: revision 1.11 distrib/shark/instkernel/instkernel/Makefile: revision 1.19 Install a.out version of INSTALL kernel in release. Slightly modified from a patch provided by Izumi Tsutsui as response to PR 41672. 2nd part of "install kernel -> release" fix, inspired by tsutsui@'s patch to PR 41672.
|
| 1.23.44.1 | 10-Jun-2019 |
christos | Sync with HEAD
|
| 1.23.42.1 | 18-Jan-2019 |
pgoyette | Synch with HEAD
|
| 1.22 | 24-Jan-2017 |
christos | += for MAKEFS_FLAGS
|
| 1.21 | 11-Feb-2010 |
roy | branches: 1.21.30; 1.21.34; Remove terminfo.db as it's now embedded in libterminfo.
|
| 1.20 | 05-Feb-2010 |
roy | Use the rescue terminfo.db in our images instead of termcap.
|
| 1.19 | 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.18 | 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.17 | 20-Sep-2009 |
abs | ${NETBSDSRCDIR}/distrib/common/protocols => ${DISTRIBDIR}/common/protocols ${NETBSDSRCDIR}/distrib/common/services => ${DISTRIBDIR}/common/services
|
| 1.16 | 20-Sep-2009 |
abs | Alas poor dot.hdprofile. I knew him... not at all Horatio. (Remove)
|
| 1.15 | 07-Apr-2009 |
joerg | Change ramdisks from dhclient to dhcpcd and add corresponding glue to sysinst. For amd64, the crunchgen binary shrinks by 150KB uncompresssed, 60KB compressed.
|
| 1.14 | 25-Jan-2009 |
abs | branches: 1.14.2; Use the cutdown distrib/common/services and distrib/common/protocols rather than the full fat etc versions
|
| 1.13 | 30-Jul-2007 |
jmmv | branches: 1.13.12; 1.13.18; In the shark's installation image, create the bpf device from the 'ramdisk' MAKEDEV goal instead of from a Makefile definition. As there is just one configuration for the ramdisk, it's better to keep everything in one place.
|
| 1.12 | 29-Jul-2007 |
jmmv | Add dhclient to the shark's installation disk image so that we can configure network interfaces through DHCP in sysinst.
|
| 1.11 | 10-May-2007 |
dogcow | 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.10 | 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.9 | 26-Apr-2002 |
lukem | replace _SRC_TOP_ with NETBSDSRCDIR, since the latter is the "public" version
|
| 1.8 | 12-Apr-2002 |
lukem | alpha sort some entries
|
| 1.7 | 12-Apr-2002 |
lukem | minor tweak
|
| 1.6 | 06-Apr-2002 |
tsutsui | Set DBG=-Os for libhack.
|
| 1.5 | 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.4 | 31-Mar-2002 |
thorpej | Give the ramdisk some free inodes so that sysinst can create temp files.
|
| 1.3 | 30-Mar-2002 |
thorpej | Fix shark release building targets.
|
| 1.2 | 30-Mar-2002 |
lukem | convert to new distrib world order. make UNPRIVED= should now work. (xxx; untested)
|
| 1.1 | 11-Feb-2002 |
thorpej | First cut at instkernel for NetBSD/shark. Based on NetBSD/alpha instkernel.
|
| 1.13.18.2 | 30-Jul-2007 |
jmmv | In the shark's installation image, create the bpf device from the 'ramdisk' MAKEDEV goal instead of from a Makefile definition. As there is just one configuration for the ramdisk, it's better to keep everything in one place.
|
| 1.13.18.1 | 30-Jul-2007 |
jmmv | file Makefile was added on branch matt-mips64 on 2007-07-30 14:03:18 +0000
|
| 1.13.12.1 | 05-Oct-2008 |
mjf | Sync with HEAD.
|
| 1.14.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.21.34.1 | 21-Apr-2017 |
bouyer | Sync with HEAD
|
| 1.21.30.1 | 20-Mar-2017 |
pgoyette | 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 | 11-Feb-2002 |
thorpej | First cut at instkernel for NetBSD/shark. Based on NetBSD/alpha instkernel.
|
| 1.2.26.1 | 05-Oct-2008 |
mjf | Sync with HEAD.
|
| 1.3 | 20-Sep-2009 |
abs | Alas poor dot.hdprofile. I knew him... not at all Horatio. (Remove)
|
| 1.2 | 26-Jul-2003 |
salo | branches: 1.2.32; netbsd.org->NetBSD.org
|
| 1.1 | 11-Feb-2002 |
thorpej | First cut at instkernel for NetBSD/shark. Based on NetBSD/alpha instkernel.
|
| 1.2.32.1 | 05-Oct-2008 |
mjf | Sync with HEAD.
|
| 1.5 | 09-Jan-2020 |
martin | PR install/54780: in the (of course totally unlikely) case that sysinst should crash, run "stty sane".
|
| 1.4 | 31-Jul-2007 |
jmmv | branches: 1.4.10; 1.4.16; 1.4.78; 1.4.80; Switch NetBSD/shark's installation kernel and disk image to use wscons instead of pccons, just like its GENERIC kernel does.
This obsoletes pccons in this platform, which will probably be removed later.
|
| 1.3 | 12-Mar-2007 |
jmmv | If running the installer from a serial console, ask the user for the appropriate TERM value. Otherwise use 'pc3' for local consoles (pccons or wscons). Based on code from hp300, although that port asks the user unconditionally.
Fixes PR port-shark/18355.
|
| 1.2 | 26-Jul-2003 |
salo | netbsd.org->NetBSD.org
|
| 1.1 | 11-Feb-2002 |
thorpej | First cut at instkernel for NetBSD/shark. Based on NetBSD/alpha instkernel.
|
| 1.4.80.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.4.78.1 | 08-Apr-2020 |
martin | Merge changes from current as of 20200406
|
| 1.4.16.2 | 31-Jul-2007 |
jmmv | Switch NetBSD/shark's installation kernel and disk image to use wscons instead of pccons, just like its GENERIC kernel does.
This obsoletes pccons in this platform, which will probably be removed later.
|
| 1.4.16.1 | 31-Jul-2007 |
jmmv | file dot.profile was added on branch matt-mips64 on 2007-07-31 19:51:59 +0000
|
| 1.4.10.1 | 05-Oct-2008 |
mjf | Sync with HEAD.
|
| 1.24 | 03-Jul-2011 |
tron | Update location of "less" source directory to the build of various install medias.
|
| 1.23 | 19-Jun-2011 |
tsutsui | Remove unnecessary gnu/usr.bin path from SRCDIRS.
|
| 1.22 | 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.21 | 14-Jan-2011 |
tsutsui | branches: 1.21.4; Adjust file lists for recent move: usr/sbin/chown -> sbin/chown usr/bin/chgrp -> bin/chgrp
|
| 1.20 | 11-Feb-2010 |
roy | Remove terminfo.db as it's now embedded in libterminfo.
|
| 1.19 | 05-Feb-2010 |
roy | Use the rescue terminfo.db in our images instead of termcap.
|
| 1.18 | 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.17 | 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.16 | 20-Sep-2009 |
abs | ${NETBSDSRCDIR}/distrib/common/protocols => ${DISTRIBDIR}/common/protocols ${NETBSDSRCDIR}/distrib/common/services => ${DISTRIBDIR}/common/services
|
| 1.15 | 20-Sep-2009 |
abs | Alas poor dot.hdprofile. I knew him... not at all Horatio. (Remove)
|
| 1.14 | 18-Sep-2009 |
abs | Of the arious list files 28 said PROG usr/bin/gzip usr/bin/gzcat usr/bin/gunzip while 14 picked PROG usr/bin/gzip usr/bin/gunzip usr/bin/gzcat
Make them all choose the former. No functional change.
|
| 1.13 | 29-Apr-2009 |
tsutsui | Fix indent on common/protocols changes.
|
| 1.12 | 07-Apr-2009 |
joerg | Change ramdisks from dhclient to dhcpcd and add corresponding glue to sysinst. For amd64, the crunchgen binary shrinks by 150KB uncompresssed, 60KB compressed.
|
| 1.11 | 25-Jan-2009 |
abs | branches: 1.11.2; Use the cutdown distrib/common/services and distrib/common/protocols rather than the full fat etc versions
|
| 1.10 | 06-May-2008 |
dyoung | Add -lprop to the LIBS line so that ifconfig will link.
|
| 1.9 | 29-Jul-2007 |
jmmv | branches: 1.9.12; 1.9.14; 1.9.16; Add dhclient to the shark's installation disk image so that we can configure network interfaces through DHCP in sysinst.
|
| 1.8 | 10-May-2007 |
dogcow | 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.7 | 12-Mar-2007 |
jmmv | If running the installer from a serial console, ask the user for the appropriate TERM value. Otherwise use 'pc3' for local consoles (pccons or wscons). Based on code from hp300, although that port asks the user unconditionally.
Fixes PR port-shark/18355.
|
| 1.6 | 27-Dec-2003 |
martin | More crunchgen lists needing -lz now for new gzip. Noticed by Markus W Kilbinger.
|
| 1.5 | 26-Apr-2002 |
lukem | replace _SRC_TOP_ with NETBSDSRCDIR, since the latter is the "public" version
|
| 1.4 | 13-Apr-2002 |
lukem | consistency cleanup
|
| 1.3 | 30-Mar-2002 |
thorpej | * mount_mfs is a link to newfs * Add tset
|
| 1.2 | 30-Mar-2002 |
lukem | convert to new distrib world order. make UNPRIVED= should now work. (xxx; untested)
|
| 1.1 | 11-Feb-2002 |
thorpej | First cut at instkernel for NetBSD/shark. Based on NetBSD/alpha instkernel.
|
| 1.9.16.2 | 29-Jul-2007 |
jmmv | Add dhclient to the shark's installation disk image so that we can configure network interfaces through DHCP in sysinst.
|
| 1.9.16.1 | 29-Jul-2007 |
jmmv | file list was added on branch matt-mips64 on 2007-07-29 13:59:40 +0000
|
| 1.9.14.1 | 18-May-2008 |
yamt | sync with head.
|
| 1.9.12.2 | 05-Oct-2008 |
mjf | Sync with HEAD.
|
| 1.9.12.1 | 02-Jun-2008 |
mjf | Sync with HEAD.
|
| 1.11.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.21.4.1 | 23-Jun-2011 |
cherry | Catchup with rmind-uvmplock merge.
|
| 1.2 | 30-Mar-2002 |
lukem | convert to new distrib world order. make UNPRIVED= should now work. (xxx; untested)
|
| 1.1 | 11-Feb-2002 |
thorpej | First cut at instkernel for NetBSD/shark. Based on NetBSD/alpha instkernel.
|
| 1.2 | 30-Mar-2002 |
lukem | convert to new distrib world order. make UNPRIVED= should now work. (xxx; untested)
|
| 1.1 | 11-Feb-2002 |
thorpej | First cut at instkernel for NetBSD/shark. Based on NetBSD/alpha instkernel.
|