History log of /src/etc/etc.sgimips/Makefile.inc |
Revision | | Date | Author | Comments |
1.22 |
| 15-Jan-2012 |
joerg | Now that the name of the ISO image is no longer stable, rename the variable to make it possible to overwrite the default with build.sh -V CDROM_IMAGE=...
|
1.21 |
| 27-Dec-2010 |
christos | branches: 1.21.6; `` -> $()
|
1.20 |
| 27-Aug-2010 |
tsutsui | Fix yet another botch on mips64 merge.
|
1.19 |
| 14-Dec-2009 |
matt | Merge from matt-nb5-mips64
|
1.18 |
| 19-Oct-2008 |
apb | branches: 1.18.8; Use ${TOOL_AWK} instead of ${AWK} or plain "awk" in make commands. Pass AWK=${TOOL_AWK:Q} to shell scripts that use awk.
|
1.17 |
| 18-Mar-2008 |
lukem | Convert all the etc/etc.*/Makefile.inc to use RELEASEDIR/RELEASEMACHINEDIR just like etc/Makefile does.
|
1.16 |
| 24-Jul-2007 |
pavel | branches: 1.16.4; 1.16.10; 1.16.12; 1.16.14; Add a comment reminding to update the release notes if the list of kernels change.
|
1.15 |
| 16-Mar-2007 |
bad | Recent versions of mkisofs (I've tested starting with cdrtools-2.01.01a20) can't find the el-torito boot image with the old syntax. This can be fixed by removed the leading "i386/" from the -b argument, but then the mkisofs from the current cdrtools-2.01 package won't find the boot image.
Change the graf-point specifications so that a trailing / terminates the grafted directories. This way both versions of mkisofs can find the boot loader.
|
1.14 |
| 04-Oct-2005 |
martin | branches: 1.14.4; Better size estimation (the previous code counted the compressed kernels, but we only need the constant size volume header)
|
1.13 |
| 10-May-2005 |
martin | Tweak the iso-image support: avoid arbitrary hardcoded sizes - use awk to estimate the real size and round up a bit instead. Doesn't matter much, but produces a "better" sgi volume header. While there, simplify a few bits and avoid grep|awk pipes.
|
1.12 |
| 22-Apr-2005 |
martin | Pickup bootblock.h from $DESTDIR to make this work when crosscompiling.
|
1.11 |
| 24-Nov-2004 |
jmc | branches: 1.11.2; Remove all references to vnd usage here now that sgivol works correctly on file images
|
1.10 |
| 13-Nov-2004 |
sekiya | Add the IP12 GENERIC kernel.
|
1.9 |
| 15-Nov-2003 |
sekiya | branches: 1.9.4; Add iso-image-md-pre and iso-image-md-post targets. Installation media can now be built with the iso-image target from ${NETBSDSRCDIR}/etc.
|
1.8 |
| 13-Nov-2003 |
sekiya | Adapt to new config file naming convention.
|
1.7 |
| 02-Dec-2002 |
lukem | - add snap_post, which makes "clean depend all release" in ../distrib/ for all platforms. - remove now unnecessary replicated code in the various snap_md_post targets - remove snap_md_pre; nothing uses it any more - use ${NETBSDSRCDIR} and ${KERNSRCDIR} as appropriate
|
1.6 |
| 21-May-2002 |
rafal | Add glue for release stuff, extra ramdisk kernels, etc.
|
1.5 |
| 13-May-2002 |
soren | Make the build machinery happy for now.
|
1.4 |
| 08-May-2002 |
jdolecek | sgimips doesn't have GENERIC ATM
|
1.3 |
| 02-May-2002 |
lukem | - consistency cleanup - ensure INSTALLATION_DIRS contains the appropriate extra directories for a given platform
|
1.2 |
| 29-Nov-2001 |
thorpej | Change the way kernel sets are specified, and make them more consistent. To quote the comment in etc/Makefile that describes how it's done:
# This target builds the kernels specified by each port. A port may # specify the following kernels: # # KERNEL_SETS The list of kernels that will be # packaged into sets, named # kern-${kernel}.tgz. These kernels # are also placed in the binary/kernels # area of the release package as # netbsd-${kernel}.gz. # # EXTRA_KERNELS Additional kernels to place in the # binary/kernels area of the release # package as netbsd-${kernel}.gz, but # which are not placed into sets. This # allows a port to provide e.g. a netbootable # installation kernel containing a ramdisk. # # BUILD_KERNELS Additional kernels to build which are # not placed into sets nor into the # binary/kernels area of the release # package. These are typically kernels # that are built for inclusion only in # installation disk/CD-ROM/tape images. #
|
1.1 |
| 20-Nov-2001 |
soren | etc Makefile.inc for sgimips.
|
1.9.4.2 |
| 05-Apr-2007 |
bouyer | Pull up following revision(s) (requested by bad in ticket #11284): etc/etc.sgimips/Makefile.inc: revision 1.15 via patch etc/Makefile: revision 1.342 via patch Handle mkisofs from recent cdrtool for el-torito boot image. Sync sgimips's Makefile (cosmetic only).
|
1.9.4.1 |
| 06-Apr-2005 |
tron | Pull up revision 1.11 (requested by jmc in ticket #1028): Remove all references to vnd usage here now that sgivol works correctly on file images
|
1.11.2.4 |
| 06-Jun-2007 |
liamjfoy | Pull up following revision(s) (requested by bad in ticket #1753): etc/etc.sgimips/Makefile.inc: revision 1.15 etc/Makefile: revision 1.342 Recent versions of mkisofs (I've tested starting with cdrtools-2.01.01a20) can't find the el-torito boot image with the old syntax. This can be fixed by removed the leading "i386/" from the -b argument, but then the mkisofs from the current cdrtools-2.01 package won't find the boot image. Change the graf-point specifications so that a trailing / terminates the grafted directories. This way both versions of mkisofs can find the boot loader.
|
1.11.2.3 |
| 06-Oct-2005 |
tron | Pull up following revision(s) (requested by martin in ticket #862): etc/etc.sgimips/Makefile.inc: revision 1.14 Better size estimation (the previous code counted the compressed kernels, but we only need the constant size volume header)
|
1.11.2.2 |
| 06-Oct-2005 |
tron | Pull up following revision(s) (requested by martin in ticket #862): etc/etc.sgimips/Makefile.inc: revision 1.13 Tweak the iso-image support: avoid arbitrary hardcoded sizes - use awk to estimate the real size and round up a bit instead. Doesn't matter much, but produces a "better" sgi volume header. While there, simplify a few bits and avoid grep|awk pipes.
|
1.11.2.1 |
| 06-Oct-2005 |
tron | Pull up following revision(s) (requested by martin in ticket #862): etc/etc.sgimips/Makefile.inc: revision 1.12 Pickup bootblock.h from $DESTDIR to make this work when crosscompiling.
|
1.14.4.1 |
| 06-Apr-2007 |
bouyer | Pull up following revision(s) (requested by bad in ticket #557): etc/etc.sgimips/Makefile.inc: revision 1.15 etc/Makefile: revision 1.342 Handle mkisofs from recent cdrtool for el-torito boot image. Sync sgimips's Makefile (cosmetic only).
|
1.16.14.2 |
| 24-Jul-2007 |
pavel | Add a comment reminding to update the release notes if the list of kernels change.
|
1.16.14.1 |
| 24-Jul-2007 |
pavel | file Makefile.inc was added on branch matt-mips64 on 2007-07-24 10:49:29 +0000
|
1.16.12.2 |
| 17-Jan-2009 |
mjf | Sync with HEAD.
|
1.16.12.1 |
| 03-Apr-2008 |
mjf | Sync with HEAD.
|
1.16.10.1 |
| 24-Mar-2008 |
keiichi | sync with head.
|
1.16.4.1 |
| 23-Mar-2008 |
matt | sync with HEAD
|
1.18.8.1 |
| 10-Sep-2009 |
matt | More build adjustments for sgimips64.
|
1.21.6.1 |
| 17-Apr-2012 |
yamt | sync with head
|