Module Name: src
Committed By: jdolecek
Date: Sat Apr 18 12:56:38 UTC 2020
Modified Files:
src/distrib/utils/x_fsck_ffs: Makefile
src/distrib/utils/x_newfs: Makefile
Log Message:
enable NO_IOBUF_ALIGNED for x_newfs and x_fsck_ffs
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/distrib/utils/x_fsck_ffs/Makefile
cvs rdiff -u -r1.1 -r1.2 src/distrib/utils/x_newfs/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/utils/x_fsck_ffs/Makefile
diff -u src/distrib/utils/x_fsck_ffs/Makefile:1.1 src/distrib/utils/x_fsck_ffs/Makefile:1.2
--- src/distrib/utils/x_fsck_ffs/Makefile:1.1 Wed Feb 8 16:11:39 2017
+++ src/distrib/utils/x_fsck_ffs/Makefile Sat Apr 18 12:56:38 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2017/02/08 16:11:39 rin Exp $
+# $NetBSD: Makefile,v 1.2 2020/04/18 12:56:38 jdolecek Exp $
# Build a smaller fsck_ffs (i.e. for boot media).
# Support for Endian-Independent FFS and Apple UFS is dropped unless FFS_EI=1
# and APPLE_UFS=1 are added to CRUNCHENV, respectively.
@@ -21,6 +21,8 @@ SRCS+= ffs_appleufs.c
CPPFLAGS+= -DNO_APPLE_UFS
.endif
+CPPFLAGS+= -DNO_IOBUF_ALIGNED
+
.PATH: ${SRCDIR}
.include "${SRCDIR}/Makefile.common"
Index: src/distrib/utils/x_newfs/Makefile
diff -u src/distrib/utils/x_newfs/Makefile:1.1 src/distrib/utils/x_newfs/Makefile:1.2
--- src/distrib/utils/x_newfs/Makefile:1.1 Wed Feb 8 16:11:40 2017
+++ src/distrib/utils/x_newfs/Makefile Sat Apr 18 12:56:38 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2017/02/08 16:11:40 rin Exp $
+# $NetBSD: Makefile,v 1.2 2020/04/18 12:56:38 jdolecek Exp $
# Build a smaller newfs (i.e. for boot media).
# Support for Endian-Independent FFS and Apple UFS is dropped unless FFS_EI=1
# and APPLE_UFS=1 are added to CRUNCHENV, respectively.
@@ -21,6 +21,9 @@ SRCS+= ffs_appleufs.c
CPPFLAGS+= -DNO_APPLE_UFS
.endif
+CPPFLAGS+= -DSMALL
+CPPFLAGS+= -DNO_IOBUF_ALIGNED
+
.PATH: ${SRCDIR}
.include "${SRCDIR}/Makefile.common"