View | Details | Raw Unified | Return to bug 17737 | Differences between
and this patch

Collapse All | Expand All

(-)/usr/src/release/picobsd/build/Makefile.crunch (-7 / +7 lines)
Lines 4-6 Link Here
4
SRC?=/usr/src
4
SRC?=/usr/src
5
CRUNCHFLAGS+= -DNOPAM -DRELEASE_CRUNCH -DNOSECURE -DNOCRYPT
5
CRUNCHFLAGS+= -DNOPAM -DRELEASE_CRUNCH -DNOSECURE -DNOCRYPT -DNONETGRAPH -DNOIPSEC
6
6
Lines 31-42 Link Here
31
install: 
31
install: 
32
	cp crunch1 /mnt/stand/crunch
32
	cp crunch1 ${MFS_MOUNTPOINT}/stand/crunch
33
	chmod 555 /mnt/stand/crunch
33
	chmod 555 ${MFS_MOUNTPOINT}/stand/crunch
34
	for i in `crunchgen -l crunch1.conf` ; \
34
	for i in `crunchgen -l crunch1.conf` ; \
35
	do \
35
	do \
36
		ln /mnt/stand/crunch /mnt/stand/$${i}; \
36
		ln ${MFS_MOUNTPOINT}/stand/crunch ${MFS_MOUNTPOINT}/stand/$${i}; \
37
	done
37
	done
38
	rm /mnt/stand/crunch
38
	rm ${MFS_MOUNTPOINT}/stand/crunch
39
	# Install the MIB files
39
	# Install the MIB files
40
	#mkdir -p /mnt/usr/local/share/snmp/mibs
40
	#mkdir -p ${MFS_MOUNTPOINT}/usr/local/share/snmp/mibs
41
	#cp ../../net/crunch1/mibs/*.txt /mnt/usr/local/share/snmp/mibs/
41
	#cp ../../net/crunch1/mibs/*.txt ${MFS_MOUNTPOINT}/usr/local/share/snmp/mibs/
42
42
(-)/usr/src/release/picobsd/build/build (-3 / +4 lines)
Lines 75-77 Link Here
75
75
76
# Main build procedure. It calls another scripts (stage1)
76
# Main build procedure. It calls another script (stage1)
77
main() {
77
main() {
Lines 103-106 Link Here
103
	echo -n "-> Cleaning temporary files... "
103
	echo -n "-> Cleaning temporary files... "
104
	umount -f /mnt
104
	umount -f ${MFS_MOUNTPOINT}
105
	vnconfig -u /dev/rvn0
105
	rm -rf ${MFS_MOUNTPOINT}
106
	vnconfig -u /dev/rvn${VNUM}
106
	./clean ${TYPE}
107
	./clean ${TYPE}

Return to bug 17737