Module Name: src
Committed By: tsutsui
Date: Sun Jan 17 04:47:59 UTC 2016
Modified Files:
src/sys/arch/x68k/stand/boot: version
src/sys/arch/x68k/stand/libsa: Makefile
src/sys/arch/x68k/stand/netboot: version
Log Message:
Enable LIBSA_CREAD_NOCRC. PR/50638
Bump version to denote user visible change.
XXX: recent visible changes (memsize probe, SRAM switch command)
were not denoted in versions
Tested on (real) X68030.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/x68k/stand/boot/version
cvs rdiff -u -r1.30 -r1.31 src/sys/arch/x68k/stand/libsa/Makefile
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/x68k/stand/netboot/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/x68k/stand/boot/version
diff -u src/sys/arch/x68k/stand/boot/version:1.6 src/sys/arch/x68k/stand/boot/version:1.7
--- src/sys/arch/x68k/stand/boot/version:1.6 Fri Oct 12 18:06:27 2012
+++ src/sys/arch/x68k/stand/boot/version Sun Jan 17 04:47:59 2016
@@ -1,4 +1,4 @@
-$NetBSD: version,v 1.6 2012/10/12 18:06:27 tsutsui Exp $
+$NetBSD: version,v 1.7 2016/01/17 04:47:59 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
@@ -12,3 +12,4 @@ is taken as the current.
1.4: ffsv2 support.
1.5: Make key interrupt to get boot menu works properly even after
non ASCII keys (CTRL, OPT.1 etc.) are pressed during boot.
+1.6: Disable slow gunzip CRC32 calculation.
Index: src/sys/arch/x68k/stand/libsa/Makefile
diff -u src/sys/arch/x68k/stand/libsa/Makefile:1.30 src/sys/arch/x68k/stand/libsa/Makefile:1.31
--- src/sys/arch/x68k/stand/libsa/Makefile:1.30 Sat Jul 25 06:58:37 2015
+++ src/sys/arch/x68k/stand/libsa/Makefile Sun Jan 17 04:47:59 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.30 2015/07/25 06:58:37 isaki Exp $
+# $NetBSD: Makefile,v 1.31 2016/01/17 04:47:59 tsutsui Exp $
S= ${.CURDIR}/../../../..
@@ -11,6 +11,7 @@ CPPFLAGS+= -DHEAP_VARIABLE
CPPFLAGS+= -DHAVE_CHANGEDISK_HOOK
CPPFLAGS+= -DUSTAR_SECT_PER_CYL=30
CPPFLAGS+= -DLIBSA_ENABLE_LS_OP
+CPPFLAGS+= -DLIBSA_CREAD_NOCRC
CPPFLAGS+= -DSUPPORT_BOOTP -DSUPPORT_DHCP
#CPPFLAGS+= -DDEBUG
Index: src/sys/arch/x68k/stand/netboot/version
diff -u src/sys/arch/x68k/stand/netboot/version:1.1 src/sys/arch/x68k/stand/netboot/version:1.2
--- src/sys/arch/x68k/stand/netboot/version:1.1 Fri Oct 12 20:15:53 2012
+++ src/sys/arch/x68k/stand/netboot/version Sun Jan 17 04:47:59 2016
@@ -1,7 +1,8 @@
-$NetBSD: version,v 1.1 2012/10/12 20:15:53 tsutsui Exp $
+$NetBSD: version,v 1.2 2016/01/17 04:47:59 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
is taken as the current.
0.1: Initial netboot
+0.2: Disable slow gunzip CRC32 calculation.