Lines Matching full:partition
118 static int a_flag = 0; /* set active partition */
120 static int i_flag = 0; /* replace partition data */
122 static int u_flag = 0; /* update partition data */
130 * A list of partition types, probably outdated.
142 [0x09] = "AIX boot partition or Coherent",
155 [0x1b] = "ASUS Recovery partition (NTFS)",
185 [0x81] = "Minix since 1.4b, early Linux partition or Mitac disk manager",
212 [0xE1] = "DOS access or SpeedStor with 12-bit FAT extended partition",
214 [0xE4] = "SpeedStor with 16-bit FAT extended partition < 1024 cyl.",
217 [0xEF] = "EFI System Partition",
220 [0xF4] = "SpeedStor large partition",
265 int partition = -1; in main() local
314 partition = c - '0'; in main()
360 /* Fill flags for the partition. */ in main()
426 if (partition == -1) in main()
430 change_part(partition); in main()
433 change_active(partition); in main()
440 printf("\nWe haven't changed the partition table yet. "); in main()
445 if (ok("Should we write new partition table?")) in main()
448 printf("\n-t flag specified -- partition table not written.\n"); in main()
563 printf("The data for partition %d is:\n", i); in change_part()
640 printf("Partition %d is marked active\n", i + 1); in change_active()
649 if (!ok("Do you want to change the active partition?")) in change_active()
654 Decimal("active partition", new, tmp, 0); in change_active()
656 printf("Active partition number must be in range 1-4." in change_active()
862 "partition table"); in read_s0()
866 warnx("can't read fdisk partition table"); in read_s0()
870 warnx("invalid fdisk partition table found"); in read_s0()
897 warn("can't write fdisk partition table"); in write_s0()
1022 all partition specifications", in process_geometry()
1133 int status = 0, partition; in process_partition() local
1141 warnx("ERROR line %d: incorrect number of partition args", in process_partition()
1145 partition = command->args[0].arg_val; in process_partition()
1146 if (partition < 1 || partition > 4) { in process_partition()
1147 warnx("ERROR line %d: invalid partition number %d", in process_partition()
1148 current_line_number, partition); in process_partition()
1151 partp = &mboot.parts[partition - 1]; in process_partition()
1158 for (i = 1; i < partition; i++) { in process_partition()
1200 * Get out, the partition is marked as unused. in process_partition()
1218 * Can't go past end of partition in process_partition()
1221 "ERROR line %d: unable to adjust start of partition %d to fall on\n\ in process_partition()
1223 current_line_number, partition); in process_partition()
1227 "WARNING: adjusting start offset of partition %d\n\ in process_partition()
1229 partition, (u_int)partp->dp_start, in process_partition()
1244 "ERROR: could not adjust partition to start on a head boundary\n\ in process_partition()
1250 "WARNING: adjusting size of partition %d from %u to %u\n\ in process_partition()
1252 partition, (u_int)partp->dp_size, (u_int)adj_size); in process_partition()
1256 warnx("ERROR line %d: size of partition %d is zero", in process_partition()
1257 current_line_number, partition); in process_partition()
1272 int status = 0, partition, i; in process_active() local
1283 partition = command->args[0].arg_val; in process_active()
1284 if (partition < 1 || partition > 4) { in process_active()
1285 warnx("ERROR line %d: invalid partition number %d", in process_active()
1286 current_line_number, partition); in process_active()
1290 * Reset active partition in process_active()
1295 partp[partition-1].dp_flag = ACTIVE; in process_active()
1402 /* Only allow a zero size if the partition is being marked unused. */ in sanitize_partition()
1406 warnx("ERROR: size of partition is zero"); in sanitize_partition()
1414 warnx("WARNING: partition overlaps with partition table"); in sanitize_partition()
1419 warnx("WARNING: partition does not start on a head boundary"); in sanitize_partition()
1421 warnx("WARNING: partition does not end on a cylinder boundary"); in sanitize_partition()
1434 * Can't go past end of partition in sanitize_partition()
1437 "ERROR: unable to adjust start of partition to fall on a head boundary"); in sanitize_partition()
1451 warnx("ERROR: could not adjust partition to start on a head boundary\n\ in sanitize_partition()
1458 warnx("WARNING: adjusting start offset of partition to %u", in sanitize_partition()
1463 warnx("WARNING: adjusting size of partition to %u", (u_int)size); in sanitize_partition()