use M instead MiB suffix everywhere

This seems to do better alignment
This commit is contained in:
Jörg Thalheim 2023-09-27 07:56:10 +02:00 committed by mergify[bot]
parent b18f43a9c2
commit 2b523b58e6
4 changed files with 8 additions and 8 deletions

View File

@ -8,7 +8,7 @@
type = "gpt";
partitions = {
ESP = {
end = "100MiB";
end = "100M";
type = "EF00";
content = {
type = "filesystem";

View File

@ -11,7 +11,7 @@
priority = 1;
name = "ESP";
start = "1M";
end = "128MiB";
end = "128M";
type = "EF00";
content = {
type = "filesystem";

View File

@ -8,8 +8,8 @@
type = "gpt";
partitions = {
ESP = {
start = "1MiB";
end = "128MiB";
start = "1M";
end = "128M";
type = "EF00";
content = {
type = "filesystem";
@ -84,7 +84,7 @@
type = "gpt";
partitions = {
bla = {
start = "1MiB";
start = "1M";
size = "100%";
content = {
type = "filesystem";

View File

@ -10,8 +10,8 @@
partitions = [
{
name = "ESP";
start = "1MiB";
end = "100MiB";
start = "1M";
end = "100M";
bootable = true;
content = {
type = "filesystem";
@ -21,7 +21,7 @@
}
{
name = "root";
start = "100MiB";
start = "100M";
end = "100%";
part-type = "primary";
bootable = true;