From: Peter Korsgaard <peter@korsgaard.com>
To: buildroot@buildroot.org
Cc: Sergey Matyukevich <geomatsi@gmail.com>,
Alistair Francis <alistair@alistair23.me>,
Suniel Mahesh <sunil@amarulasolutions.com>,
Gerome Burlats <gerome.burlats@smile.fr>,
Michael Walle <michael@walle.cc>,
Jagan Teki <jagan@amarulasolutions.com>,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
Romain Naour <romain.naour@gmail.com>
Subject: [Buildroot] [PATCH 2/2] board/*/genimage.cfg: use partition-table-type = "gpt" for genimage-15
Date: Sun, 19 Dec 2021 15:20:33 +0100 [thread overview]
Message-ID: <20211219142035.6220-2-peter@korsgaard.com> (raw)
In-Reply-To: <20211219142035.6220-1-peter@korsgaard.com>
Genimage 15 deprecated the gpt option and now prints a warning when it is
used:
INFO: hdimage(sdcard.img): The option 'gpt' is deprecated. Use 'partition-table-type' instead
So change the genimage configuration files to use that instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
board/aarch64-efi/genimage-efi.cfg | 2 +-
board/beaglev/genimage.cfg | 2 +-
board/friendlyarm/nanopc-t4/genimage.cfg | 2 +-
board/friendlyarm/nanopi-m4/genimage.cfg | 2 +-
board/kontron/smarc-sal28/genimage.cfg | 2 +-
board/minnowboard/genimage.cfg | 2 +-
board/orangepi/orangepi-pc-plus/genimage.cfg | 2 +-
board/orangepi/orangepi-r1/genimage.cfg | 2 +-
board/orangepi/orangepi-rk3399/genimage.cfg | 2 +-
board/orangepi/orangepi-zero-plus2/genimage.cfg | 2 +-
board/pc/genimage-efi.cfg | 2 +-
board/pine64/rockpro64/genimage.cfg | 2 +-
board/qemu/aarch64-sbsa/genimage.cfg | 2 +-
board/radxa/rockpi-4/genimage.cfg | 2 +-
board/radxa/rockpi-n10/genimage.cfg | 2 +-
board/radxa/rockpi-n8/genimage.cfg | 2 +-
board/sifive/hifive-unleashed/genimage_sdcard.cfg | 2 +-
board/sifive/hifive-unleashed/genimage_spi-nor.cfg | 2 +-
18 files changed, 18 insertions(+), 18 deletions(-)
diff --git a/board/aarch64-efi/genimage-efi.cfg b/board/aarch64-efi/genimage-efi.cfg
index 13d69e5e42..87e85816bc 100644
--- a/board/aarch64-efi/genimage-efi.cfg
+++ b/board/aarch64-efi/genimage-efi.cfg
@@ -13,7 +13,7 @@ image efi-part.vfat {
image disk.img {
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition boot {
diff --git a/board/beaglev/genimage.cfg b/board/beaglev/genimage.cfg
index 3b28e8dbb6..deefdbc110 100644
--- a/board/beaglev/genimage.cfg
+++ b/board/beaglev/genimage.cfg
@@ -1,6 +1,6 @@
image sdcard.img {
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition rootfs {
diff --git a/board/friendlyarm/nanopc-t4/genimage.cfg b/board/friendlyarm/nanopc-t4/genimage.cfg
index e616be6349..d63c293ab4 100644
--- a/board/friendlyarm/nanopc-t4/genimage.cfg
+++ b/board/friendlyarm/nanopc-t4/genimage.cfg
@@ -12,7 +12,7 @@ image boot.vfat {
image sdcard.img {
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition loader1 {
diff --git a/board/friendlyarm/nanopi-m4/genimage.cfg b/board/friendlyarm/nanopi-m4/genimage.cfg
index 03f39adfab..35d056ae6e 100644
--- a/board/friendlyarm/nanopi-m4/genimage.cfg
+++ b/board/friendlyarm/nanopi-m4/genimage.cfg
@@ -12,7 +12,7 @@ image boot.vfat {
image sdcard.img {
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition loader1 {
diff --git a/board/kontron/smarc-sal28/genimage.cfg b/board/kontron/smarc-sal28/genimage.cfg
index 8c8a7baaae..0ad020b347 100644
--- a/board/kontron/smarc-sal28/genimage.cfg
+++ b/board/kontron/smarc-sal28/genimage.cfg
@@ -1,6 +1,6 @@
image sdcard-emmc.img {
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition rcw {
diff --git a/board/minnowboard/genimage.cfg b/board/minnowboard/genimage.cfg
index 2eccce2de4..b169d1d067 100644
--- a/board/minnowboard/genimage.cfg
+++ b/board/minnowboard/genimage.cfg
@@ -17,7 +17,7 @@ image efi-part.vfat {
# * the efi-partition created above
image sdcard.img {
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition boot {
diff --git a/board/orangepi/orangepi-pc-plus/genimage.cfg b/board/orangepi/orangepi-pc-plus/genimage.cfg
index 7c3b4cd746..e730b38096 100644
--- a/board/orangepi/orangepi-pc-plus/genimage.cfg
+++ b/board/orangepi/orangepi-pc-plus/genimage.cfg
@@ -15,7 +15,7 @@ image boot.vfat {
image sdcard.img {
hdimage {
# for root=PARTLABEL support
- gpt = true
+ partition-table-type = "gpt"
# default GPT location conflicts with bootloaders, move it after
gpt-location = 1M
}
diff --git a/board/orangepi/orangepi-r1/genimage.cfg b/board/orangepi/orangepi-r1/genimage.cfg
index e42c37d5fd..e93e802bd9 100644
--- a/board/orangepi/orangepi-r1/genimage.cfg
+++ b/board/orangepi/orangepi-r1/genimage.cfg
@@ -15,7 +15,7 @@ image boot.vfat {
image sdcard.img {
hdimage {
# for root=PARTLABEL support
- gpt = true
+ partition-table-type = "gpt"
# default GPT location conflicts with spl, move it after
gpt-location = 1M
}
diff --git a/board/orangepi/orangepi-rk3399/genimage.cfg b/board/orangepi/orangepi-rk3399/genimage.cfg
index ceab37963d..c94e0bc7cc 100644
--- a/board/orangepi/orangepi-rk3399/genimage.cfg
+++ b/board/orangepi/orangepi-rk3399/genimage.cfg
@@ -12,7 +12,7 @@ image boot.vfat {
image sdcard.img {
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition loader1 {
diff --git a/board/orangepi/orangepi-zero-plus2/genimage.cfg b/board/orangepi/orangepi-zero-plus2/genimage.cfg
index f51ce3f854..aee9719ae4 100644
--- a/board/orangepi/orangepi-zero-plus2/genimage.cfg
+++ b/board/orangepi/orangepi-zero-plus2/genimage.cfg
@@ -13,7 +13,7 @@ image boot.vfat {
image sdcard.img {
hdimage {
# for root=PARTLABEL support
- gpt = true
+ partition-table-type = "gpt"
# default GPT location conflicts with bootloaders, move it after
gpt-location = 1M
}
diff --git a/board/pc/genimage-efi.cfg b/board/pc/genimage-efi.cfg
index 9cf701b798..035a077a78 100644
--- a/board/pc/genimage-efi.cfg
+++ b/board/pc/genimage-efi.cfg
@@ -14,7 +14,7 @@ image efi-part.vfat {
image disk.img {
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition boot {
diff --git a/board/pine64/rockpro64/genimage.cfg b/board/pine64/rockpro64/genimage.cfg
index aa2095b916..14dd0e1d18 100644
--- a/board/pine64/rockpro64/genimage.cfg
+++ b/board/pine64/rockpro64/genimage.cfg
@@ -12,7 +12,7 @@ image boot.vfat {
image sdcard.img {
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition loader1 {
diff --git a/board/qemu/aarch64-sbsa/genimage.cfg b/board/qemu/aarch64-sbsa/genimage.cfg
index 957f1a0530..121ae9f37b 100644
--- a/board/qemu/aarch64-sbsa/genimage.cfg
+++ b/board/qemu/aarch64-sbsa/genimage.cfg
@@ -14,7 +14,7 @@ image efi-part.vfat {
image disk.img {
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition boot {
diff --git a/board/radxa/rockpi-4/genimage.cfg b/board/radxa/rockpi-4/genimage.cfg
index 197968320e..a5100af420 100644
--- a/board/radxa/rockpi-4/genimage.cfg
+++ b/board/radxa/rockpi-4/genimage.cfg
@@ -12,7 +12,7 @@ image boot.vfat {
image sdcard.img {
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition loader1 {
diff --git a/board/radxa/rockpi-n10/genimage.cfg b/board/radxa/rockpi-n10/genimage.cfg
index b3ade327d6..652e75db11 100644
--- a/board/radxa/rockpi-n10/genimage.cfg
+++ b/board/radxa/rockpi-n10/genimage.cfg
@@ -12,7 +12,7 @@ image boot.vfat {
image sdcard.img {
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition loader1 {
diff --git a/board/radxa/rockpi-n8/genimage.cfg b/board/radxa/rockpi-n8/genimage.cfg
index 3329576b76..2e064d48c0 100644
--- a/board/radxa/rockpi-n8/genimage.cfg
+++ b/board/radxa/rockpi-n8/genimage.cfg
@@ -12,7 +12,7 @@ image boot.vfat {
image sdcard.img {
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition loader1 {
diff --git a/board/sifive/hifive-unleashed/genimage_sdcard.cfg b/board/sifive/hifive-unleashed/genimage_sdcard.cfg
index e7f98a47ce..e66f221d73 100644
--- a/board/sifive/hifive-unleashed/genimage_sdcard.cfg
+++ b/board/sifive/hifive-unleashed/genimage_sdcard.cfg
@@ -1,6 +1,6 @@
image sdcard.img {
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition u-boot-spl {
diff --git a/board/sifive/hifive-unleashed/genimage_spi-nor.cfg b/board/sifive/hifive-unleashed/genimage_spi-nor.cfg
index 2e5d89bfe8..903e675a90 100644
--- a/board/sifive/hifive-unleashed/genimage_spi-nor.cfg
+++ b/board/sifive/hifive-unleashed/genimage_spi-nor.cfg
@@ -2,7 +2,7 @@ image spi-nor.img {
size = 32M
hdimage {
- gpt = true
+ partition-table-type = "gpt"
}
partition u-boot-spl {
--
2.20.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next prev parent reply other threads:[~2021-12-19 14:21 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-19 14:20 [Buildroot] [PATCH 1/2] board/orangepi/orangepi-r1/genimage.cfg: fix build after move to genimage 15 Peter Korsgaard
2021-12-19 14:20 ` Peter Korsgaard [this message]
2021-12-25 13:49 ` [Buildroot] [PATCH 2/2] board/*/genimage.cfg: use partition-table-type = "gpt" for genimage-15 Sergey Matyukevich
2021-12-25 13:58 ` Sergey Matyukevich
2021-12-27 14:43 ` Thomas Petazzoni
2021-12-27 14:43 ` Thomas Petazzoni
2021-12-27 14:43 ` [Buildroot] [PATCH 1/2] board/orangepi/orangepi-r1/genimage.cfg: fix build after move to genimage 15 Thomas Petazzoni
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20211219142035.6220-2-peter@korsgaard.com \
--to=peter@korsgaard.com \
--cc=alistair@alistair23.me \
--cc=buildroot@buildroot.org \
--cc=geomatsi@gmail.com \
--cc=gerome.burlats@smile.fr \
--cc=jagan@amarulasolutions.com \
--cc=michael@walle.cc \
--cc=romain.naour@gmail.com \
--cc=sunil@amarulasolutions.com \
--cc=thomas.petazzoni@bootlin.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox