linux/magic.h: move cramfs magic out of cramfs_fs.h
Signed-off-by: Mike Frysinger <vapier@gentoo.org> CC: Alexander Viro <viro@zeniv.linux.org.uk> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
f95022161d
commit
8688b86352
|
@ -2,9 +2,8 @@
|
||||||
#define __CRAMFS_H
|
#define __CRAMFS_H
|
||||||
|
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
#include <linux/magic.h>
|
||||||
|
|
||||||
#define CRAMFS_MAGIC 0x28cd3d45 /* some random number */
|
|
||||||
#define CRAMFS_MAGIC_WEND 0x453dcd28 /* magic number with the wrong endianess */
|
|
||||||
#define CRAMFS_SIGNATURE "Compressed ROMFS"
|
#define CRAMFS_SIGNATURE "Compressed ROMFS"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
#define AFS_SUPER_MAGIC 0x5346414F
|
#define AFS_SUPER_MAGIC 0x5346414F
|
||||||
#define AUTOFS_SUPER_MAGIC 0x0187
|
#define AUTOFS_SUPER_MAGIC 0x0187
|
||||||
#define CODA_SUPER_MAGIC 0x73757245
|
#define CODA_SUPER_MAGIC 0x73757245
|
||||||
|
#define CRAMFS_MAGIC 0x28cd3d45 /* some random number */
|
||||||
|
#define CRAMFS_MAGIC_WEND 0x453dcd28 /* magic number with the wrong endianess */
|
||||||
#define DEBUGFS_MAGIC 0x64626720
|
#define DEBUGFS_MAGIC 0x64626720
|
||||||
#define SYSFS_MAGIC 0x62656572
|
#define SYSFS_MAGIC 0x62656572
|
||||||
#define SECURITYFS_MAGIC 0x73636673
|
#define SECURITYFS_MAGIC 0x73636673
|
||||||
|
|
Loading…
Reference in New Issue