From 7c5af0e679ee02c6ef1f902879efb836b24658b1 Mon Sep 17 00:00:00 2001 From: Tomohiro Kusumi Date: Mon, 9 Sep 2019 03:36:43 +0900 Subject: [PATCH] sys/vfs/msdosfs: Bring back EXBOOTSIG2 (unbreak lib/libfsid build) Note that fatgen103 doesn't mention such thing. FreeBSD/NetBSD don't have it either. --- sys/vfs/msdosfs/bootsect.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/vfs/msdosfs/bootsect.h b/sys/vfs/msdosfs/bootsect.h index 5a3ff56b85..000a6c676b 100644 --- a/sys/vfs/msdosfs/bootsect.h +++ b/sys/vfs/msdosfs/bootsect.h @@ -41,6 +41,7 @@ struct extboot { int8_t exReserved1; /* reserved */ int8_t exBootSignature; /* ext. boot signature (0x29) */ #define EXBOOTSIG 0x29 +#define EXBOOTSIG2 0x28 int8_t exVolumeID[4]; /* volume ID number */ int8_t exVolumeLabel[11]; /* volume label */ int8_t exFileSysType[8]; /* fs type (FAT12 or FAT16) */ -- 2.41.0