History log of /freebsd-10.1-release/usr.sbin/crunch/
Revision Date Author Comments
272461 03-Oct-2014 gjb

Copy stable/10@r272459 to releng/10.1 as part of
the 10.1-RELEASE process.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


246346 05-Feb-2013 pfg

crunchgen: Permit use of alternative linkers.

Submitted by: Pete Chou
MFC after: 1 week


246298 03-Feb-2013 pfg

crunchide(1): Put e_shnum into a local variable.

This simplifies the code a bit.

Submitted by: Cristoph Mallon
MFC after: 2 weeks


246296 03-Feb-2013 pfg

crunchide(1): support non-custom elf object layout

The crunchide utility presumes the last 3 chunks of an ELF object
layout are section headers, symbol table, and then string table.
However, this is not specified in the ELF standards, and linkers
may generate different layouts when doing partial linking (-r).

This change is required to build FreeBSD with mclinker or the
gold linker.

PR: bin/174011
Submitted by: Pete Chou
Reviewed by: Cristoph Mallon
MFC after: 2 weeks


246278 03-Feb-2013 pfg

crunch: Sync some NetBSD changes

Fix a couple of free's in previous commit.

Obtained from: NetBSD
MFC after: 1 week


246261 02-Feb-2013 pfg

crunch: Sync some NetBSD changes

Revert a comment that was not supposed to go away.

Obtained from: NetBSD


246256 02-Feb-2013 pfg

crunch: Sync some NetBSD changes.

crunchide:
Apr 11, 2009: fix some -Wsign-compare issues.
Sep 20, 1999: Free the right thing.

crunchgen:
Apr 14, 2009: Fix some WARNS=4 issues (-Wshadow -Wcast-qual)
Oct 30, 2004: Add (unsigned char) cast to ctype functions
Feb 5, 2001: fix nested extern.

examples:
Aug 30, 2007: NetBSD 36867 - trsp references are deprecated

Obtained from: NetBSD
MFC after: 1 week


241606 16-Oct-2012 attilio

Disconnect non-MPSAFE PORTALFS from the build in preparation for dropping
GIANT from VFS.

This is not targeted for MFC.


241298 06-Oct-2012 marcel

Add support for bmake. This includes:
1. Don't do upgrade_checks when using bmake. As long as we have WITH_BMAKE,
there's a bootstrap complication in ths respect. Avoid it. Make the
necessary changes to have upgrade_checks work wth bmake anyway.
2. Remove the use of -E. It's not needed in our build because we use ?= for
the respective variables, which means that we'll take the environment
value (if any) anyway.
3. Properly declare phony targets as phony as bmake is a lot smarter (and
thus agressive) about build avoidance.
4. Make sure CLEANFILES is complete and use it on .NOPATH. bmake is a lot
smarter about build avoidance and should not find files we generate in
the source tree. We should not have files in the repository we want to
generate, but this is an easier way to cross this hurdle.
5. Have behavior under bmake the same as it is under make with respect to
halting when sub-commands fail. Add "set -e" to compound commands so
that bmake is informed when sub-commands fail.
6. Make sure crunchgen uses the same make as the rest of the build. This
is important when the make utility isn't called make (but bmake for
example).
7. While here, add support for using MAKEOBJDIR to set the object tree
location. It's the second alternative bmake looks for when determining
the actual object directory (= .OBJDIR).

Submitted by: Simon Gerraty <sjg@juniper.net>
Submitted by: John Van Horne <jvanhorne@juniper.net>


237625 27-Jun-2012 obrien

Some amount of style(9)
-- function definitions, header ordering, and $FreeBSD$.


237574 25-Jun-2012 obrien

Ensure crunchen uses the same make binary as the rest of the build.

Submitted by: Simon Gerraty <sjg@juniper.net>


237254 19-Jun-2012 eadler

Remove variables which are initialized but never used thereafter reported by gcc46 warning

Approved by: cperciva
MFC After: 3 days


232911 13-Mar-2012 jmallett

Fix crunchide on MIPS with other than the O32 ABI.


213573 08-Oct-2010 uqs

mdoc: drop redundant .Pp and .LP calls

They have no effect when coming in pairs, or before .Bl/.Bd


212537 13-Sep-2010 imp

It turns out that TARGET_CPUARCH doesn't buy us much here, if anything, but
costs us another copy of the transform. Revert it.

# Maybe makefile.inc1 should set TARGET_CPUARCH for the cross-tools, but
# it doesn't now. That would solve problems in other places too.

Submitted by: jmallet@


212511 13-Sep-2010 imp

Use TARGET_CPUARCH instead of TARGET_ARCH here. Define TARGET_CPUARCH
based on TARGET_ARCH. Use TARGET_ARCH still for a powerpc64 test.
Futureproof for coming mipsel/mipseb and arm/armeb rename.


211222 12-Aug-2010 adrian

Fix crunchide to work on sparc64 and perhaps other 64 bit platforms.

I used the wrong type when setting st_name in the symbol table entry
struct. It's an Elf64_Word which is defined as an unsigned 32 bit int
on both 32 and 64 bit platforms.

To make things sensible, define some new macros to use as "word" macros
and use those, rather than simply using the explicit 32 bit macros.


211137 10-Aug-2010 adrian

Port over changes to the crunch symbol hiding method from NetBSD.

The older symbol hiding method breaks for MIPS. This implements
symbol hiding through renaming to a symbol name which is highly
unlikely to clash.

The NetBSD code didn't use byte-swapping macros for endian-awareness;
so it didn't work when cross-compiling a MIPS world on i386/amd64.
This patch includes those (as best as I could figure what they
should be) and has been tested to generate valid MIPS crunch
binaries both cross- and native- compiled.


209889 10-Jul-2010 nwhitehorn

Teach crunchide(1) about PPC ELF64.


208027 13-May-2010 uqs

mdoc: move CAVEATS, BUGS and SECURITY CONSIDERATIONS sections to the
bottom of the manpages and order them consistently.

GNU groff doesn't care about the ordering, and doesn't even mention
CAVEATS and SECURITY CONSIDERATIONS as common sections and where to put
them.

Found by: mdocml lint run
Reviewed by: ru


201390 02-Jan-2010 ed

The last big commit: let usr.sbin/ use WARNS=6 by default.


201214 29-Dec-2009 trasz

Remove extra space introduced by the previous commit.

Submitted by: rwatson


201211 29-Dec-2009 trasz

Remove pppd and SLIP-related stuff.


187943 31-Jan-2009 obrien

Run with -B and just .POSIX.


187131 13-Jan-2009 obrien

Set .POSIX mode, along with disable parallel mode. Crunchgen parses the
output from make(1) and its picky what it should look like.
Also use make's conditional assignment operator rather than test and set.


182725 03-Sep-2008 obrien

Introduce crunchide to the ELF e_machine MIPS values.


173412 07-Nov-2007 kevlo

Cleanup of userland __P use


173067 27-Oct-2007 yar

Include <stdlib.h> for the right prototype for exit(3).


173065 27-Oct-2007 yar

Set the program name if the crunched program is selected through
argv[1] to mimic crt0 behaviour. Do the job by a direct assignment
to __progname in order to stay compatible with NetBSD, whose
setprogname() is a deliberate no-op.

The reason for this change is that some programs (usually those
imported from NetBSD) use getprogname() to distinguish between their
aliases. (See pkill aka pgrep for example.)

This change can be useful, and applicable, to NetBSD, too.


167260 06-Mar-2007 kevlo

Use sizeof() for calculating the buffer size instead of hard-coded values.


164654 27-Nov-2006 jb

Back out half of my previous change to support parallel makes.
The generated Makefile clashes with the src/bin/sh/Makefile, causing
it to try to use a rule to build something it doesn't need to.


164571 24-Nov-2006 jb

Fix another parallel make problem with the generated make file.

Define the xxx_OBJPATHS earlier and then use it in the xxx_make
target because each obj is actually made through that.

This allows the crunch to work with -j32 on sun4v.

The makefile generated is still poor, though. It really shouldn't use
the general 'make all' to do the submakes in the app directories being
crunched because each of those objects is listed as a dependency in
the generated crunch makefile. Doing that really requires a unique rule
to generate them.


164504 22-Nov-2006 jb

Add the SUBMAKE_TARGETS (like ppp_make) to the dependency list
for linking the crunched app so that when a parallel make is run
(like -j32 on sun4v), the link waits for the sub-make processes
to complete.


164492 22-Nov-2006 rodrigc

Remove reference to mount_fdescfs.

Reminded by: ru


162806 29-Sep-2006 ru

Markup fixes.


162794 29-Sep-2006 bms

Push removal of mrouted down to the rest of the tree.


161526 22-Aug-2006 ru

Remove alpha left-overs.


153688 23-Dec-2005 ceri

Bump .Dd before I get told off.


153687 23-Dec-2005 ceri

Commands like gmirror, graid3, ... and others which use dlopen() to load
classes from say, /lib/geom, cannot be statically linked completely.
Moreover, those shared objects may require other shared objects (i.e.
for geom, libraries like -lmd, -lcrypto).

The libs_so extension to crunchgen fixes this by allowing some libraries
to be linked in dynamically. This requires that a copy of rtld and the
shared libraries be made available to the crunched binary, and so is not
suitable for all environments. Crunchgen configurations which do not
use the 'libs_so' keyword are unaffected and produce identical binaries
with and without this commit.

Approved by: murray (mentor, in spirit), jhb
In collaboration with: Adrian Steinmann <ast at marabu dot ch>
MFC After: 6 weeks


153504 18-Dec-2005 marcel

Make our ELF64 type definitions match standards. In particular this
means:
o Remove Elf64_Quarter,
o Redefine Elf64_Half to be 16-bit,
o Redefine Elf64_Word to be 32-bit,
o Add Elf64_Xword and Elf64_Sxword for 64-bit entities,
o Use Elf_Size in MI code to abstract the difference between
Elf32_Word and Elf64_Word.
o Add Elf_Ssize as the signed counterpart of Elf_Size.

MFC after: 2 weeks


140509 20-Jan-2005 ru

In crunchgen(1), when calling make(1), don't redirect stderr to stdout,
just rely on the exit status to detect an error. This makes crunchgen(1)
safe to use with certain make(1) debugging flags.

MFC after: 1 week


139103 21-Dec-2004 ru

Start the dreaded NOFOO -> NO_FOO conversion.

OK'ed by: core


136910 24-Oct-2004 ru

For variables that are only checked with defined(), don't provide
any fake value.


133399 09-Aug-2004 harti

Fix a 4.X -> 5.X upgrade problem: crunchgen used to emit a line 'MAKE=make'
or 'env MAKEOBJDIRPREFIX=... make' depending on the setting of
MAKEOBJDIRPREFIX in the environment. In any case this line kills the
original value of ${MAKE}. When during buildworld a new make is built (as
is the case during the upgrade) this causes a wrong make to be picked up
(the first one in the path). Use the same technique as Makefile.inc1:
create a MAKEENV variable and a CRUNCHMAKE that calls ${MAKE} with that
MAKEENV prefixed. Use CRUNCHMAKE instead of MAKE throughout the generated
makefile. This leaves the original ${MAKE} undisturbed.


131500 02-Jul-2004 ru

Mechanically kill hard sentence breaks.


130927 22-Jun-2004 obrien

Adjust the system endian and a.out headers to be more MI and cross-building
friendly. Use the systems headers rather than local versions.

Reviewed by: ru


130155 06-Jun-2004 cognet

Tell crunchide to deal with arm elf binaries as well.
Rescue can now be built for arm.


129652 24-May-2004 stefanf

Include <netinet/in.h> for ntoh*() and hton*() prototypes.

Approved by: das (mentor)


118656 08-Aug-2003 ru

Fix a bug that caused i386 to produce broken binaries for big-endian
64-bit platforms. (size_t is 32bit on i386, but Elf_Shdr.sh_size is
64bit on SPARC64.)


117857 22-Jul-2003 obrien

Teach crunchide(1) about PowerPC ELF.

PR: 54526
Submitted by: Stefan Farfeleder <stefan@fafoe.narf.at>


115757 03-Jun-2003 peter

Add AMD64 support.


113886 23-Apr-2003 ru

The second chdir(1) that I trimmed is needed too
if the program has an object directory.

Explained by: Tim Kientzle <kientzle@acm.org>


113855 22-Apr-2003 ru

chdir(1) into a source directory before attempting to determine the
OBJS list. This is needed to crunch any program that relies on the
correct .CURDIR setting, e.g. src/bin/csh.

Submitted by: Tim Kientzle <kientzle@acm.org>


112767 29-Mar-2003 obrien

Back out the totally unapproved backout of my commits.


112192 13-Mar-2003 ru

Complete the endianness support -- sparc64 can now do i386.

Tested on: sparc64 -> i386, i386 -> sparc64
Debugged by: elfdump(1)


110033 29-Jan-2003 ru

Part 1/3 of unbreaking cross releases:

Back out the removal of custom version of endian.h system header.
On recent systems, it just falls back to <sys/endian.h>. But on
older systems like 5.0-DP1 or 4-STABLE, this private version may
be necessary, as crunchide(1) is a cross-tool for "make release".

Spotted by: kris, markm


108440 30-Dec-2002 obrien

Use <sys/endian.h> rather than a private verison.

Tested on: sparc64, Athlon[32]


106848 13-Nov-2002 ru

Bootstrapping aid for 4.0-RELEASE.


105264 16-Oct-2002 charnier

Put author name under .An/Aq.


101550 09-Aug-2002 gshapiro

Apply the envp fix to the other call to main() as well.

Submitted by: Peter Edwards <pmedwards@eircom.net>


101341 04-Aug-2002 gshapiro

Pass envp to crunched program's main() routines as some depend on it.
Note that crunchgen's stub .c programs already have the code to use it:

"int _crunched_%s_stub(int argc, char **argv, char **envp)"
"{return main(argc,argv,envp);}\" >%s_stub.c\n",

Add $FreeBSD$ to allow the commit.

Reviewed by: luigi
MFC after: 3 days


97559 30-May-2002 ru

mdoc(7) police: markup nit.


97280 25-May-2002 ru

Get all the fruit from makefile.


97227 24-May-2002 ru

Removed dead code.


97226 24-May-2002 ru

Handle endianness. This completes cross-support for sparc64.


97068 21-May-2002 ru

Added support for ia64 and sparc64.


95781 30-Apr-2002 ru

Make crunchide(1) a cross-tool; needed for cross-arch "make release".
Note that a.out is only supported for the non-cross i386 case.


95258 22-Apr-2002 des

Usage style sweep: spell "usage" with a small 'u'.
Also change one case of blatant __progname abuse (several more remain)
This commit does not touch anything in src/{contrib,crypto,gnu}/.


95127 20-Apr-2002 charnier

Use `The .Nm utility'


93435 30-Mar-2002 luigi

Add a "special progname lib xxx ..." command to crunchgen
so the .lo files can be partially linked against libraries
which redefine symbols in the standard libs, or which reference
symbols in the objects.

Submitted by: Sam Leffler
MFC After: 3 days


85355 23-Oct-2001 peter

ia64 support. Hide a.out support solely under i386. While alpha never
was released in a.out form, it does define the a.out data structures.
The ia64 port does not.


81823 17-Aug-2001 joe

Make source crunches work as well as object crunches; broken in the
last commit that fixed object crunches.

Repeat after me, "no excuses for not testing".


81700 15-Aug-2001 joe

Make crunchgen crunch pre-built object files again, i.e.:

progs prog1
special prog1 objdir ../../prog1/obj
special prog1 objs prog1.o

This fixes a bug that I introduced around the time of 4.2-release.

Reported by: Larry Baird <lab@gta.com>


81622 14-Aug-2001 ru

mdoc(7) police: s/BSD/.Bx/ where appropriate.


80029 20-Jul-2001 obrien

Perform a major cleanup of the usr.sbin Makefiles.
These are not perfectly in agreement with each other style-wise, but they
are orders of orders of magnitude more consistent style-wise than before.


80022 20-Jul-2001 obrien

Remove GCC'isms in CFLAGS.


79755 15-Jul-2001 dd

Remove whitespace at EOL.


79537 10-Jul-2001 ru

mdoc(7) police: removed HISTORY info from the .Os call.


78520 20-Jun-2001 joe

Use 'LIBS+= ...' instead of 'LIBS= ...' in the generated makefile
so that the user can override libraries at build time. This is
makes it easier to cross-compile crunch builds.

Suggested by: luigi
MFC after: 3 days


77578 01-Jun-2001 ru

mount_msdos(8) -> mount_msdosfs(8).


77132 24-May-2001 ru

mount_fdesc -> mount_fdescfs
mount_portal -> mount_portalfs


76224 02-May-2001 obrien

* include/elf.h has been repo copied to include/elf-hints.h, and it no
longer includes machine/elf.h.
* consumers of elf.h now use the minimalist elf header possible.

This change is motivated by Binutils 2.11.0 and too much clashing over
our base elf headers and the Binutils elf headers.


75153 04-Apr-2001 ru

Document ``special <progname> ident <identifier>'' command.


75152 04-Apr-2001 ru

- Call `subclean' after `clean' for each program.
- Eliminate compiler warning.


75016 30-Mar-2001 ru

`buildopts' may affect the selection of object files.
Make sure we pass $(BUILDOPTS) to the `clean' target
so that `make clean' works on the same set of object
files. Otherwise, we may end up with an incorrectly
built and up-to-date object file.


70884 10-Jan-2001 joe

Liberal application of style(9).


70880 10-Jan-2001 joe

Flag an error and remove the program from the list if there is
no source directory or no objects can be determined.

Initialise a structure variable.


70427 28-Dec-2000 des

Retire kernfs (userland part).


70331 24-Dec-2000 joe

Clean up the source directory finding code, and in the process fix a
problem that occurs when a program's source isn't found.


70124 17-Dec-2000 joe

Use one of the TMPDIR env variable or _PATH_TMP instead of hardcoding
/tmp.

Submitted by: jedgar


70115 17-Dec-2000 joe

Avoid potential problems with the existance of a shadow obj directory
confusing the 'make -f tmpfile' in the tmpfile, by creating it in /tmp.


70114 17-Dec-2000 joe

Clarify an ambiguous 'else' introduced by a recent commit.


70113 17-Dec-2000 joe

o check strdup() return values
o strcpy() -> strlcpy()
o sprintf() -> snprintf()
o mktemp() -> mkstemp()
o use err() instead of errx() in out_of_memory() function since
errno will probably be set

Submitted by: jedgar


70112 17-Dec-2000 joe

Hopefully the last patch in a series to try and teach crunchgen to
handle MAKEOBJDIRPREFIX better, in conjunction with the -o and -p
flags.


69446 01-Dec-2000 ru

mdoc(7) police: fixed errors from the previous revision, keep
the synopsis in a nice form, and a few more cosmetic changes.


69413 30-Nov-2000 luigi

Make crunchgen aware of obj directories. Formerly it had
/usr/obj hardwired in the code, now you can override it
with a command line option or MAKEOBJDIRPREFIX env. variable.
The above is useful to build picobsd-specific objects in some other
place than /usr/obj

While at it, fix documentation and change a few sprintf -> snprintf.


68965 20-Nov-2000 ru

mdoc(7) police: use the new features of the Nm macro.


68854 17-Nov-2000 ru

mdoc(7) police: use certified section headers wherever possible.


68824 16-Nov-2000 ru

mdoc(7)ify.


68750 15-Nov-2000 joe

Add and document a new configuration command: buildopts.
This allows global make options to be specified within the crunch
configuration file.


68575 10-Nov-2000 ru

Avoid use of direct troff requests in mdoc(7) manual pages.


68569 10-Nov-2000 joe

Define a new special type: buildopts.

This allows build flags to be specified for a particular program from
within the crunch.conf file, eg:

prog ppp
special ppp buildopts -DNOKLDLOAD -DNOINET6 -DNONAT -DNOATM

This adds '-DNOKLDLOAD -DNOINET6 -DNONAT -DNOATM' to make targets
related to ppp when determining which object files to build and
when calculating dependencies and building the targets.


68512 09-Nov-2000 steve

Since the 'when built' phrase is talking about the 'source file' we
should be using the word 'creates' instead.


68286 03-Nov-2000 joe

Cause prog_make targets to include a ``make obj'' rule if the -o flag
is given to crunchgen.
[ This fixes the previous commit which silently added ``make obj'' ]


68285 03-Nov-2000 joe

A missing feature of crunchgen was the ability to supply make options on
a per program basis.

This has now been added in the following way:

* Harness the make header file that's specified with the -h argument:
- Allow the user to define $(OPTS) to specify make arguments that should
be added to every program target.
- Allow the user to define $(prog_OPTS) to specify make arguments that
should just be added to the build of 'prog'.

* Make sure that $(OPTS) and $(prog_OPTS) are defined when looking through
each program's make file to determine which object files to crunch.

* When building the crunchgen makefile add $(OPTS) and $(prog_OPTS)
to the depend and build rules for $(prog_OBJS).


65148 28-Aug-2000 grog

Add the description of some hard-learnt restrictions and a workaround.


57673 01-Mar-2000 sheldonh

Remove single-space hard sentence breaks. These degrade the quality
of the typeset output, tend to make diffs harder to read and provide
bad examples for new-comers to mdoc.


56995 05-Feb-2000 luigi

Add a few features to crunchgen to simplify the use of existing
makefiles (for use with picobsd among other things).
See the manpage for details, but:

* -h makefile-include-name
can be used to specify a file to include in the makefiles
generated by crunchgen . This is a good place to specify make
variables such as RELEASE_CRUNCH, NOTHIS, NOTHAT and the like.

* special progname objvar variable_name
in the crunch config file declares a different variable than
OBJS to be used to get the list of objects.

* crunchgen now looks first for Makefile.<progname> in the current
directory to override the makefile in <progname> source dir.
This in many cases avoids the need to patch the original makefile
if the above two features are still not enough.

Approved-By: jordan


50479 28-Aug-1999 peter

$Id$ -> $FreeBSD$


48791 12-Jul-1999 nik

Add $Id$, to make it simpler for members of the translation teams to
track.

The Id line is normally at the bottom of the main comment block in the
man page, separated from the rest of the manpage by an empty comment,
like so;

.\" $Id$
.\"

If the immediately preceding comment is a @(#) format ID marker than the
the $Id$ will line up underneath it with no intervening blank lines.
Otherwise, an additional blank line is inserted.

Approved by: bde


39890 02-Oct-1998 jkh

Temporary use different stubs for the ECOFF case; I'm trying to get this
to build on the alpha, first off.


39351 16-Sep-1998 jhay

Update the man page to match the rest of crunchide.


39172 14-Sep-1998 jkh

Teach crunch about an elf/a.out world.
Submitted by: jhay


39171 14-Sep-1998 jkh

Assume ELF-style symbol names now.
Submitted by: jhay


34809 23-Mar-1998 charnier

.Sh AUTHOR -> .Sh AUTHORS. Use .An/.Aq.


32704 22-Jan-1998 sos

Use /bin/pwd instead of a potentially shell builtin that does
not return the "real" path.
This makes it possible to have the .o files put in the /usr/obj
hierachy instead of in the /usr/src one.


32589 17-Jan-1998 brian

Remove the necessity of -ldes and -lalias etc from release/Makefile.
When building a release, RELEASE_CRUNCH is defined for a `make' of
the objects required by the crunch of each program. The object list
is still obtained in the same way, so you must make sure that all
objects are built (empty if necessary) by this make. ppp/Makefile
provides an example.

Reviewed by: jkh


30120 05-Oct-1997 joerg

Add a new special called `keep' to the list of special options. It
provides for a means to specify an argument for crunchide's -k option.
(This is required by ntpdate.)

Submitted by: peter@rhiannon.clari.net.au (Peter Hawkins)


29453 15-Sep-1997 charnier

Use err(3).


29329 13-Sep-1997 wosch

spelling corrections.

PR: docs/4450
Submitted by: josh@quick.net


28925 30-Aug-1997 jmg

fix misspelling

Submitted-by: Josh Gilliam

Closes PR:4423


24428 31-Mar-1997 imp

compare return value from getopt against -1 rather than EOF, per the final
posix standard on the topic.


22997 22-Feb-1997 peter

Revert $FreeBSD$ to $Id$


21673 14-Jan-1997 jkh

Make the long-awaited change from $Id$ to $FreeBSD$

This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.

Boy, I'm glad we're not using sup anymore. This update would have been
insane otherwise.


19822 16-Nov-1996 joerg

Initialize memory obtained by malloc().

Detected by: phkmalloc -AJ


17430 04-Aug-1996 phk

Enhance crunchgens understanding of our new /usr/obj/`pwd` strategy.


17176 15-Jul-1996 phk

Make crunchgen match the new obj/ convention.


16613 23-Jun-1996 bde

Removed -g from CFLAGS.


13123 30-Dec-1995 peter

This commit was generated by cvs2svn to compensate for changes in r13122,
which included commits to RCS files with non-trunk default branches.


8857 30-May-1995 rgrimes

Remove trailing whitespace.


8664 21-May-1995 phk

Added a crunched_here(char *path) function so crunched programs can find out
who they share bed and breakfast with.


6980 10-Mar-1995 rgrimes

Need /usr/src/sbin/i386 in srcdirs to get fdisk.


6696 25-Feb-1995 phk

Add a '-l' option, which lists the argv[0]'s we will respond to. This will
simplify the src/release Makefile quite a bit.


5305 31-Dec-1994 jkh

Fix:
>Number: 86
>Category: misc
>Synopsis: fixit.conf missing srcdir
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: core (FreeBSD core team)

From John Capo.
Submitted by: jcapo


4847 28-Nov-1994 ats

Add the automatically generated crunched_skel.c file to the CLEANFILES.


3898 26-Oct-1994 jkh

From: Michael Reifenberger <root@rz-wb.fh-sw.de>

Could you please commit this patch to usr.sbin/crunch/examples ?
This should make fixit.conf compilable again.
VI needs some hacks.

[Note: I'm not sure how relevant this example is anymore, but then it's only
an example]
Submitted by: mr


3356 04-Oct-1994 ache

-lcompat removed from libs


3345 03-Oct-1994 phk

Make sure mkskel.sh bails out if it finds trouble. Use "sh -e" to run it.


2618 09-Sep-1994 rgrimes

Correct the .conf files now that halt is gone and reboot is used in it's
place.

Removed mount_pcfs until we have a replacement.

Removed fdisk until it is ported and/or replaced.

Now have to include many more libraries due to /bin/sh changes.


1772 24-Jun-1994 jkh

Add proper links so that - and -sh are catered for.


1771 24-Jun-1994 jkh

Just talked with James - there's another, better way to go about this.
Back out my earlier change. Note that this is just for the 1.1.5R floppies;
the 1.1.5A ones still have the work-around method (which works fine and
doesn't hurt anything, it's just kludge!).


1770 24-Jun-1994 jkh

This is a kludge. Unless I make a link from sh to - (which would leave a file
called `-' lying around on the users system forever) login shells will fail.
Just special-case the handling of `-' for now until/unless I find a more
palatable solution.


1758 19-Jun-1994 jkh

Remove bogus -lcrypt line.


1751 16-Jun-1994 jkh

John Capo's changes to make the fixit floppy image work; I didn't even
bother looking at this file before! :)


1738 15-Jun-1994 jkh

Whoops, missed the .cache files - those can be tossed too.


1737 15-Jun-1994 jkh

Nuke all the intermediate files.


1725 15-Jun-1994 jkh

1. Clean the intermediate files when building the default fixit floppy
(demonstration) target.
2. Add the kcopy and filesystem floppy configuration files from Rod.


1723 15-Jun-1994 jkh

This commit was generated by cvs2svn to compensate for changes in r1722,
which included commits to RCS files with non-trunk default branches.