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>
16 lines
397 B
Bash
Executable File
16 lines
397 B
Bash
Executable File
#!/bin/bash
|
|
|
|
LOCAL_DIR=$1
|
|
PKGNAME=ostree-upgrade-mgr
|
|
META_LAT_TARBALL=meta-lat.tar.gz
|
|
META_LAT=meta-lat
|
|
|
|
mkdir -p ${META_LAT}
|
|
tar xzvf ${META_LAT_TARBALL} --strip-components 1 -C ${META_LAT}
|
|
|
|
BASE_DIR=$(realpath ${META_LAT})
|
|
SRC_DIR=${BASE_DIR}/data/debian/${PKGNAME}/sources
|
|
DEB_DIR=${BASE_DIR}/data/debian/${PKGNAME}/metadata/debian
|
|
cp -Lr ${SRC_DIR} ${LOCAL_DIR}
|
|
cp -Lr ${DEB_DIR} ${LOCAL_DIR}
|