From owner-freebsd-current Thu Mar 6 06:56:11 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA21743 for current-outgoing; Thu, 6 Mar 1997 06:56:11 -0800 (PST) Received: from pent.ibm.net (slip129-37-195-84.nc.us.ibm.net [129.37.195.84]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA21731 for ; Thu, 6 Mar 1997 06:56:06 -0800 (PST) Received: from slip129-37-195-228.nc.us.ibm.net (ns01 [127.0.0.1]) by pent.ibm.net (8.8.5/8.7.3) with ESMTP id JAA13081 for ; Thu, 6 Mar 1997 09:56:02 -0500 (EST) Message-Id: <199703061456.JAA13081@pent.ibm.net> To: current@freebsd.org From: "Adam W. Hawks" Reply-to: awhawks@ibm.net Subject: Makeing a SNAP Date: Thu, 06 Mar 1997 09:56:00 -0500 Sender: owner-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I have taken the /usr/src/release/Makefile and replaced the cvs line that builds the source tree in the destination dir and replaced it with a tar line that copies my current /usr/src tree. I then set BUILDNAME and CHROOTDIR and then ran make release. All went fine till it got to the part in release.4 that does the cruch stuff where it fails with the following results. rm -rf /R/stage/crunch mkdir -p /R/stage/crunch export RELEASE_BUILD_FIXIT=noway ; for j in boot fixit ; do rm -rf ${j}_crunch && mkdir ${j}_crunch && ( cd ${j}_crunch && crunchgen /usr/src/release/${j}_crunch.conf && make -f ${j}_crunch.mk all NOCRYPT=yes "CFLAGS=-O2 -pipe -DCRUNCHED_BINARY") && mv ${j}_crunch/${j}_crunch /R/stage/crunch/${j} && true || { rm -rf ${j}_crunch ; false ; } ; done /usr/src/release/boot_crunch.conf: ft: warning: could not find any .o files. /usr/src/release/boot_crunch.conf: ft: error: no objpaths specified or calculated. /usr/src/release/boot_crunch.conf: sysinstall: warning: could not find any .o files. /usr/src/release/boot_crunch.conf: sysinstall: error: no objpaths specified or calculated. /usr/src/release/boot_crunch.conf: ft: ignoring program because of errors. /usr/src/release/boot_crunch.conf: sysinstall: ignoring program because of errors. Run "make -f boot_crunch.mk objs exe" to build crunched binary. *** Error code 1 Stop. *** Error code 1 Stop. what have I not done to make a snap of my current running system that can be installed?