summaryrefslogtreecommitdiffstats
path: root/image-hd.c
Commit message (Expand)AuthorAgeFilesLines
* image-hd: gpt: add type GUID shortcut for barebox-envAhmad Fatoum2024-04-041-0/+1
* image-hd: gpt: drop "B" Type GUID shorthand for barebox-stateAhmad Fatoum2024-04-041-1/+0
* image-hd: add GUIDs for big-endian MIPS architectureRoland Hieber2023-10-101-0/+12
* image-hd: add shortcuts from the Discoverable Partitions SpecificationRoland Hieber2023-03-281-0/+125
* image-hd: support long GPT partition type shortcutsRoland Hieber2023-03-281-14/+39
* image-hd: add GUID shortcut 'B' for Barebox State partitionsRoland Hieber2023-03-271-0/+1
* image-hd: implement "fill" option for partitionsRasmus Villemoes2023-02-241-2/+2
* image-hd: improve offset handling for images without partition tableMichael Olbrich2022-06-171-4/+7
* make rootpath optionalMichael Olbrich2022-03-251-0/+1
* image-hd: use new helper to initialize the imageMichael Olbrich2022-03-251-23/+3
* image-hd.c: disable output file size check for block devicesRasmus Villemoes2022-01-071-11/+13
* image-hd.c: use size of destination block device as image sizeRasmus Villemoes2022-01-071-0/+14
* image-hd.c: repeat child size check during generate phaseRasmus Villemoes2021-11-291-0/+6
* image-hd: more error output when bootloaders overlap with the partition tableMichael Olbrich2021-10-221-0/+5
* allow specifying 'holes' in the partition sectionMichael Olbrich2021-10-221-1/+1
* Merge pull request #156 from michaelolbrich/writingMichael Olbrich2021-06-041-1/+1
|\
| * util: insert_image: allow specifying the fill valueMichael Olbrich2021-06-041-1/+1
* | image-hd: resize the image to the final size at the beginingMichael Olbrich2021-05-071-7/+52
|/
* image-hd: stricter option handlingMichael Olbrich2021-04-251-42/+95
* image-hd.c: make GPT backup handling a little less specialRasmus Villemoes2021-04-211-16/+18
* image-hd.c: correct computation of first_usable_lbaRasmus Villemoes2021-04-211-3/+9
* image-hd.c: switch to insert_image() instead of pad_file()Rasmus Villemoes2021-04-211-16/+1
* image-hd.c: truncate output file before looping over partitionsRasmus Villemoes2021-04-211-0/+10
* image-hd.c: replace use of pad_file() with extend_file()Rasmus Villemoes2021-04-211-1/+1
* image-hd.c: take image holes into consideration when checking for overlapRasmus Villemoes2021-04-211-0/+41
* image-hd.c: fix missing check for overlap with GPT tableRasmus Villemoes2021-04-211-8/+44
* image-hd.c: check all partitions for overlapRasmus Villemoes2021-04-211-10/+8
* image-hd.c: allow partitions to appear out-of-orderRasmus Villemoes2021-04-211-2/+34
* image-hd.c: ensure an autoresize partition has a size consistent with its ali...Rasmus Villemoes2021-04-211-1/+7
* image-hd.c: fix extended partition with offsetMichael Olbrich2021-04-091-11/+5
* image-hd.c: prepare for fake partitionsRasmus Villemoes2021-04-091-1/+3
* image-hd.c: don't sanity check partition_type_uuid for !part->in_partition_tableRasmus Villemoes2021-04-091-1/+1
* image-hd.c: move overlap check below partition size determinationRasmus Villemoes2021-04-091-7/+7
* image-hd.c: allow specifying minimum size for auto-resize partitionsRasmus Villemoes2021-04-091-0/+5
* image-hd.c: do not require the autoresize partition to be specified lastRasmus Villemoes2021-04-091-12/+15
* image-hd.c: enforce proper alignment of all partitionsRasmus Villemoes2021-04-091-1/+1
* image-hd.c: ignore in-partition-table when the image has no partition tableRasmus Villemoes2021-04-091-0/+3
* image-hd.c: always sanity check child->size v part->sizeRasmus Villemoes2021-03-281-1/+2
* image-hd.c: separate computation of part->offset from the sanity checksRasmus Villemoes2021-03-281-2/+3
* allow each partition to have its own align valueRasmus Villemoes2021-03-281-5/+12
* image-hd.c: fix computation of autoresize sizeRasmus Villemoes2021-03-281-1/+1
* image-hd.c: don't lazily initialize nowRasmus Villemoes2021-03-281-5/+6
* image-hd.c: refactor updating chs valuesRasmus Villemoes2021-03-281-13/+12
* image-hd.c: add and use "struct mbr_tail"Rasmus Villemoes2021-03-281-12/+15
* add macro for compile-time assertionsRasmus Villemoes2021-03-281-0/+3
* change insert_data() to take const void* instead of const char*Rasmus Villemoes2021-03-261-4/+4
* image-hd.c: fix copy-pasto access of random memoryRasmus Villemoes2021-03-261-1/+1
* image-hd: align image size to 4k when using GPTMichael Olbrich2021-01-131-2/+6
* Merge pull request #130 from michaelolbrich/hdimage-updatesMichael Olbrich2020-12-041-32/+39
|\
| * image-hd: expand the image to the full size after writing the partition tableMichael Olbrich2020-12-041-9/+11