Module Name: src
Committed By: tsutsui
Date: Sun Jan 17 04:53:16 UTC 2016
Modified Files:
src/sys/arch/vax/boot/boot: Makefile version
Log Message:
Enable LIBSA_CREAD_NOCRC. PR/50638
Bump version to denote user visible change.
Tested on simh 4.0-Beta1 emulationg MicroVAX 3900.
To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/sys/arch/vax/boot/boot/Makefile
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/vax/boot/boot/version
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/vax/boot/boot/Makefile
diff -u src/sys/arch/vax/boot/boot/Makefile:1.43 src/sys/arch/vax/boot/boot/Makefile:1.44
--- src/sys/arch/vax/boot/boot/Makefile:1.43 Sun Jan 17 03:08:39 2016
+++ src/sys/arch/vax/boot/boot/Makefile Sun Jan 17 04:53:16 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.43 2016/01/17 03:08:39 tsutsui Exp $
+# $NetBSD: Makefile,v 1.44 2016/01/17 04:53:16 tsutsui Exp $
S= ${.CURDIR}/../../../..
@@ -21,6 +21,7 @@ CLEANFILES+=${PROG} ${PROG}.sym vers.c
CFLAGS+=-O1
CPPFLAGS+=-DSUPPORT_BOOTPARAMS -DSUPPORT_BOOTP -DSUPPORT_DHCP -D_STANDALONE \
-DNO_MID_CHECK
+CPPFLAGS+=-DLIBSA_CREAD_NOCRC
#CPPFLAGS+=-DBOOTP_DEBUG -DNETIF_DEBUG -DETHER_DEBUG -DNFS_DEBUG -DDEV_DEBUG \
# -DRPC_DEBUG -DRARP_DEBUG -DPARANOID
BINDIR=
Index: src/sys/arch/vax/boot/boot/version
diff -u src/sys/arch/vax/boot/boot/version:1.7 src/sys/arch/vax/boot/boot/version:1.8
--- src/sys/arch/vax/boot/boot/version:1.7 Sat Oct 18 08:33:27 2014
+++ src/sys/arch/vax/boot/boot/version Sun Jan 17 04:53:16 2016
@@ -1,4 +1,4 @@
-$NetBSD: version,v 1.7 2014/10/18 08:33:27 snj Exp $
+$NetBSD: version,v 1.8 2016/01/17 04:53:16 tsutsui Exp $
NOTE ANY CHANGES YOU MAKE TO THE BOOTBLOCKS HERE. The format of this
file is important - make sure the entries are appended on end, last item
@@ -28,3 +28,4 @@ is taken as the current.
1.9: Support verbose/quiet boot.
1.10: loadfile() update: ELF symbols no longer need backward seeks.
1.11: loadfile() update to avoid backwards seeks for ELF Program Headers.
+1.12: Disable slow gunzip CRC32 calculation.