* [meta-arago][scarthgap/master][PATCH] amsdk-av-files: Remove this recipe
@ 2025-01-17 19:04 Andrew Davis
2025-01-29 19:10 ` Ryan Eatmon
0 siblings, 1 reply; 5+ messages in thread
From: Andrew Davis @ 2025-01-17 19:04 UTC (permalink / raw)
To: Denys Dmytriyenko, Ryan Eatmon, meta-arago; +Cc: Andrew Davis
These video files were used in a couple demos for multimedia decoders.
They add +50MB at minimum to images that include them and ~200MB of
git download to build. They are unused now so remove this recipe.
Signed-off-by: Andrew Davis <afd@ti.com>
---
.../packagegroup-arago-tisdk-multimedia.bb | 1 -
.../amsdk-av-files/amsdk-av-files_1.4.bb | 42 -------------------
2 files changed, 43 deletions(-)
delete mode 100644 meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
index c6e39aa1..6a1b25b6 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
@@ -7,7 +7,6 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
inherit packagegroup
MULTIMEDIA = " \
- amsdk-av-files \
ffmpeg \
libcamera \
libcamera-gst \
diff --git a/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb b/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
deleted file mode 100644
index 7267668b..00000000
--- a/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
+++ /dev/null
@@ -1,42 +0,0 @@
-DESCRIPTION = "AMSDK multimedia support files"
-HOMEPAGE = "https://git.ti.com/processor-sdk/amsdk-av-files/"
-LICENSE = "CC-BY-NC-ND-3.0 & CC-BY-3.0"
-SECTION = "multimedia"
-LIC_FILES_CHKSUM = "file://Multimedia_Data_Files_Manifest.doc;md5=fe154d291c69c51495a5bb4a456403b5"
-PR = "r2"
-
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-
-VIDEO_FILES = "video_480p "
-
-VIDEO_FILES:append:ti33x = "video_wvga \
- video_wqvga"
-VIDEO_FILES:append:ti43x = "video_wqvga"
-VIDEO_FILES:append:dra7xx = "video_wvga \
- video_1080p \
- video_720p \
- video_yuv"
-VIDEO_FILES:append:k3 = "video_720p"
-
-BRANCH = "master"
-
-SRC_URI = "git://git.ti.com/git/processor-sdk/amsdk-av-files.git;protocol=https;branch=${BRANCH}"
-SRCREV = "1b73009090265328ebaf1b6c880dfeccae5a8f19"
-
-S = "${WORKDIR}/git"
-
-do_compile() {
- :
-}
-
-do_install() {
- install -d ${D}${datadir}/ti \
- ${D}${datadir}/ti/audio \
- ${D}${datadir}/ti/video
- install -m 0644 ${S}/audio/* ${D}${datadir}/ti/audio/
- for file in ${VIDEO_FILES}; do
- install -m 0644 ${S}/${file}/* ${D}${datadir}/ti/video/
- done
-}
-
-FILES:${PN} += "${datadir}/ti/*"
--
2.39.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [meta-arago][scarthgap/master][PATCH] amsdk-av-files: Remove this recipe
2025-01-17 19:04 [meta-arago][scarthgap/master][PATCH] amsdk-av-files: Remove this recipe Andrew Davis
@ 2025-01-29 19:10 ` Ryan Eatmon
2025-01-29 19:58 ` Andrew Davis
0 siblings, 1 reply; 5+ messages in thread
From: Ryan Eatmon @ 2025-01-29 19:10 UTC (permalink / raw)
To: Andrew Davis, Denys Dmytriyenko, meta-arago
For some reason this patch breaks two of our builds on master...
am69-sk - rt
j784s4-evm - rt
It gives the error during tisdk-default-image do_rootfs:
ERROR: Unable to install packages. Command
'/scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/recipe-sysroot-native/usr/bin/opkg
--volatile-cache -f
/scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/opkg.conf
-t
/scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/temp/ipktemp/
-o
/scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/rootfs
--force_postinstall --add-ignore-recommends busybox-syslog
--add-ignore-recommends coreutils --add-ignore-recommends coreutils-dev
--add-ignore-recommends gdbserver-c6x-dev --add-ignore-recommends
libulm-dev install build-essential docker dtc git linux-libc-headers-dev
opkg packagegroup-arago-base packagegroup-arago-console
packagegroup-arago-tisdk-addons packagegroup-arago-tisdk-addons-extra
packagegroup-arago-tisdk-connectivity packagegroup-arago-tisdk-crypto
packagegroup-arago-tisdk-graphics packagegroup-arago-tisdk-gtk
packagegroup-arago-tisdk-hmi packagegroup-arago-tisdk-multimedia
packagegroup-arago-tisdk-qte packagegroup-arago-tisdk-sysrepo
packagegroup-core-boot packagegroup-core-tools-debug
pdm-anomaly-detection psplash run-postinsts ti-test ti-test-extras'
returned -11:
DEBUG: Python function do_rootfs finished
Which is annoying because it doesn't say why it failed, just that it
failed...
I bisected it down to this patch.
All other platform/variant combinations work, and scarthgap works...
On 1/17/2025 1:04 PM, Andrew Davis wrote:
> These video files were used in a couple demos for multimedia decoders.
> They add +50MB at minimum to images that include them and ~200MB of
> git download to build. They are unused now so remove this recipe.
>
> Signed-off-by: Andrew Davis <afd@ti.com>
> ---
> .../packagegroup-arago-tisdk-multimedia.bb | 1 -
> .../amsdk-av-files/amsdk-av-files_1.4.bb | 42 -------------------
> 2 files changed, 43 deletions(-)
> delete mode 100644 meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
>
> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
> index c6e39aa1..6a1b25b6 100644
> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
> @@ -7,7 +7,6 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
> inherit packagegroup
>
> MULTIMEDIA = " \
> - amsdk-av-files \
> ffmpeg \
> libcamera \
> libcamera-gst \
> diff --git a/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb b/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
> deleted file mode 100644
> index 7267668b..00000000
> --- a/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
> +++ /dev/null
> @@ -1,42 +0,0 @@
> -DESCRIPTION = "AMSDK multimedia support files"
> -HOMEPAGE = "https://git.ti.com/processor-sdk/amsdk-av-files/"
> -LICENSE = "CC-BY-NC-ND-3.0 & CC-BY-3.0"
> -SECTION = "multimedia"
> -LIC_FILES_CHKSUM = "file://Multimedia_Data_Files_Manifest.doc;md5=fe154d291c69c51495a5bb4a456403b5"
> -PR = "r2"
> -
> -PACKAGE_ARCH = "${MACHINE_ARCH}"
> -
> -VIDEO_FILES = "video_480p "
> -
> -VIDEO_FILES:append:ti33x = "video_wvga \
> - video_wqvga"
> -VIDEO_FILES:append:ti43x = "video_wqvga"
> -VIDEO_FILES:append:dra7xx = "video_wvga \
> - video_1080p \
> - video_720p \
> - video_yuv"
> -VIDEO_FILES:append:k3 = "video_720p"
> -
> -BRANCH = "master"
> -
> -SRC_URI = "git://git.ti.com/git/processor-sdk/amsdk-av-files.git;protocol=https;branch=${BRANCH}"
> -SRCREV = "1b73009090265328ebaf1b6c880dfeccae5a8f19"
> -
> -S = "${WORKDIR}/git"
> -
> -do_compile() {
> - :
> -}
> -
> -do_install() {
> - install -d ${D}${datadir}/ti \
> - ${D}${datadir}/ti/audio \
> - ${D}${datadir}/ti/video
> - install -m 0644 ${S}/audio/* ${D}${datadir}/ti/audio/
> - for file in ${VIDEO_FILES}; do
> - install -m 0644 ${S}/${file}/* ${D}${datadir}/ti/video/
> - done
> -}
> -
> -FILES:${PN} += "${datadir}/ti/*"
--
Ryan Eatmon reatmon@ti.com
-----------------------------------------
Texas Instruments, Inc. - LCPD - MGTS
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-arago][scarthgap/master][PATCH] amsdk-av-files: Remove this recipe
2025-01-29 19:10 ` Ryan Eatmon
@ 2025-01-29 19:58 ` Andrew Davis
2025-01-29 21:13 ` Ryan Eatmon
[not found] ` <181F463B2D9CFF40.27573@lists.yoctoproject.org>
0 siblings, 2 replies; 5+ messages in thread
From: Andrew Davis @ 2025-01-29 19:58 UTC (permalink / raw)
To: Ryan Eatmon, Denys Dmytriyenko, meta-arago
On 1/29/25 1:10 PM, Ryan Eatmon wrote:
>
> For some reason this patch breaks two of our builds on master...
>
> am69-sk - rt
> j784s4-evm - rt
>
> It gives the error during tisdk-default-image do_rootfs:
>
> ERROR: Unable to install packages. Command '/scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/recipe-sysroot-native/usr/bin/opkg --volatile-cache -f /scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/opkg.conf -t /scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/temp/ipktemp/ -o /scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/rootfs --force_postinstall --add-ignore-recommends busybox-syslog --add-ignore-recommends coreutils --add-ignore-recommends coreutils-dev --add-ignore-recommends gdbserver-c6x-dev --add-ignore-recommends libulm-dev install build-essential docker dtc git linux-libc-headers-dev opkg packagegroup-arago-base packagegroup-arago-console packagegroup-arago-tisdk-addons
> packagegroup-arago-tisdk-addons-extra packagegroup-arago-tisdk-connectivity packagegroup-arago-tisdk-crypto packagegroup-arago-tisdk-graphics packagegroup-arago-tisdk-gtk packagegroup-arago-tisdk-hmi packagegroup-arago-tisdk-multimedia packagegroup-arago-tisdk-qte packagegroup-arago-tisdk-sysrepo packagegroup-core-boot packagegroup-core-tools-debug pdm-anomaly-detection psplash run-postinsts ti-test ti-test-extras' returned -11:
>
> DEBUG: Python function do_rootfs finished
>
>
> Which is annoying because it doesn't say why it failed, just that it failed...
>
> I bisected it down to this patch.
>
> All other platform/variant combinations work, and scarthgap works...
>
That seems really odd then, maybe some stale sstate for the multimedia
packagegroup those specific platform/variant combos that still has
amsdk-av-files as a dep?
Andrew
>
>
> On 1/17/2025 1:04 PM, Andrew Davis wrote:
>> These video files were used in a couple demos for multimedia decoders.
>> They add +50MB at minimum to images that include them and ~200MB of
>> git download to build. They are unused now so remove this recipe.
>>
>> Signed-off-by: Andrew Davis <afd@ti.com>
>> ---
>> .../packagegroup-arago-tisdk-multimedia.bb | 1 -
>> .../amsdk-av-files/amsdk-av-files_1.4.bb | 42 -------------------
>> 2 files changed, 43 deletions(-)
>> delete mode 100644 meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
>>
>> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
>> index c6e39aa1..6a1b25b6 100644
>> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
>> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
>> @@ -7,7 +7,6 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
>> inherit packagegroup
>> MULTIMEDIA = " \
>> - amsdk-av-files \
>> ffmpeg \
>> libcamera \
>> libcamera-gst \
>> diff --git a/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb b/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
>> deleted file mode 100644
>> index 7267668b..00000000
>> --- a/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
>> +++ /dev/null
>> @@ -1,42 +0,0 @@
>> -DESCRIPTION = "AMSDK multimedia support files"
>> -HOMEPAGE = "https://git.ti.com/processor-sdk/amsdk-av-files/"
>> -LICENSE = "CC-BY-NC-ND-3.0 & CC-BY-3.0"
>> -SECTION = "multimedia"
>> -LIC_FILES_CHKSUM = "file://Multimedia_Data_Files_Manifest.doc;md5=fe154d291c69c51495a5bb4a456403b5"
>> -PR = "r2"
>> -
>> -PACKAGE_ARCH = "${MACHINE_ARCH}"
>> -
>> -VIDEO_FILES = "video_480p "
>> -
>> -VIDEO_FILES:append:ti33x = "video_wvga \
>> - video_wqvga"
>> -VIDEO_FILES:append:ti43x = "video_wqvga"
>> -VIDEO_FILES:append:dra7xx = "video_wvga \
>> - video_1080p \
>> - video_720p \
>> - video_yuv"
>> -VIDEO_FILES:append:k3 = "video_720p"
>> -
>> -BRANCH = "master"
>> -
>> -SRC_URI = "git://git.ti.com/git/processor-sdk/amsdk-av-files.git;protocol=https;branch=${BRANCH}"
>> -SRCREV = "1b73009090265328ebaf1b6c880dfeccae5a8f19"
>> -
>> -S = "${WORKDIR}/git"
>> -
>> -do_compile() {
>> - :
>> -}
>> -
>> -do_install() {
>> - install -d ${D}${datadir}/ti \
>> - ${D}${datadir}/ti/audio \
>> - ${D}${datadir}/ti/video
>> - install -m 0644 ${S}/audio/* ${D}${datadir}/ti/audio/
>> - for file in ${VIDEO_FILES}; do
>> - install -m 0644 ${S}/${file}/* ${D}${datadir}/ti/video/
>> - done
>> -}
>> -
>> -FILES:${PN} += "${datadir}/ti/*"
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-arago][scarthgap/master][PATCH] amsdk-av-files: Remove this recipe
2025-01-29 19:58 ` Andrew Davis
@ 2025-01-29 21:13 ` Ryan Eatmon
[not found] ` <181F463B2D9CFF40.27573@lists.yoctoproject.org>
1 sibling, 0 replies; 5+ messages in thread
From: Ryan Eatmon @ 2025-01-29 21:13 UTC (permalink / raw)
To: Andrew Davis, Denys Dmytriyenko, meta-arago
On 1/29/2025 1:58 PM, Andrew Davis wrote:
> On 1/29/25 1:10 PM, Ryan Eatmon wrote:
>>
>> For some reason this patch breaks two of our builds on master...
>>
>> am69-sk - rt
>> j784s4-evm - rt
>>
>> It gives the error during tisdk-default-image do_rootfs:
>>
>> ERROR: Unable to install packages. Command
>> '/scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/recipe-sysroot-native/usr/bin/opkg --volatile-cache -f /scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/opkg.conf -t /scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/temp/ipktemp/ -o /scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/rootfs --force_postinstall --add-ignore-recommends busybox-syslog --add-ignore-recommends coreutils --add-ignore-recommends coreutils-dev --add-ignore-recommends gdbserver-c6x-dev --add-ignore-recommends libulm-dev install build-essential docker dtc git linux-libc-headers-dev opkg packagegroup-arago-base packagegroup-arago-console packagegroup-arago-tisdk-addons packagegroup-arago-tisdk-addons-extra packagegroup-arago-tisdk-connectivity packagegroup-arago-tisdk-crypto packagegroup-arago-tisdk-graphics packagegroup-arago-tisdk-gtk packagegroup-arago-tisdk-hmi packagegroup-arago-tisdk-multimedia packagegroup-arago-tisdk-qte packagegroup-arago-tisdk-sysrepo packagegroup-core-boot packagegroup-core-tools-debug pdm-anomaly-detection psplash run-postinsts ti-test ti-test-extras' returned -11:
>>
>> DEBUG: Python function do_rootfs finished
>>
>>
>> Which is annoying because it doesn't say why it failed, just that it
>> failed...
>>
>> I bisected it down to this patch.
>>
>> All other platform/variant combinations work, and scarthgap works...
>>
>
> That seems really odd then, maybe some stale sstate for the multimedia
> packagegroup those specific platform/variant combos that still has
> amsdk-av-files as a dep?
I did a build with no sstate and still got the issue.
> Andrew
>
>>
>>
>> On 1/17/2025 1:04 PM, Andrew Davis wrote:
>>> These video files were used in a couple demos for multimedia decoders.
>>> They add +50MB at minimum to images that include them and ~200MB of
>>> git download to build. They are unused now so remove this recipe.
>>>
>>> Signed-off-by: Andrew Davis <afd@ti.com>
>>> ---
>>> .../packagegroup-arago-tisdk-multimedia.bb | 1 -
>>> .../amsdk-av-files/amsdk-av-files_1.4.bb | 42 -------------------
>>> 2 files changed, 43 deletions(-)
>>> delete mode 100644
>>> meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
>>>
>>> diff --git
>>> a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
>>> index c6e39aa1..6a1b25b6 100644
>>> ---
>>> a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
>>> +++
>>> b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
>>> @@ -7,7 +7,6 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
>>> inherit packagegroup
>>> MULTIMEDIA = " \
>>> - amsdk-av-files \
>>> ffmpeg \
>>> libcamera \
>>> libcamera-gst \
>>> diff --git
>>> a/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb b/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
>>> deleted file mode 100644
>>> index 7267668b..00000000
>>> ---
>>> a/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
>>> +++ /dev/null
>>> @@ -1,42 +0,0 @@
>>> -DESCRIPTION = "AMSDK multimedia support files"
>>> -HOMEPAGE = "https://git.ti.com/processor-sdk/amsdk-av-files/"
>>> -LICENSE = "CC-BY-NC-ND-3.0 & CC-BY-3.0"
>>> -SECTION = "multimedia"
>>> -LIC_FILES_CHKSUM =
>>> "file://Multimedia_Data_Files_Manifest.doc;md5=fe154d291c69c51495a5bb4a456403b5"
>>> -PR = "r2"
>>> -
>>> -PACKAGE_ARCH = "${MACHINE_ARCH}"
>>> -
>>> -VIDEO_FILES = "video_480p "
>>> -
>>> -VIDEO_FILES:append:ti33x = "video_wvga \
>>> - video_wqvga"
>>> -VIDEO_FILES:append:ti43x = "video_wqvga"
>>> -VIDEO_FILES:append:dra7xx = "video_wvga \
>>> - video_1080p \
>>> - video_720p \
>>> - video_yuv"
>>> -VIDEO_FILES:append:k3 = "video_720p"
>>> -
>>> -BRANCH = "master"
>>> -
>>> -SRC_URI =
>>> "git://git.ti.com/git/processor-sdk/amsdk-av-files.git;protocol=https;branch=${BRANCH}"
>>> -SRCREV = "1b73009090265328ebaf1b6c880dfeccae5a8f19"
>>> -
>>> -S = "${WORKDIR}/git"
>>> -
>>> -do_compile() {
>>> - :
>>> -}
>>> -
>>> -do_install() {
>>> - install -d ${D}${datadir}/ti \
>>> - ${D}${datadir}/ti/audio \
>>> - ${D}${datadir}/ti/video
>>> - install -m 0644 ${S}/audio/* ${D}${datadir}/ti/audio/
>>> - for file in ${VIDEO_FILES}; do
>>> - install -m 0644 ${S}/${file}/* ${D}${datadir}/ti/video/
>>> - done
>>> -}
>>> -
>>> -FILES:${PN} += "${datadir}/ti/*"
>>
--
Ryan Eatmon reatmon@ti.com
-----------------------------------------
Texas Instruments, Inc. - LCPD - MGTS
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-arago][scarthgap/master][PATCH] amsdk-av-files: Remove this recipe
[not found] ` <181F463B2D9CFF40.27573@lists.yoctoproject.org>
@ 2025-01-30 16:02 ` Ryan Eatmon
0 siblings, 0 replies; 5+ messages in thread
From: Ryan Eatmon @ 2025-01-30 16:02 UTC (permalink / raw)
To: Andrew Davis, Denys Dmytriyenko, meta-arago
On 1/29/2025 3:13 PM, Ryan Eatmon via lists.yoctoproject.org wrote:
>
>
> On 1/29/2025 1:58 PM, Andrew Davis wrote:
>> On 1/29/25 1:10 PM, Ryan Eatmon wrote:
>>>
>>> For some reason this patch breaks two of our builds on master...
>>>
>>> am69-sk - rt
>>> j784s4-evm - rt
>>>
>>> It gives the error during tisdk-default-image do_rootfs:
>>>
>>> ERROR: Unable to install packages. Command
>>> '/scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/recipe-sysroot-native/usr/bin/opkg --volatile-cache -f /scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/opkg.conf -t /scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/temp/ipktemp/ -o /scratch/jenkins_builds/arago-master-next/build/build/arago-tmp-default/work/am69_sk-oe-linux/tisdk-default-image/1.0/rootfs --force_postinstall --add-ignore-recommends busybox-syslog --add-ignore-recommends coreutils --add-ignore-recommends coreutils-dev --add-ignore-recommends gdbserver-c6x-dev --add-ignore-recommends libulm-dev install build-essential docker dtc git linux-libc-headers-dev opkg packagegroup-arago-base packagegroup-arago-console packagegroup-arago-tisdk-addons packagegroup-arago-tisdk-addons-extra packagegroup-arago-tisdk-connectivity packagegroup-arago-tisdk-crypto packagegroup-arago-tisdk-graphics packagegroup-arago-tisdk-gtk packagegroup-arago-tisdk-hmi packagegroup-arago-tisdk-multimedia packagegroup-arago-tisdk-qte packagegroup-arago-tisdk-sysrepo packagegroup-core-boot packagegroup-core-tools-debug pdm-anomaly-detection psplash run-postinsts ti-test ti-test-extras' returned -11:
>>>
>>> DEBUG: Python function do_rootfs finished
>>>
>>>
>>> Which is annoying because it doesn't say why it failed, just that it
>>> failed...
>>>
>>> I bisected it down to this patch.
>>>
>>> All other platform/variant combinations work, and scarthgap works...
>>>
>>
>> That seems really odd then, maybe some stale sstate for the multimedia
>> packagegroup those specific platform/variant combos that still has
>> amsdk-av-files as a dep?
>
> I did a build with no sstate and still got the issue.
And they both started passing last night... I will never understand
these issues sometimes...
>
>> Andrew
>>
>>>
>>>
>>> On 1/17/2025 1:04 PM, Andrew Davis wrote:
>>>> These video files were used in a couple demos for multimedia decoders.
>>>> They add +50MB at minimum to images that include them and ~200MB of
>>>> git download to build. They are unused now so remove this recipe.
>>>>
>>>> Signed-off-by: Andrew Davis <afd@ti.com>
>>>> ---
>>>> .../packagegroup-arago-tisdk-multimedia.bb | 1 -
>>>> .../amsdk-av-files/amsdk-av-files_1.4.bb | 42
>>>> -------------------
>>>> 2 files changed, 43 deletions(-)
>>>> delete mode 100644
>>>> meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
>>>>
>>>> diff --git
>>>> a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
>>>> index c6e39aa1..6a1b25b6 100644
>>>> ---
>>>> a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
>>>> +++
>>>> b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
>>>> @@ -7,7 +7,6 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
>>>> inherit packagegroup
>>>> MULTIMEDIA = " \
>>>> - amsdk-av-files \
>>>> ffmpeg \
>>>> libcamera \
>>>> libcamera-gst \
>>>> diff --git
>>>> a/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb b/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
>>>> deleted file mode 100644
>>>> index 7267668b..00000000
>>>> ---
>>>> a/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
>>>> +++ /dev/null
>>>> @@ -1,42 +0,0 @@
>>>> -DESCRIPTION = "AMSDK multimedia support files"
>>>> -HOMEPAGE = "https://git.ti.com/processor-sdk/amsdk-av-files/"
>>>> -LICENSE = "CC-BY-NC-ND-3.0 & CC-BY-3.0"
>>>> -SECTION = "multimedia"
>>>> -LIC_FILES_CHKSUM =
>>>> "file://Multimedia_Data_Files_Manifest.doc;md5=fe154d291c69c51495a5bb4a456403b5"
>>>> -PR = "r2"
>>>> -
>>>> -PACKAGE_ARCH = "${MACHINE_ARCH}"
>>>> -
>>>> -VIDEO_FILES = "video_480p "
>>>> -
>>>> -VIDEO_FILES:append:ti33x = "video_wvga \
>>>> - video_wqvga"
>>>> -VIDEO_FILES:append:ti43x = "video_wqvga"
>>>> -VIDEO_FILES:append:dra7xx = "video_wvga \
>>>> - video_1080p \
>>>> - video_720p \
>>>> - video_yuv"
>>>> -VIDEO_FILES:append:k3 = "video_720p"
>>>> -
>>>> -BRANCH = "master"
>>>> -
>>>> -SRC_URI =
>>>> "git://git.ti.com/git/processor-sdk/amsdk-av-files.git;protocol=https;branch=${BRANCH}"
>>>> -SRCREV = "1b73009090265328ebaf1b6c880dfeccae5a8f19"
>>>> -
>>>> -S = "${WORKDIR}/git"
>>>> -
>>>> -do_compile() {
>>>> - :
>>>> -}
>>>> -
>>>> -do_install() {
>>>> - install -d ${D}${datadir}/ti \
>>>> - ${D}${datadir}/ti/audio \
>>>> - ${D}${datadir}/ti/video
>>>> - install -m 0644 ${S}/audio/* ${D}${datadir}/ti/audio/
>>>> - for file in ${VIDEO_FILES}; do
>>>> - install -m 0644 ${S}/${file}/* ${D}${datadir}/ti/video/
>>>> - done
>>>> -}
>>>> -
>>>> -FILES:${PN} += "${datadir}/ti/*"
>>>
>
--
Ryan Eatmon reatmon@ti.com
-----------------------------------------
Texas Instruments, Inc. - LCPD - MGTS
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-01-30 16:02 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-17 19:04 [meta-arago][scarthgap/master][PATCH] amsdk-av-files: Remove this recipe Andrew Davis
2025-01-29 19:10 ` Ryan Eatmon
2025-01-29 19:58 ` Andrew Davis
2025-01-29 21:13 ` Ryan Eatmon
[not found] ` <181F463B2D9CFF40.27573@lists.yoctoproject.org>
2025-01-30 16:02 ` Ryan Eatmon
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.