]>
git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - block/partitions/cmdline.c
2 * Copyright (C) 2013 HUAWEI
3 * Author: Cai Zhiyong <caizhiyong@huawei.com>
5 * Read block device partition table from the command line.
6 * Typically used for fixed block (eMMC) embedded devices.
7 * It has no MBR, so saves storage space. Bootloader can be easily accessed
8 * by absolute address of data on the block device.
9 * Users can easily change the partition.
11 * The format for the command line is just like mtdparts.
13 * For further information, see "Documentation/block/cmdline-partition.txt"
17 #include <linux/cmdline-parser.h>
23 static struct cmdline_parts
*bdev_parts
;
25 static int add_part(int slot
, struct cmdline_subpart
*subpart
, void *param
)
28 struct partition_meta_info
*info
;
29 char tmp
[sizeof(info
->volname
) + 4];
30 struct parsed_partitions
*state
= (struct parsed_partitions
*)param
;
32 if (slot
>= state
->limit
)
35 put_partition(state
, slot
, subpart
->from
>> 9,
38 info
= &state
->parts
[slot
].info
;
40 label_min
= min_t(int, sizeof(info
->volname
) - 1,
41 sizeof(subpart
->name
));
42 strncpy(info
->volname
, subpart
->name
, label_min
);
43 info
->volname
[label_min
] = '\0';
45 snprintf(tmp
, sizeof(tmp
), "(%s)", info
->volname
);
46 strlcat(state
->pp_buf
, tmp
, PAGE_SIZE
);
48 state
->parts
[slot
].has_info
= true;
53 static int __init
cmdline_parts_setup(char *s
)
58 __setup("blkdevparts=", cmdline_parts_setup
);
61 * Purpose: allocate cmdline partitions.
63 * -1 if unable to read the partition table
64 * 0 if this isn't our partition table
67 int cmdline_partition(struct parsed_partitions
*state
)
70 char bdev
[BDEVNAME_SIZE
];
71 struct cmdline_parts
*parts
;
75 cmdline_parts_free(&bdev_parts
);
77 if (cmdline_parts_parse(&bdev_parts
, cmdline
)) {
87 bdevname(state
->bdev
, bdev
);
88 parts
= cmdline_parts_find(bdev_parts
, bdev
);
92 disk_size
= get_capacity(state
->bdev
->bd_disk
) << 9;
94 cmdline_parts_set(parts
, disk_size
, 1, add_part
, (void *)state
);
96 strlcat(state
->pp_buf
, "\n", PAGE_SIZE
);