Age | Commit message (Expand) | Author |
2021-09-13 | disk.dk_size can't be 0 as we errx() if that happens during | Kenneth R Westerback |
2021-09-13 | Document that the editing command 'disk' takes an optional units argument. | Kenneth R Westerback |
2021-09-12 | Stop taking detour through unit_types[SECTORS] to find | Kenneth R Westerback |
2021-09-10 | Stop using NULL as a synonym for "s" (SECTORS). Just use "s". | Kenneth R Westerback |
2021-09-09 | Simplify logic in USER_edit() loop to eliminate unnecessary | Kenneth R Westerback |
2021-09-09 | Scan unit_types[] array using nitems() and eliminate the NULL | Kenneth R Westerback |
2021-09-02 | Split part_type into separate types 'mbr_type' and 'gpt_type', | Kenneth R Westerback |
2021-09-01 | Improve editing GPT partition type GUID's by rejecting partition | Kenneth R Westerback |
2021-08-29 | Nuke unused variable and unnecessary initialization. | Kenneth R Westerback |
2021-08-28 | Add hex_octet() so the strtol(..,16) dance is done in just one | Kenneth R Westerback |
2021-08-27 | Replace stray hand-rolled nitems() with nitems(). | Kenneth R Westerback |
2021-08-25 | Two more Capt. Obvious comments go away. | Kenneth R Westerback |
2021-08-25 | Consolidate '-e' edit command parsing into ask_cmd(), simplifying | Kenneth R Westerback |
2021-08-24 | Add an #ifdef DEBUG/#endif chunk that dumps the entire GPT header when | Kenneth R Westerback |
2021-08-24 | A couple more Capt. Obvious comments can go. | Kenneth R Westerback |
2021-08-24 | Trim leading/trailing whitespace from -e input to make command | Kenneth R Westerback |
2021-08-15 | Don't check & errx() after each and every invocation of | Kenneth R Westerback |
2021-08-12 | Oops. Lost a 'nitems()' chunk during last commit. Don't | Kenneth R Westerback |
2021-08-12 | Further reduce cross-file confusion by adding USER_help() and | Kenneth R Westerback |
2021-08-10 | Go back to using Xwrite() during initialization phase to make | Kenneth R Westerback |
2021-08-10 | Eliminate single use 'error' vars by directly | Kenneth R Westerback |
2021-08-07 | style(9) says sort getopt() options and the following switch {} | Kenneth R Westerback |
2021-08-07 | Nuke a few Capt. Obvious comments. | Kenneth R Westerback |
2021-08-07 | Nuke unneeded #include's, one param.h -> types.h. | Kenneth R Westerback |
2021-08-07 | Nuke 'p' that r1.97 snuck into getopt() invocation back in 2015. | Kenneth R Westerback |
2021-08-07 | Comment typo 'mmbr' -> 'mbr'. | Kenneth R Westerback |
2021-08-06 | Cleanup, clarify and generally polish the MBR/GPT initialization | Kenneth R Westerback |
2021-07-26 | Report write() and ioctl() errors encountered when writing GPT or MBR to disk. | Kenneth R Westerback |
2021-07-22 | mbrfile can be const. | Kenneth R Westerback |
2021-07-22 | Have PRT_protected_guid() return 0/-1 like everything else | Kenneth R Westerback |
2021-07-22 | Tweak some err() verbiage. | Kenneth R Westerback |
2021-07-21 | A couple of missed 'const'. | Kenneth R Westerback |
2021-07-21 | Use a dedicated struct mbr to hold the GPT protective MBR, | Kenneth R Westerback |
2021-07-19 | Tweak one comment and nuke a bunch of pointless ones. | Kenneth R Westerback |
2021-07-19 | Abstract reading the built-in MBR or MBR file into | Kenneth R Westerback |
2021-07-19 | MBR_protective_mbr() can take a const struct mbr *. | Kenneth R Westerback |
2021-07-19 | An MBR knows (mbr_lba_self) where it is supposed to go, no | Kenneth R Westerback |
2021-07-19 | Revert incorrect tweaks to disk geometry calculations and | Kenneth R Westerback |
2021-07-18 | Don't save the prt_scyl/prt_ecyl values, change them, use them | Kenneth R Westerback |
2021-07-18 | Make GPT_read() obtain and validate the on-disk MBR itself, via | Kenneth R Westerback |
2021-07-18 | Put MBR_parse() invocation inside MBR_read() instead of always | Kenneth R Westerback |
2021-07-17 | The first think MBR_init() does is memset(0) the gpt header and gpt | Kenneth R Westerback |
2021-07-17 | Nuke a bunch of Capt. Obvious or misleading comments. | Kenneth R Westerback |
2021-07-17 | Change edit/gedit/setpid/gsetpid to return 0/-1 to indicate success or failure | Kenneth R Westerback |
2021-07-16 | Change PRT_protected_guid() to take native order uuid's instead of little endian | Kenneth R Westerback |
2021-07-16 | Compare pointer to NULL, not 0. | Kenneth R Westerback |
2021-07-16 | Be consistent and always return -1 to indicate failure. | Kenneth R Westerback |
2021-07-15 | Nuke unused variable. | Kenneth R Westerback |
2021-07-15 | No need for separate b_sectors, b_offset and b_type variables. We have struct | Kenneth R Westerback |
2021-07-15 | Consolidate disk geometry fiddling, turning -l/-c/-h/-s values into MBR | Kenneth R Westerback |