Lines Matching +full:partition +full:-
16 * Partition definition structure:
18 * An array of struct partition is passed along with a MTD object to
21 * For each partition, these fields are available:
22 * name: string that will be used to label the partition's MTD device.
25 * partition that contains at least kernel and rootfs. In such case an
29 * size: the partition size; if defined as MTDPART_SIZ_FULL, the partition
32 * defined as MTDPART_OFS_APPEND, the partition will start where the
35 * after the end of partition.
37 * master MTD flag set for the corresponding MTD partition.
38 * For example, to force a read-only partition, simply adding
49 uint64_t size; /* partition size */
51 uint32_t mask_flags; /* master MTD flags to mask out for this partition */
52 uint32_t add_flags; /* flags to add to the partition */
56 #define MTDPART_OFS_RETAIN (-3)
57 #define MTDPART_OFS_NXTBLK (-2)
58 #define MTDPART_OFS_APPEND (-1)
66 * struct mtd_part_parser_data - used to pass data to MTD partition parsers.
102 * module_mtd_part_parser() - Helper macro for MTD partition parsers that don't