Module Name: src
Committed By: martin
Date: Wed Jan 22 06:13:18 UTC 2020
Modified Files:
src/sys/arch/i386/stand/bootxx/bootxx_msdos: Makefile
Log Message:
Clamp FAT partition size to 32 bit byte offsets to make the code small
enough to fit.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/i386/stand/bootxx/bootxx_msdos/Makefile
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/i386/stand/bootxx/bootxx_msdos/Makefile
diff -u src/sys/arch/i386/stand/bootxx/bootxx_msdos/Makefile:1.3 src/sys/arch/i386/stand/bootxx/bootxx_msdos/Makefile:1.4
--- src/sys/arch/i386/stand/bootxx/bootxx_msdos/Makefile:1.3 Sun Dec 11 12:17:48 2005
+++ src/sys/arch/i386/stand/bootxx/bootxx_msdos/Makefile Wed Jan 22 06:13:18 2020
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.3 2005/12/11 12:17:48 christos Exp $
+# $NetBSD: Makefile,v 1.4 2020/01/22 06:13:18 martin Exp $
PROG= bootxx_msdos
FS= dosfs
-CPPFLAGS=-DBOOT_FROM_FAT -DTERSE_ERROR
+CPPFLAGS=-DBOOT_FROM_FAT -DTERSE_ERROR -DSA_DOSFS_NO_BIG_PART_SUPPORT
.include <../Makefile.bootxx>