~ubuntu-branches/ubuntu/trusty/util-linux/trusty-proposed

« back to all changes in this revision

Viewing changes to libblkid/src/superblocks/bfs.c

  • Committer: Package Import Robot
  • Author(s): LaMont Jones
  • Date: 2011-11-03 15:38:23 UTC
  • mto: (4.5.5 sid) (1.6.4)
  • mto: This revision was merged to the branch mainline in revision 85.
  • Revision ID: package-import@ubuntu.com-20111103153823-10sx16jprzxlhkqf
ImportĀ upstreamĀ versionĀ 2.20.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2009 Red Hat, Inc.
 
3
 *
 
4
 * This file may be redistributed under the terms of the
 
5
 * GNU Lesser General Public License.
 
6
 */
 
7
 
 
8
#include "superblocks.h"
 
9
 
 
10
/*
 
11
 * BFS actually has two different labels in the superblock, each
 
12
 * of them only 6 bytes long.  Until we find out what their use
 
13
 * we just ignore them.
 
14
 */
 
15
const struct blkid_idinfo bfs_idinfo =
 
16
{
 
17
        .name           = "bfs",
 
18
        .usage          = BLKID_USAGE_FILESYSTEM,
 
19
        .magics         = {
 
20
                { .magic = "\xce\xfa\xad\x1b", .len = 4 },
 
21
                { NULL }
 
22
        }
 
23
};