KubeOS/0004-KubeOS-increase-the-space-of-the-boot-partition.patch
liyuanr 495b312308 KubeOS:update to 1.0.1-8
update version to 1.0.1-8 to stay in sync with 22.03-LTS

Signed-off-by: liyuanr <liyuanrong1@huawei.com>
2023-02-07 15:53:12 +08:00

38 lines
1.4 KiB
Diff

From 1bf97e2943993932dbba997e68a66f66ed1205e0 Mon Sep 17 00:00:00 2001
From: liyuanr <liyuanrong1@huawei.com>
Date: Thu, 28 Apr 2022 15:37:29 +0800
Subject: [PATCH] KubeOS:increase the space of the boot partition
Since openEuler 22.03-LTS, the space required by grub-related
packages is increased. Therefore, the space of the boot partition
is not enough. Therefore, the space of the boot partition needs to
be increased
Signed-off-by: liyuanr <liyuanrong1@huawei.com>
---
scripts/generate.sh | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/scripts/generate.sh b/scripts/generate.sh
index e59dd8c..0bfe6c5 100644
--- a/scripts/generate.sh
+++ b/scripts/generate.sh
@@ -221,10 +221,10 @@ function create_img() {
rm -f system.img update.img
qemu-img create system.img ${IMG_SIZE}G
parted system.img -- mklabel msdos
- parted system.img -- mkpart primary fat16 1MiB 60MiB
- parted system.img -- mkpart primary ext4 60MiB 2160MiB
- parted system.img -- mkpart primary ext4 2160MiB 4260MiB
- parted system.img -- mkpart primary ext4 4260MiB 100%
+ parted system.img -- mkpart primary fat16 1MiB 100MiB
+ parted system.img -- mkpart primary ext4 100MiB 2200MiB
+ parted system.img -- mkpart primary ext4 2200MiB 4300MiB
+ parted system.img -- mkpart primary ext4 4300MiB 100%
local device=$(losetup -f)
losetup "${device}" system.img
--
2.33.0.windows.2