]> Git Repo - J-u-boot.git/blob - include/cramfs/cramfs_fs_sb.h
sh: add support the CONFIG_SYS_LDSCRIPT
[J-u-boot.git] / include / cramfs / cramfs_fs_sb.h
1 #ifndef _CRAMFS_FS_SB
2 #define _CRAMFS_FS_SB
3
4 /*
5  * cramfs super-block data in memory
6  */
7 struct cramfs_sb_info {
8                         unsigned long magic;
9                         unsigned long size;
10                         unsigned long blocks;
11                         unsigned long files;
12                         unsigned long flags;
13 #ifdef CONFIG_CRAMFS_LINEAR
14                         unsigned long linear_phys_addr;
15                         char *        linear_virt_addr;
16 #endif
17 };
18
19 #endif
This page took 0.026077 seconds and 4 git commands to generate.