Module Name: src
Committed By: tsutsui
Date: Sun Jan 17 04:40:10 UTC 2016
Modified Files:
src/sys/arch/luna68k/stand/boot: Makefile version
Log Message:
Enable LIBSA_CREAD_NOCRC. PR/50638
Also bump version to denote user visible change.
Tested on LUNA-II.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/luna68k/stand/boot/Makefile \
src/sys/arch/luna68k/stand/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/luna68k/stand/boot/Makefile
diff -u src/sys/arch/luna68k/stand/boot/Makefile:1.11 src/sys/arch/luna68k/stand/boot/Makefile:1.12
--- src/sys/arch/luna68k/stand/boot/Makefile:1.11 Thu Jan 16 01:15:34 2014
+++ src/sys/arch/luna68k/stand/boot/Makefile Sun Jan 17 04:40:10 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2014/01/16 01:15:34 christos Exp $
+# $NetBSD: Makefile,v 1.12 2016/01/17 04:40:10 tsutsui Exp $
# @(#)Makefile 8.2 (Berkeley) 8/15/93
NOMAN= # defined
@@ -19,6 +19,7 @@ CPPFLAGS+= -DSUPPORT_DHCP -DSUPPORT_BOOT
#CPPFLAGS+= -DRPC_DEBUG -DRARP_DEBUG -DNET_DEBUG -DDEBUG -DPARANOID
CPPFLAGS+= -DLIBSA_ENABLE_LS_OP
CPPFLAGS+= -DLIBSA_PRINTF_WIDTH_SUPPORT
+CPPFLAGS+= -DLIBSA_CREAD_NOCRC
CFLAGS= -Os -msoft-float
CFLAGS+= -ffreestanding
Index: src/sys/arch/luna68k/stand/boot/version
diff -u src/sys/arch/luna68k/stand/boot/version:1.11 src/sys/arch/luna68k/stand/boot/version:1.12
--- src/sys/arch/luna68k/stand/boot/version:1.11 Wed Apr 16 13:43:02 2014
+++ src/sys/arch/luna68k/stand/boot/version Sun Jan 17 04:40:10 2016
@@ -1,4 +1,4 @@
-$NetBSD: version,v 1.11 2014/04/16 13:43:02 tsutsui Exp $
+$NetBSD: version,v 1.12 2016/01/17 04:40:10 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
@@ -16,3 +16,4 @@ is taken as the current.
controller number and target ID to specify the boot disk.
1.9: Parse boot flags and pass boothowto and bootdev info to kernel.
1.10: Use booted device unit by default if no unit number is specified.
+1.11: Disable slow gunzip CRC32 calculation.