This introduces some packages for a trixie specific build.
Changes include:
- Add debian_trixie_pkg_dirs_std based off of debian_pkg_dirs and
comment out all packages except for:
- ostree/initramfs-ostree
- ostree/mttyexec
- ostree/ostree
- ostree/ostree-upgrade-mgr
- Move ostree/initramfs-ostree/debian to
ostree/initramfs-ostree/debian/all
- Move ostree/mttyexec/debian to ostree/mttyexec/debian/all
- Move ostree/ostree/debian to ostree/ostree/debian/all
- Move ostree/ostree-upgrade-mgr/debian to
ostree/ostree-upgrade-mgr/debian/all
Test Plan:
- PASS: bullseye: stx-init-env --rebuild, downloader, build-pkgs -a,
build-image
- PASS: trixie: stx-init-env --rebuild, downloader, build-pkgs -a,
build-image
NOTE: build-image for trixie fails, but further integration is required.
At this point it doesn't appear to be tooling related
Prototype: Concurrent Builds in master
Change-Id: I515a4eeb88f338091ca60e55a6b47f6ef4c21607
Depends-On: https://review.opendev.org/c/starlingx/root/+/946813
Story: NNNNNNN
Task: NNNNN
Signed-off-by: Robert Church <robert.church@windriver.com>
Signed-off-by: Scott Little <scott.little@windriver.com>
31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
From d0aca679be610c4dbb8b3977be335f8d0dcd5e03 Mon Sep 17 00:00:00 2001
|
|
From: Robert Church <robert.church@windriver.com>
|
|
Date: Tue, 1 Feb 2022 03:13:15 -0500
|
|
Subject: [PATCH 3/3] Add lvm2 package to initramfs
|
|
|
|
LVM will be used to set up the minimal StarlingX volume group. Include
|
|
the package in the Depends list so that vgcreate, pvcreate, lvcreate
|
|
commands are available for provisioning.
|
|
|
|
Signed-off-by: Robert Church <robert.church@windriver.com>
|
|
---
|
|
debian/control | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/debian/control b/debian/control
|
|
index 002f25a..899bbb2 100644
|
|
--- a/debian/control
|
|
+++ b/debian/control
|
|
@@ -25,7 +25,7 @@ Homepage: https://github.com/WindRiver-Labs/meta-lat
|
|
|
|
Package: initramfs-ostree
|
|
Architecture: all
|
|
-Depends: gdisk, e2fsprogs, ${misc:Depends}, ${shlibs:Depends}
|
|
+Depends: gdisk, e2fsprogs, lvm2, ${misc:Depends}, ${shlibs:Depends}
|
|
Multi-Arch: foreign
|
|
Description: Init for initramfs to mount ostree
|
|
Basic init for initramfs to mount ostree and pivot root
|
|
--
|
|
2.16.6
|
|
|