From 54cf00d9f878b735120c7181a1dcdd43c0b1a9f6 Mon Sep 17 00:00:00 2001 From: Yue Tao Date: Wed, 15 Sep 2021 18:00:04 +0800 Subject: [PATCH] Add debian packages for ostree meta-lat (open sources of LAT: git://github.com/Wind-River/meta-lat) provides 4 packages related to ostree: initramfs-ostree mttyexec ostree-upgrade-mgr ostree which are needed to build image by LAT, so adding the debian folders for these 4 packages in integ layer to build them from source. Story: 2009221 Task: 43324 Signed-off-by: Yue Tao Change-Id: I041985c826df1c51cd2981e70eb1715ee10d2fa0 --- ostree/initramfs-ostree/debian/dl_hook | 9 +++++++++ ostree/initramfs-ostree/debian/meta_data.yaml | 6 ++++++ ostree/mttyexec/debian/dl_hook | 9 +++++++++ ostree/mttyexec/debian/meta_data.yaml | 6 ++++++ ostree/ostree-upgrade-mgr/debian/dl_hook | 9 +++++++++ ostree/ostree-upgrade-mgr/debian/meta_data.yaml | 6 ++++++ ostree/ostree/debian/dl_hook | 15 +++++++++++++++ ostree/ostree/debian/meta_data.yaml | 3 +++ 8 files changed, 63 insertions(+) create mode 100755 ostree/initramfs-ostree/debian/dl_hook create mode 100644 ostree/initramfs-ostree/debian/meta_data.yaml create mode 100755 ostree/mttyexec/debian/dl_hook create mode 100644 ostree/mttyexec/debian/meta_data.yaml create mode 100755 ostree/ostree-upgrade-mgr/debian/dl_hook create mode 100644 ostree/ostree-upgrade-mgr/debian/meta_data.yaml create mode 100755 ostree/ostree/debian/dl_hook create mode 100644 ostree/ostree/debian/meta_data.yaml diff --git a/ostree/initramfs-ostree/debian/dl_hook b/ostree/initramfs-ostree/debian/dl_hook new file mode 100755 index 000000000..2490b5454 --- /dev/null +++ b/ostree/initramfs-ostree/debian/dl_hook @@ -0,0 +1,9 @@ +#!/bin/bash +set -x +LOCAL_DIR=$1 +PKGNAME=initramfs-ostree +BASE_DIR=$STX_GIT_SRC_DIR/meta-lat/data/debian +SRC_DIR=$BASE_DIR/$PKGNAME/sources +DEB_DIR=$BASE_DIR/$PKGNAME/metadata/debian +cp -Lr $SRC_DIR $LOCAL_DIR +cp -Lr $DEB_DIR $LOCAL_DIR diff --git a/ostree/initramfs-ostree/debian/meta_data.yaml b/ostree/initramfs-ostree/debian/meta_data.yaml new file mode 100644 index 000000000..fdd626633 --- /dev/null +++ b/ostree/initramfs-ostree/debian/meta_data.yaml @@ -0,0 +1,6 @@ +--- +debver: 1.0 +dl_hook: dl_hook +revision: + dist: $STX_DIST + PKG_GITREVCOUNT: true diff --git a/ostree/mttyexec/debian/dl_hook b/ostree/mttyexec/debian/dl_hook new file mode 100755 index 000000000..8bc3f5018 --- /dev/null +++ b/ostree/mttyexec/debian/dl_hook @@ -0,0 +1,9 @@ +#!/bin/bash + +LOCAL_DIR=$1 +PKGNAME=mttyexec +BASE_DIR=$STX_GIT_SRC_DIR/meta-lat/data/debian +SRC_DIR=$BASE_DIR/$PKGNAME/sources +DEB_DIR=$BASE_DIR/$PKGNAME/metadata/debian +cp -Lr $SRC_DIR $LOCAL_DIR +cp -Lr $DEB_DIR $LOCAL_DIR diff --git a/ostree/mttyexec/debian/meta_data.yaml b/ostree/mttyexec/debian/meta_data.yaml new file mode 100644 index 000000000..0582662de --- /dev/null +++ b/ostree/mttyexec/debian/meta_data.yaml @@ -0,0 +1,6 @@ +--- +debver: 0.1 +dl_hook: dl_hook +revision: + dist: $STX_DIST + PKG_GITREVCOUNT: true diff --git a/ostree/ostree-upgrade-mgr/debian/dl_hook b/ostree/ostree-upgrade-mgr/debian/dl_hook new file mode 100755 index 000000000..67ad52866 --- /dev/null +++ b/ostree/ostree-upgrade-mgr/debian/dl_hook @@ -0,0 +1,9 @@ +#!/bin/bash + +LOCAL_DIR=$1 +PKGNAME=ostree-upgrade-mgr +BASE_DIR=$STX_GIT_SRC_DIR/meta-lat/data/debian +SRC_DIR=$BASE_DIR/$PKGNAME/sources +DEB_DIR=$BASE_DIR/$PKGNAME/metadata/debian +cp -Lr $SRC_DIR $LOCAL_DIR +cp -Lr $DEB_DIR $LOCAL_DIR diff --git a/ostree/ostree-upgrade-mgr/debian/meta_data.yaml b/ostree/ostree-upgrade-mgr/debian/meta_data.yaml new file mode 100644 index 000000000..fdd626633 --- /dev/null +++ b/ostree/ostree-upgrade-mgr/debian/meta_data.yaml @@ -0,0 +1,6 @@ +--- +debver: 1.0 +dl_hook: dl_hook +revision: + dist: $STX_DIST + PKG_GITREVCOUNT: true diff --git a/ostree/ostree/debian/dl_hook b/ostree/ostree/debian/dl_hook new file mode 100755 index 000000000..d8fdfc64f --- /dev/null +++ b/ostree/ostree/debian/dl_hook @@ -0,0 +1,15 @@ +#!/bin/bash + +LOCAL_DIR=$1 +PKGNAME=ostree +BASE_DIR=$STX_GIT_SRC_DIR/ +SRC_DIR=$BASE_DIR/$PKGNAME +META_DIR=$BASE_DIR/meta-lat/data/debian/$PKGNAME/metadata_patches +PATCHES_DIR=$BASE_DIR/meta-lat/data/debian/$PKGNAME/source_patches +cp -Lr $SRC_DIR $LOCAL_DIR +cd $LOCAL_DIR +for patch in `ls ${META_DIR}/*.patch`; do + patch -p1 < $patch || exit 1 +done +mkdir debian/patches/lat +cp -f ${PATCHES_DIR}/*.patch debian/patches/lat/ diff --git a/ostree/ostree/debian/meta_data.yaml b/ostree/ostree/debian/meta_data.yaml new file mode 100644 index 000000000..1e5e9efbb --- /dev/null +++ b/ostree/ostree/debian/meta_data.yaml @@ -0,0 +1,3 @@ +--- +debver: 2019.1-1 +dl_hook: dl_hook