minix/minix/usr.sbin/mkfs.mfs/v1l/const.h
Lionel Sambuc 433d6423c3 New sources layout
Change-Id: Ic716f336b7071063997cf5b4dae6d50e0b4631e9
2014-07-31 16:00:30 +02:00

14 lines
483 B
C

/* Extended V1 minixFS as defined by Linux
* The difference with the normal V1 file systems as used on MINIX are the
* size of the file names in the directoru entries, which are extended
* to 30 characters (instead of 14.)
*/
/* Constants; unchanged from regular V1... */
#include "../v1/const.h"
/* ... except for magic number contained in super-block: */
#define SUPER_V1L 0x138F /* magic # for "Linux" extended V1 minixFS */
#undef SUPER_MAGIC
#define SUPER_MAGIC SUPER_V1L