aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2021-02-25 17:10:19 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2021-03-02 13:02:51 +0000
commit6f6c6480047ba1ebbc398c1052446e35f8a4ecab (patch)
tree33aaf8ff9c0a62f8d2f37b50c8b25d6da7c493fc
parent9c5f4f8e4ee8261a669ab99257bffd439bad6635 (diff)
downloadsrc-6f6c6480047ba1ebbc398c1052446e35f8a4ecab.tar.gz
src-6f6c6480047ba1ebbc398c1052446e35f8a4ecab.zip
mkimg: Add support for offset if the source is an image
This allow us to create image with the following format: mkimg -v -o sdcard -s gpt -p efi:=esp_aarch64.img:1M -p freebsd-ufs::1G Which will add a efi partition at a 1M offset on the image with its content coming from the esp_aarch64.img file. MFC after: 3 days (cherry picked from commit 8f3c71c85e5f6a4d2bddbfead225d33b96dbd7d7)
-rw-r--r--usr.bin/mkimg/mkimg.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/usr.bin/mkimg/mkimg.c b/usr.bin/mkimg/mkimg.c
index c4f0acbe3927..e5e6c036575b 100644
--- a/usr.bin/mkimg/mkimg.c
+++ b/usr.bin/mkimg/mkimg.c
@@ -174,8 +174,10 @@ usage(const char *why)
fprintf(stderr, "\t<t>[/<l>]::<size>[:[+]<offset>]\t- "
"empty partition of given size and\n\t\t\t\t\t"
" optional relative or absolute offset\n");
- fprintf(stderr, "\t<t>[/<l>]:=<file>\t\t- partition content and size "
- "are\n\t\t\t\t\t determined by the named file\n");
+ fprintf(stderr, "\t<t>[/<l>]:=<file>[:[+]offset]\t- partition "
+ "content and size are\n\t\t\t\t\t"
+ " determined by the named file and\n"
+ "\t\t\t\t\t optional relative or absolute offset\n");
fprintf(stderr, "\t<t>[/<l>]:-<cmd>\t\t- partition content and size "
"are taken\n\t\t\t\t\t from the output of the command to run\n");
fprintf(stderr, "\t-\t\t\t\t- unused partition entry\n");
@@ -459,9 +461,11 @@ mkimg(void)
/* Look for an offset. Set size too if we can. */
switch (part->kind) {
case PART_KIND_SIZE:
+ case PART_KIND_FILE:
offset = part->contents;
size = strsep(&offset, ":");
- if (expand_number(size, &bytesize) == -1)
+ if (part->kind == PART_KIND_SIZE &&
+ expand_number(size, &bytesize) == -1)
error = errno;
if (offset != NULL) {
if (*offset != '+')
@@ -476,14 +480,13 @@ mkimg(void)
/* Work out exactly where the partition starts. */
blkoffset = (byteoffset + secsz - 1) / secsz;
- if (abs_offset) {
- part->block = scheme_metadata(SCHEME_META_PART_ABSOLUTE,
+ if (abs_offset)
+ block = scheme_metadata(SCHEME_META_PART_ABSOLUTE,
blkoffset);
- } else {
+ else
block = scheme_metadata(SCHEME_META_PART_BEFORE,
block + blkoffset);
- part->block = block;
- }
+ part->block = block;
if (verbose)
fprintf(stderr, "partition %d: starting block %llu "