Age | Commit message (Expand) | Author |
2024-03-01 | Allow fdisk(8) to add GPT partitions of protected types. | Kenneth R Westerback |
2023-11-18 | Scan past whitespace before checking if flag string starts | Kenneth R Westerback |
2023-11-10 | GPT partitions have many attributes. Don't stomp on them all when | Kenneth R Westerback |
2023-11-10 | Enhance 'flag' to accept hex values in addition to the current 0 | Kenneth R Westerback |
2023-04-10 | Make GPT display of menu hex octet the same as the MBR display. | Kenneth R Westerback |
2023-04-09 | Refactor and simplify GPT menu selection logic. | Kenneth R Westerback |
2023-04-07 | Oops. Missed files in last commit. | Kenneth R Westerback |
2023-03-31 | Be more consistent in function naming. Functions taking or | Kenneth R Westerback |
2023-03-29 | Change 'type' to 'menuid' in various struct's, functions and | Kenneth R Westerback |
2023-03-29 | Simplify code by having PRT_uuid_to_type() return -1 when | Kenneth R Westerback |
2023-03-26 | Pass lbuf/lbuflen to PRT_print_[mbr|gpt]_menu() to allow changes | Kenneth R Westerback |
2023-03-25 | Make *_name fields char * instead of char[]. Specify desired | Kenneth R Westerback |
2023-03-25 | Rename *_sname fields/functions to *_name to remove implied | Kenneth R Westerback |
2023-03-04 | Use nitems() in the simple iterations over mbr->mbr_prt[]. | Kenneth R Westerback |
2023-03-04 | Toss in some const's to ensure that static data pointed to | Kenneth R Westerback |
2022-09-11 | Add #define's for GPT partition attribute bits REQUIRED, IGNORE | Kenneth R Westerback |
2022-07-25 | Only MBR and GPT structures can be edited by fdisk. | Kenneth R Westerback |
2022-07-10 | Add some anti-feline input protection by refusing to process | Kenneth R Westerback |
2022-07-10 | Use nice #define's for input buf size and output help buf size. | Kenneth R Westerback |
2022-05-09 | Replace a stray 0xA6 with DOSPTYP_OPENBSD. Tweak a ">= 2" to more | Kenneth R Westerback |
2022-05-06 | Rename PRT_uuid_to_[protection|typename] to PRT_uuid_to_[protected|sname], | Kenneth R Westerback |
2022-04-28 | Convert the internal GPT partition entries into host-endian form | Kenneth R Westerback |
2022-04-24 | Use warnx() if errno is not relevant. close() after errno of | Kenneth R Westerback |
2022-04-20 | Simpify code manipulating GPT partition names by coalescing | Kenneth R Westerback |
2022-04-20 | Eliminate some local pointers to gp[pn] and just use gp[pn]. | Kenneth R Westerback |
2022-04-18 | Convert the GPT header read from disk into a host-endian version, | Kenneth R Westerback |
2022-03-16 | The 'status' parameter to uuid_* functions is uint32_t, not int. | Kenneth R Westerback |
2022-03-15 | Always use letoh32(gh.gh_part_num) instead of NGPTPARTITIONS when | Kenneth R Westerback |
2022-02-04 | %llu should be enough for anybody, no need to use %lld/(long long) for | Kenneth R Westerback |
2022-02-04 | Remove CHS information from internal representation of MBR partitions. Generate | Kenneth R Westerback |
2022-01-27 | Nuke single use function PRT_fix_BN() and just use the ATA/ATAPI LBA -> CHS | Kenneth R Westerback |
2022-01-22 | Wrap some long lines. | Kenneth R Westerback |
2022-01-21 | Split PRT_print() into PRT_print_parthdr() and PRT_print_part() | Kenneth R Westerback |
2021-10-21 | Remove 'disk' editing command. Determining the disk geometry on startup (from | 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-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-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 | Further reduce cross-file confusion by adding USER_help() and | Kenneth R Westerback |
2021-08-07 | Nuke a few Capt. Obvious comments. | Kenneth R Westerback |
2021-08-06 | Cleanup, clarify and generally polish the MBR/GPT initialization | 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 | An MBR knows (mbr_lba_self) where it is supposed to go, no | 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 |