| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove all the pledge "disklabel" before ioctl DIOCGPDINFO is |  tb | 2016-05-28 | 1 | -11/+1 |
* | Tweak command line processing vs pledge logic to make things nicer. No |  krw | 2016-04-27 | 1 | -4/+6 |
* | Accept only character special devices rather than generating a core |  krw | 2016-03-09 | 1 | -4/+3 |
* | Pledge, based on what's done in fdisk. |  krw | 2016-02-02 | 1 | -2/+18 |
* | Nuke pointless map field 'physical_block' and just use 'sbBlkSize' which is |  krw | 2016-01-31 | 1 | -3/+3 |
* | Move last three lines (#define's) from dpme.h to partition_map.h and |  krw | 2016-01-30 | 1 | -3/+2 |
* | Fold struct dpme into struct entry. Same reasons as for folding |  krw | 2016-01-30 | 1 | -9/+9 |
* | Add do_dump_map() to make command processing more consistent. Pass |  krw | 2016-01-29 | 1 | -3/+12 |
* | Rename struct partition_map_header to struct partition_map. No change to |  krw | 2016-01-29 | 1 | -31/+31 |
* | Hand rolled lists suck. First, replace disk_order with an LIST. |  krw | 2016-01-28 | 1 | -1/+2 |
* | Tweak verbiage for 'r' (reorder) command. |  krw | 2016-01-28 | 1 | -2/+3 |
* | Tweak some verbiage. |  krw | 2016-01-27 | 1 | -5/+5 |
* | On-disk partition name/types/processorid may or may not be NUL |  krw | 2016-01-27 | 1 | -3/+3 |
* | We do not support logical_block != physical_block. Remove logical_block |  krw | 2016-01-27 | 1 | -2/+2 |
* | Check block 0 signature, physical block size and physical block count when |  krw | 2016-01-27 | 1 | -6/+1 |
* | Rework and simplify string argument parsing. All string arguments are at |  krw | 2016-01-26 | 1 | -48/+54 |
* | dpme_name and dpme_type are NUL-terminated in Apple code, so use |  krw | 2016-01-26 | 1 | -3/+13 |
* | Whitespace, line wrapping fixes. Nuke many superfluous '{}' around single |  krw | 2016-01-26 | 1 | -8/+6 |
* | Use new read/write_block0 and read/write_dpme which handle any |  krw | 2016-01-25 | 1 | -13/+4 |
* | remove some uneeded includes |  jsg | 2016-01-25 | 1 | -2/+1 |
* | Nuke more pointless checks for map NULLness. |  krw | 2016-01-24 | 1 | -25/+1 |
* | Whitespace fixes. |  krw | 2016-01-24 | 1 | -24/+24 |
* | Nuke unused kPatchType. Nuke kStringNot and use " not' where needed. |  krw | 2016-01-23 | 1 | -1/+2 |
* | No need for 'default_value' parameter for get_number_argument() since we |  krw | 2016-01-23 | 1 | -11/+10 |
* | No need for get_string_argument() parameter 'reprompt' since we |  krw | 2016-01-23 | 1 | -5/+5 |
* | Pass the disk sector size to open_partition_map(), eliminating it's |  krw | 2016-01-23 | 1 | -3/+4 |
* | Add comments to ensure future spelunkers realize that struct block0 |  krw | 2016-01-23 | 1 | -18/+13 |
* | Change partition map field 'data' to 'dmpe'. Change 'create_data' |  krw | 2016-01-22 | 1 | -7/+7 |
* | Repair creation of initial partition table on a blank disk, broken |  krw | 2016-01-22 | 1 | -12/+9 |
* | In the "why use two variables when one would do" category, eliminate |  krw | 2016-01-22 | 1 | -3/+2 |
* | Nuke 'expert' mode and the enabling, undocumented, '-d' flag by |  krw | 2016-01-22 | 1 | -139/+41 |
* | Hoist all file opening and ioctl calls into main(), passing a pointer to |  krw | 2016-01-21 | 1 | -41/+64 |
* | Nuke 'writable' field now that it is always in sync with 'rflag'. Since |  krw | 2016-01-21 | 1 | -28/+4 |
* | Simplify the main command switch, eliminating a couple of /* fall |  krw | 2016-01-19 | 1 | -10/+8 |
* | It's pointless to check for 'dflag' inside do_expert(), since you can't |  krw | 2016-01-19 | 1 | -10/+4 |
* | Remove forward declarations for functions that do not exist. |  krw | 2016-01-19 | 1 | -2/+1 |
* | Bring code into line with man page and usage() by only allowing one |  krw | 2016-01-19 | 1 | -16/+15 |
* | No need for pdisk(8) to provide a version of hexdump. Remove |  krw | 2016-01-19 | 1 | -73/+1 |
* | The contents of the Apple_Patches partition is none of our business. |  krw | 2016-01-18 | 1 | -24/+1 |
* | struct file_media had 1 field left. And one place where struct |  krw | 2016-01-18 | 1 | -8/+7 |
* | Run indent(1) over it and tweak the results a bit manually to look more |  krw | 2016-01-18 | 1 | -581/+573 |
* | Fold get_options() into main() and eliminate unneeded nFLAG_DEFAULT |  krw | 2016-01-18 | 1 | -44/+23 |
* | Remove a grab bag of unused #define's, fields, enum's, variables, |  krw | 2016-01-18 | 1 | -11/+1 |
* | Change "//" comments to "/**/". Nuke really stupid ones. |  krw | 2016-01-17 | 1 | -23/+20 |
* | Reduce namespace pollution by eliminating parameter names from forward |  krw | 2016-01-17 | 1 | -17/+17 |
* | Kill leading, imbedded, trailing whitespace. |  krw | 2016-01-17 | 1 | -9/+9 |
* | Remove a bunch of ridiculous and uninformative comments like "// Defines". |  krw | 2016-01-17 | 1 | -31/+1 |
* | The great de-typedef'ification continues. |  krw | 2016-01-17 | 1 | -34/+34 |
* | The great de-typedef'ification continues. Block0 -> struct block0. |  krw | 2016-01-17 | 1 | -3/+3 |
* | The great de-typedef'ification continues. DPME -> struct dpme. |  krw | 2016-01-17 | 1 | -3/+3 |