Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/utils enable NO_IOBUF_ALIGNED for x_newfs and x_fsck...



details:   https://anonhg.NetBSD.org/src/rev/aa2afa5a847d
branches:  trunk
changeset: 930947:aa2afa5a847d
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Sat Apr 18 12:56:38 2020 +0000

description:
enable NO_IOBUF_ALIGNED for x_newfs and x_fsck_ffs

diffstat:

 distrib/utils/x_fsck_ffs/Makefile |  4 +++-
 distrib/utils/x_newfs/Makefile    |  5 ++++-
 2 files changed, 7 insertions(+), 2 deletions(-)

diffs (37 lines):

diff -r 84a75868f91f -r aa2afa5a847d distrib/utils/x_fsck_ffs/Makefile
--- a/distrib/utils/x_fsck_ffs/Makefile Sat Apr 18 12:54:38 2020 +0000
+++ b/distrib/utils/x_fsck_ffs/Makefile Sat Apr 18 12:56:38 2020 +0000
@@ -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 @@
 CPPFLAGS+=     -DNO_APPLE_UFS
 .endif
 
+CPPFLAGS+=     -DNO_IOBUF_ALIGNED
+
 .PATH:         ${SRCDIR}
 
 .include "${SRCDIR}/Makefile.common"
diff -r 84a75868f91f -r aa2afa5a847d distrib/utils/x_newfs/Makefile
--- a/distrib/utils/x_newfs/Makefile    Sat Apr 18 12:54:38 2020 +0000
+++ b/distrib/utils/x_newfs/Makefile    Sat Apr 18 12:56:38 2020 +0000
@@ -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 @@
 CPPFLAGS+=     -DNO_APPLE_UFS
 .endif
 
+CPPFLAGS+=     -DSMALL
+CPPFLAGS+=     -DNO_IOBUF_ALIGNED
+
 .PATH:         ${SRCDIR}
 
 .include "${SRCDIR}/Makefile.common"



Home | Main Index | Thread Index | Old Index