]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/cramfs/cramfs_fs_sb.h
Setup POST word for generic mpc85xx
[people/ms/u-boot.git] / include / cramfs / cramfs_fs_sb.h
CommitLineData
dd875c76
WD
1#ifndef _CRAMFS_FS_SB
2#define _CRAMFS_FS_SB
3
4/*
5 * cramfs super-block data in memory
6 */
7struct 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