Files
integ/ostree/initramfs-ostree/debian/all/patches/0014-init-ostree-install.sh-support-boot-option-inst.ks-f.patch
Robert Church 69f8cdcf4a Add Trixie build support for ostree pkgs
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>
2025-07-09 14:58:10 -04:00

33 lines
840 B
Diff

From 6a10ae5559d4cb5b9ee80e55d873cd83c41cd0a9 Mon Sep 17 00:00:00 2001
From: Zhang Xiao <xiao.zhang@windriver.com>
Date: Mon, 3 Apr 2023 22:32:34 -0700
Subject: [PATCH] init-ostree-install.sh: support boot option inst.ks for
kickstart
https://github.com/Wind-River/meta-lat/commit/1655ad90
https://github.com/Wind-River/meta-lat/commit/e0175017
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Zhang Xiao <xiao.zhang@windriver.com>
---
init-ostree-install.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/init-ostree-install.sh b/init-ostree-install.sh
index 4046fbb..e4393fb 100644
--- a/init-ostree-install.sh
+++ b/init-ostree-install.sh
@@ -621,6 +621,9 @@ read_args() {
ks=*)
KS="$optarg"
;;
+ inst.ks=*)
+ KS="$optarg"
+ ;;
bl=*)
BL=$optarg ;;
instnet=*)
--
2.34.1