* [meta-arago][dunfell][PATCH] external-arm-toolchain: Remove EAT_TOOL_CHAIN symlinks
@ 2022-02-22 6:20 devarsht
2022-02-22 6:36 ` Denys Dmytriyenko
2025-08-13 23:25 ` PRC Automation
0 siblings, 2 replies; 5+ messages in thread
From: devarsht @ 2022-02-22 6:20 UTC (permalink / raw)
To: meta-arago
Cc: nikhil.nd, nsekhar, devarsht, vigneshr, praneeth, Ryan Eatmon,
a-m1
As per below commit in https://git.yoctoproject.org/meta-arm/log/?h=dunfell,
"1644922 external-arm-toolchain: Align glibc packaging to OE TARGET_SYS"
the upstream recipe external-arm-toolchain.bb doesn't use EAT_TARGET_SYS for
installing toolchain anymore and the recipe is directly using TARGET_SYS
for copying.
So remove EAT_TARGET_SYS symlinks as they are not required anymore and instead
copy directly to ORIG_TARGET_SYS.
Signed-off-by: Devarsh Thakkar <devarsht@ti.com>
---
.../recipes-core/meta/external-arm-toolchain.bbappend | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend b/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend
index 5a51aaa0..ea4df2ff 100644
--- a/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend
+++ b/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend
@@ -6,12 +6,6 @@ do_install_append() {
install -d ${D}${sysconfdir}
echo -e "/lib\n/usr/lib" >> ${D}${sysconfdir}/ld.so.conf
- if [ ${EAT_TARGET_SYS} != ${ORIG_TARGET_SYS} ]; then
- ln -sf ${EAT_TARGET_SYS} ${D}${libdir}/${ORIG_TARGET_SYS}
- ln -sf ${EAT_TARGET_SYS} ${D}${includedir}/c++/${EAT_VER_GCC}/${ORIG_TARGET_SYS}
- mv ${D}${libdir}/gcc/${EAT_TARGET_SYS} ${D}${libdir}/gcc/${ORIG_TARGET_SYS}
- ln -sf ${ORIG_TARGET_SYS} ${D}${libdir}/gcc/${EAT_TARGET_SYS}
- fi
ln -sf libatomic.so.1 ${D}${libdir}/libatomic.so
ln -sf libgomp.so.1 ${D}${libdir}/libgomp.so
@@ -22,7 +16,7 @@ do_install_append() {
ln -sf libasan.so.5 ${D}${libdir}/libasan.so
ln -sf libgfortran.so.5 ${D}${libdir}/libgfortran.so
- cp ${CP_ARGS} ${EXTERNAL_TOOLCHAIN}/lib/gcc/${EAT_TARGET_SYS}/${EAT_VER_GCC}/libgcc* ${D}${libdir}/${EAT_TARGET_SYS}/${EAT_VER_GCC}/
+ cp ${CP_ARGS} ${EXTERNAL_TOOLCHAIN}/lib/gcc/${EAT_TARGET_SYS}/${EAT_VER_GCC}/libgcc* ${D}${libdir}/${ORIG_TARGET_SYS}/${EAT_VER_GCC}/
}
# Below FILES_* overrides are due to TARGET_SYS -> ORIG_TARGET_SYS move in ${libdir}/gcc
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [meta-arago][dunfell][PATCH] external-arm-toolchain: Remove EAT_TOOL_CHAIN symlinks
2022-02-22 6:20 [meta-arago][dunfell][PATCH] external-arm-toolchain: Remove EAT_TOOL_CHAIN symlinks devarsht
@ 2022-02-22 6:36 ` Denys Dmytriyenko
2022-02-22 7:53 ` Devarsh Thakkar
2025-08-13 23:25 ` PRC Automation
1 sibling, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2022-02-22 6:36 UTC (permalink / raw)
To: devarsht
Cc: meta-arago, nikhil.nd, nsekhar, vigneshr, praneeth, Ryan Eatmon,
a-m1
NAK.
On Tue, Feb 22, 2022 at 11:50:27AM +0530, Devarsh Thakkar via lists.yoctoproject.org wrote:
> As per below commit in https://git.yoctoproject.org/meta-arm/log/?h=dunfell,
>
> "1644922 external-arm-toolchain: Align glibc packaging to OE TARGET_SYS"
>
> the upstream recipe external-arm-toolchain.bb doesn't use EAT_TARGET_SYS for
> installing toolchain anymore and the recipe is directly using TARGET_SYS
> for copying.
>
> So remove EAT_TARGET_SYS symlinks as they are not required anymore and instead
> copy directly to ORIG_TARGET_SYS.
>
> Signed-off-by: Devarsh Thakkar <devarsht@ti.com>
> ---
> .../recipes-core/meta/external-arm-toolchain.bbappend | 8 +-------
> 1 file changed, 1 insertion(+), 7 deletions(-)
>
> diff --git a/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend b/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend
> index 5a51aaa0..ea4df2ff 100644
> --- a/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend
> +++ b/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend
> @@ -6,12 +6,6 @@ do_install_append() {
> install -d ${D}${sysconfdir}
> echo -e "/lib\n/usr/lib" >> ${D}${sysconfdir}/ld.so.conf
>
> - if [ ${EAT_TARGET_SYS} != ${ORIG_TARGET_SYS} ]; then
> - ln -sf ${EAT_TARGET_SYS} ${D}${libdir}/${ORIG_TARGET_SYS}
> - ln -sf ${EAT_TARGET_SYS} ${D}${includedir}/c++/${EAT_VER_GCC}/${ORIG_TARGET_SYS}
> - mv ${D}${libdir}/gcc/${EAT_TARGET_SYS} ${D}${libdir}/gcc/${ORIG_TARGET_SYS}
> - ln -sf ${ORIG_TARGET_SYS} ${D}${libdir}/gcc/${EAT_TARGET_SYS}
> - fi
>
> ln -sf libatomic.so.1 ${D}${libdir}/libatomic.so
> ln -sf libgomp.so.1 ${D}${libdir}/libgomp.so
> @@ -22,7 +16,7 @@ do_install_append() {
> ln -sf libasan.so.5 ${D}${libdir}/libasan.so
> ln -sf libgfortran.so.5 ${D}${libdir}/libgfortran.so
>
> - cp ${CP_ARGS} ${EXTERNAL_TOOLCHAIN}/lib/gcc/${EAT_TARGET_SYS}/${EAT_VER_GCC}/libgcc* ${D}${libdir}/${EAT_TARGET_SYS}/${EAT_VER_GCC}/
> + cp ${CP_ARGS} ${EXTERNAL_TOOLCHAIN}/lib/gcc/${EAT_TARGET_SYS}/${EAT_VER_GCC}/libgcc* ${D}${libdir}/${ORIG_TARGET_SYS}/${EAT_VER_GCC}/
> }
>
> # Below FILES_* overrides are due to TARGET_SYS -> ORIG_TARGET_SYS move in ${libdir}/gcc
> --
> 2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-arago][dunfell][PATCH] external-arm-toolchain: Remove EAT_TOOL_CHAIN symlinks
2022-02-22 6:36 ` Denys Dmytriyenko
@ 2022-02-22 7:53 ` Devarsh Thakkar
2022-02-23 1:07 ` Denys Dmytriyenko
0 siblings, 1 reply; 5+ messages in thread
From: Devarsh Thakkar @ 2022-02-22 7:53 UTC (permalink / raw)
To: Denys Dmytriyenko
Cc: meta-arago, nikhil.nd, nsekhar, vigneshr, praneeth, Ryan Eatmon,
a-m1
On 22/02/22 12:06, Denys Dmytriyenko wrote:
> NAK.
Could you please share more context for the NAK and any suggestions for
alternate solutions ?
The build is broken at the dunfell HEAD and this patch fixes below error :
INSTALL
<build_path>/arago-tmp-external-arm-glibc/work/aarch64-linux/external-arm-toolchain/2019.12-r0/external-arm-toolcha
in-2019.12/usr/include
mv: cannot stat
'<build_path>/build/arago-tmp-external-arm-glibc/work/aarch64-linux/external-arm-toolchain/2019.12-r0/image/usr/lib
/gcc/aarch64-none-linux-gnu': No such file or directory
>
> On Tue, Feb 22, 2022 at 11:50:27AM +0530, Devarsh Thakkar via lists.yoctoproject.org wrote:
>> As per below commit in https://git.yoctoproject.org/meta-arm/log/?h=dunfell,
>>
>> "1644922 external-arm-toolchain: Align glibc packaging to OE TARGET_SYS"
>>
>> the upstream recipe external-arm-toolchain.bb doesn't use EAT_TARGET_SYS for
>> installing toolchain anymore and the recipe is directly using TARGET_SYS
>> for copying.
>>
>> So remove EAT_TARGET_SYS symlinks as they are not required anymore and instead
>> copy directly to ORIG_TARGET_SYS.
>>
>> Signed-off-by: Devarsh Thakkar <devarsht@ti.com>
>> ---
>> .../recipes-core/meta/external-arm-toolchain.bbappend | 8 +-------
>> 1 file changed, 1 insertion(+), 7 deletions(-)
>>
>> diff --git a/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend b/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend
>> index 5a51aaa0..ea4df2ff 100644
>> --- a/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend
>> +++ b/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend
>> @@ -6,12 +6,6 @@ do_install_append() {
>> install -d ${D}${sysconfdir}
>> echo -e "/lib\n/usr/lib" >> ${D}${sysconfdir}/ld.so.conf
>>
>> - if [ ${EAT_TARGET_SYS} != ${ORIG_TARGET_SYS} ]; then
>> - ln -sf ${EAT_TARGET_SYS} ${D}${libdir}/${ORIG_TARGET_SYS}
>> - ln -sf ${EAT_TARGET_SYS} ${D}${includedir}/c++/${EAT_VER_GCC}/${ORIG_TARGET_SYS}
>> - mv ${D}${libdir}/gcc/${EAT_TARGET_SYS} ${D}${libdir}/gcc/${ORIG_TARGET_SYS}
>> - ln -sf ${ORIG_TARGET_SYS} ${D}${libdir}/gcc/${EAT_TARGET_SYS}
>> - fi
>>
>> ln -sf libatomic.so.1 ${D}${libdir}/libatomic.so
>> ln -sf libgomp.so.1 ${D}${libdir}/libgomp.so
>> @@ -22,7 +16,7 @@ do_install_append() {
>> ln -sf libasan.so.5 ${D}${libdir}/libasan.so
>> ln -sf libgfortran.so.5 ${D}${libdir}/libgfortran.so
>>
>> - cp ${CP_ARGS} ${EXTERNAL_TOOLCHAIN}/lib/gcc/${EAT_TARGET_SYS}/${EAT_VER_GCC}/libgcc* ${D}${libdir}/${EAT_TARGET_SYS}/${EAT_VER_GCC}/
>> + cp ${CP_ARGS} ${EXTERNAL_TOOLCHAIN}/lib/gcc/${EAT_TARGET_SYS}/${EAT_VER_GCC}/libgcc* ${D}${libdir}/${ORIG_TARGET_SYS}/${EAT_VER_GCC}/
>> }
>>
>> # Below FILES_* overrides are due to TARGET_SYS -> ORIG_TARGET_SYS move in ${libdir}/gcc
>> --
>> 2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-arago][dunfell][PATCH] external-arm-toolchain: Remove EAT_TOOL_CHAIN symlinks
2022-02-22 7:53 ` Devarsh Thakkar
@ 2022-02-23 1:07 ` Denys Dmytriyenko
0 siblings, 0 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2022-02-23 1:07 UTC (permalink / raw)
To: Devarsh Thakkar
Cc: meta-arago, nikhil.nd, nsekhar, vigneshr, praneeth, Ryan Eatmon,
a-m1
On Tue, Feb 22, 2022 at 01:23:19PM +0530, Devarsh Thakkar wrote:
>
> On 22/02/22 12:06, Denys Dmytriyenko wrote:
> > NAK.
>
> Could you please share more context for the NAK and any suggestions for
> alternate solutions ?
>
> The build is broken at the dunfell HEAD and this patch fixes below error :
>
> INSTALL
> <build_path>/arago-tmp-external-arm-glibc/work/aarch64-linux/external-arm-toolchain/2019.12-r0/external-arm-toolcha
> in-2019.12/usr/include
> mv: cannot stat
> '<build_path>/build/arago-tmp-external-arm-glibc/work/aarch64-linux/external-arm-toolchain/2019.12-r0/image/usr/lib
> /gcc/aarch64-none-linux-gnu': No such file or directory
I believe it is incomplete - it addresses just a single of several issues.
Have you tried building an SDK with this change?
Have you tried using the resulting SDK to cross-compile anything for the
target?
Also, have you tried using a native gcc compiler on the target?
meta-arago used to work with meta-arm-toolchain in the early Dunfell days,
until some incompatible changes were backported from master. At which point
meta-arm had to be pinned down to a commit before that backport:
https://git.ti.com/cgit/arago-project/oe-layersetup/tree/configs/arago-dunfell-config.txt#n12
Unbreaking this requires tons of testing and ensuring all the use cases still
work, not just getting the image to build...
> > On Tue, Feb 22, 2022 at 11:50:27AM +0530, Devarsh Thakkar via lists.yoctoproject.org wrote:
> >> As per below commit in https://git.yoctoproject.org/meta-arm/log/?h=dunfell,
> >>
> >> "1644922 external-arm-toolchain: Align glibc packaging to OE TARGET_SYS"
> >>
> >> the upstream recipe external-arm-toolchain.bb doesn't use EAT_TARGET_SYS for
> >> installing toolchain anymore and the recipe is directly using TARGET_SYS
> >> for copying.
> >>
> >> So remove EAT_TARGET_SYS symlinks as they are not required anymore and instead
> >> copy directly to ORIG_TARGET_SYS.
> >>
> >> Signed-off-by: Devarsh Thakkar <devarsht@ti.com>
> >> ---
> >> .../recipes-core/meta/external-arm-toolchain.bbappend | 8 +-------
> >> 1 file changed, 1 insertion(+), 7 deletions(-)
> >>
> >> diff --git a/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend b/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend
> >> index 5a51aaa0..ea4df2ff 100644
> >> --- a/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend
> >> +++ b/meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend
> >> @@ -6,12 +6,6 @@ do_install_append() {
> >> install -d ${D}${sysconfdir}
> >> echo -e "/lib\n/usr/lib" >> ${D}${sysconfdir}/ld.so.conf
> >>
> >> - if [ ${EAT_TARGET_SYS} != ${ORIG_TARGET_SYS} ]; then
> >> - ln -sf ${EAT_TARGET_SYS} ${D}${libdir}/${ORIG_TARGET_SYS}
> >> - ln -sf ${EAT_TARGET_SYS} ${D}${includedir}/c++/${EAT_VER_GCC}/${ORIG_TARGET_SYS}
> >> - mv ${D}${libdir}/gcc/${EAT_TARGET_SYS} ${D}${libdir}/gcc/${ORIG_TARGET_SYS}
> >> - ln -sf ${ORIG_TARGET_SYS} ${D}${libdir}/gcc/${EAT_TARGET_SYS}
> >> - fi
> >>
> >> ln -sf libatomic.so.1 ${D}${libdir}/libatomic.so
> >> ln -sf libgomp.so.1 ${D}${libdir}/libgomp.so
> >> @@ -22,7 +16,7 @@ do_install_append() {
> >> ln -sf libasan.so.5 ${D}${libdir}/libasan.so
> >> ln -sf libgfortran.so.5 ${D}${libdir}/libgfortran.so
> >>
> >> - cp ${CP_ARGS} ${EXTERNAL_TOOLCHAIN}/lib/gcc/${EAT_TARGET_SYS}/${EAT_VER_GCC}/libgcc* ${D}${libdir}/${EAT_TARGET_SYS}/${EAT_VER_GCC}/
> >> + cp ${CP_ARGS} ${EXTERNAL_TOOLCHAIN}/lib/gcc/${EAT_TARGET_SYS}/${EAT_VER_GCC}/libgcc* ${D}${libdir}/${ORIG_TARGET_SYS}/${EAT_VER_GCC}/
> >> }
> >>
> >> # Below FILES_* overrides are due to TARGET_SYS -> ORIG_TARGET_SYS move in ${libdir}/gcc
> >> --
> >> 2.17.1
>
--
Regards,
Denys Dmytriyenko <denis@denix.org>
PGP: 0x420902729A92C964 - https://denix.org/0x420902729A92C964
Fingerprint: 25FC E4A5 8A72 2F69 1186 6D76 4209 0272 9A92 C964
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-arago][dunfell][PATCH] external-arm-toolchain: Remove EAT_TOOL_CHAIN symlinks
2022-02-22 6:20 [meta-arago][dunfell][PATCH] external-arm-toolchain: Remove EAT_TOOL_CHAIN symlinks devarsht
2022-02-22 6:36 ` Denys Dmytriyenko
@ 2025-08-13 23:25 ` PRC Automation
1 sibling, 0 replies; 5+ messages in thread
From: PRC Automation @ 2025-08-13 23:25 UTC (permalink / raw)
To: devarsht
Cc: meta-arago, nikhil.nd, nsekhar, vigneshr, praneeth, Ryan Eatmon,
a-m1
meta-arago / na / 20220222062027.6390-1-devarsht
PRC Results: FAIL
=========================================================
check-yocto-patches: PASS
=========================================================
Patches
----------------------------------------
All patches passed
=========================================================
apply-yocto-patch: PASS
=========================================================
dunfell
=====================
Summary:
- Patch Series: [meta-arago][dunfell][PATCH] external-arm-toolchain: Remove EAT_TOOL_CHAIN symlinks
- Submitter: From: devarsht@ti.com
- Date: Date: Tue, 22 Feb 2022 11:50:27 +0530
- Num Patches: 1
- Mailing List (public inbox) Commit SHA: 2abcd973f7331a1700a0ce4b481b292bf0521634
Applied to:
- Repository: lcpd-prc-meta-arago
- Base Branch: dunfell-wip
- Commit Author: Randolph Sapp <rs@ti.com>
- Commit Subject: meta-arago-distro: linux-firmware: remove cadence firmware
- Commit SHA: 86d19ced20934c8383c8a39f88d97c72e7e929ee
Patches
----------------------------------------
All patches applied
=========================================================
check-yocto-repo: FAIL
=========================================================
dunfell
=====================
FAIL
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-distro/conf/distro/include/branding-amsdk.inc:27
SRCIPK_SHALLOW_GIT_COMMIT_MESSAGE ="${SRCIPK_GIT_COMMIT_MESSAGE}\\n\\nTo reduce the size of the SDK installer only a portion of the git commit\\nhistory has been preserved. Also links to remote branches and tags do\\nnot exist in this copy of the repository.\\nTo fix this please run the unshallow-repositories.sh\\nscript located in the sdk\'s bin directory\\n\\nThe script may take several minutes but you will then have a full copy of\\nthe git repository including its entire git history.\\n"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-distro/conf/distro/include/branding-processor-sdk.inc:26
SRCIPK_SHALLOW_GIT_COMMIT_MESSAGE ="${SRCIPK_GIT_COMMIT_MESSAGE}\\n\\nTo reduce the size of the SDK installer only a portion of the git commit\\nhistory has been preserved. Also links to remote branches and tags do\\nnot exist in this copy of the repository.\\nTo fix this please run the unshallow-repositories.sh\\nscript located in the sdk\'s bin directory\\n\\nThe script may take several minutes but you will then have a full copy of\\nthe git repository including its entire git history.\\n"
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/dynamic-layers/browser-layer/recipes-browser/chromium/chromium-ozone-wayland/chromium-75.0.3770.80-SIOCGSTAMP.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/dynamic-layers/browser-layer/recipes-browser/chromium/chromium-ozone-wayland/pulse.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/dynamic-layers/browser-layer/recipes-browser/chromium/chromium-ozone-wayland_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-benchmark/arm-benchmarks/arm-benchmarks_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-benchmark/glmark2/glmark2_git.bbappend
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-benchmark/lmbench/lmbench/0001-Makefile-Add-TI-SDK-Modifications.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-benchmark/lmbench/lmbench_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-benchmark/nbench-byte/nbench-byte_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-benchmark/stream/stream_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-bsp/alsa-state/alsa-state.bbappend
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-distro/recipes-bsp/bootstrap-initrd/bootstrap-initrd_1.0.bb:11
BOOSTRAP_IMAGE="tisdk-bootstrap-base-image"
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-bsp/grub/grub%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-bsp/hplib/hplib-mod_git.bbappend
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-bsp/k2-fw-initrd/k2-fw-initrd_0.0.7.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-bsp/netboot-initrd/netboot-initrd-scripts_0.0.1.bb
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-distro/recipes-connectivity/initscript-telnetd/initscript-telnetd.bb:4
PR ="r1"
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-connectivity/initscript-telnetd/initscript-telnetd.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-connectivity/iproute2/iproute2/0013-iplink-hsr-add-support-for-creating-PRP-device-simil.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-connectivity/iproute2/iproute2/0014-iplink-hsr-prp-add-support-for-vlan-tagged-supervisi.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-connectivity/iproute2/iproute2_5.5.0.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-connectivity/linuxptp/linuxptp_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-containers/docker/docker%.bbappend
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/arago-gpl-notice/arago-gpl-notice.bb
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-core/base-files/base-files_%.bbappend
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-core/busybox/busybox/0001-rtcwake-Allow-poweroff-with-rtcwake-command.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-core/busybox/busybox_%.bbappend
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/busybox/softap-udhcpd-config_1.0.bb
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-core/dbus/dbus_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-core/init-ifupdown/init-ifupdown_%.bbappend
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/meta/external-arm-secondary-sdk-toolchain.bb
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-core/meta/external-arm-toolchain.bbappend
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/meta/meta-toolchain-arago-tisdk-server.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/meta/meta-toolchain-arago-tisdk.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/build-essential.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk-server-extra.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-console.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-gst-sdk-target.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-gst.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-qte.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-sysvinit-boot.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk-sdk-host.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity-sdk-target.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-crypto-sdk-host.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-crypto-sdk-target.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-crypto.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-gtk-sdk-target.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-gtk.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix-sdk-host.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-target.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-opencl-sdk-host.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-opencl-sdk-target.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-opencl.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-qte-sdk-host.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-qte.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-recoveryfs.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-toolchain-tisdk-target.bb
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-core/packagegroups/packagegroup-cross-canadian.bbappend
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/packagegroups/ti-opencl.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-core/psplash/psplash/0001-psplash-Add-Arago-custom-color.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-core/psplash/psplash/0003-Updated-configurability.patch.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-core/psplash/psplash/psplash-18bpp.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-core/psplash/psplash_git.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-core/sysvinit/sysvinit_%.bbappend
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-core/thermal-init/thermal-init.bb
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-core/udev/eudev_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-devtools/cmake/cmake_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-devtools/opkg-utils/opkg-utils_%.bbappend
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-devtools/php/php/0001-php-native-Fix-host-contamination-issue.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-devtools/php/php_%.bbappend
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-devtools/pm-qa/pm-qa/0001-Return-non-zero-value-on-test-failure.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-devtools/pm-qa/pm-qa/0002-cpuidle-Avoid-relative-paths.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-devtools/pm-qa/pm-qa_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-devtools/python/python3_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-devtools/strace/strace_5.5.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-devtools/swig/swig_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-extended/at/at_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-extended/bash/bash_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-extended/bc/bc_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-extended/irqbalance/irqbalance_git.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-extended/shadow/shadow-securetty_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-graphics/cairo/cairo_%.bbappend
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-graphics/drm/libdrm/0001-Add-option-to-run-a-test-indefinitely.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-graphics/drm/libdrm/0001-libsync-add-support-for-pre-v4.7-kernels.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-graphics/drm/libdrm/0002-Add-sync_fence_info-and-sync_pt_info.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-graphics/drm/libdrm_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-graphics/freetype/freetype_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-graphics/kmscube/kmscube_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-graphics/tslib/tslib_%.bbappend
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-graphics/wayland/wayland-ivi-extension/0001-layer-add-surfaces-Add-screenId-as-an-argument.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-graphics/wayland/wayland-ivi-extension/0002-layer-add-surfaces-surface-layer-management.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-graphics/wayland/wayland-ivi-extension/force-type-conversion.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-graphics/wayland/weston/0001-Add-soc-performance-monitor-utilites.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-graphics/wayland/weston/0001-backend-drm-Select-plane-based-on-current-attached-C.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-graphics/wayland/weston/0002-weston-Allow-visual_id-to-be-0.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-graphics/wayland/weston/0003-weston-Fix-virtual-keyboard-display-issue-for-QT5-ap.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-graphics/wayland/weston/0004-weston-Fix-touch-screen-crash-issue.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-graphics/wayland/weston-init.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-graphics/wayland/weston_8.0.0.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-kernel/cryptodev/cryptodev-module_%.bbappend
ERROR: Incorrect capitialization for Upstream-Status: Upstream-status (UPSTREAM-STATUS-2)
meta-arago-distro/recipes-kernel/cryptodev/files/0001-remove-VLA-usage-from-authenc.c.patch:10
Upstream-status: Backport [e8263d2d682b06a1ee7bcb2791a7cf27a4af38e0]
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-kernel/kexec/kexec-tools_%.bbappend
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-kernel/linux/linux-arago.bb
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-kernel/linux-firmware/linux-firmware_%.bbappend
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-kernel/linux-libc-headers/linux-libc-headers_5.10.bb
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-multimedia/ffmpeg/ffmpeg_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.16.%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.16.%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-multimedia/libtiff/tiff_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-protocols/net-snmp/net-snmp_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-qt/examples/qtwebbrowser_1.0.bbappend
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-qt/qt5/qtbase/0001-calculator-Add-exit-button-for-non-window-environmen.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-qt/qt5/qtbase/0001-deform-Fix-how-controls-are-shown.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-qt/qt5/qtbase/0001-qtbase-plugins-platforms-eglfs_kms-fix-compiler-erro.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-qt/qt5/qtbase/0002-animatedtiles-Add-exit-button-for-non-window-environ.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-qt/qt5/qtbase/0002-deform-disable-opengl-button.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-qt/qt5/qtbase_%.bbappend
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-qt/qt5/qtdeclarative/0001-touchinteraction.qml-Add-exit-button.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-qt/qt5/qtdeclarative_git.bbappend
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-qt/qt5/qtwayland/0001-plugins-decorations-bradient-display-window-icon-onl.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-qt/qt5/qtwayland_git.bbappend
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-qt/qt5/qtwebkit/GraphicsContext3DQt.cpp.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-qt/qt5/qtwebkit/GraphicsSurfaceGL_NoX.cpp.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-distro/recipes-qt/qt5/qtwebkit/qttestbrowser.cpp.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-qt/qt5/qtwebkit_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-support/cifs/cifs-utils_6.10.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-support/gnutls/gnutls_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-support/libnl/libnl_3.5.0.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-support/opencv/opencv_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-support/rng-tools/rng-tools_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-support/strongswan/strongswan_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-support/syslog-ng/syslog-ng_%.bbappend
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-distro/recipes-tisdk/ocl-rtos/opencl-examples-rtos_git.bbappend
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-tisdk/oe-layersetup/oe-layersetup.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-tisdk/parse-ip/parse-ip.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-tisdk/tisdk-install/tisdk-install_1.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-tisdk/tisdk-readme/tisdk-readme.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-tisdk/tisdk-uenv/tisdk-uenv.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-distro/recipes-tisdk/unshallow-repositories/unshallow-repositories_1.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-apps/barcode-demo/barcode-roi_git.bb
ERROR: SUMMARY cannot be longer than 72 characters. (SUMMARY-2)
meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb:1
SUMMARY = "HMI demo for electronic vehicle charging station (EVSE) using QT QWidget tools"
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-apps/image-gallery/image-gallery_git.bb
ERROR: SUMMARY cannot be longer than 72 characters. (SUMMARY-2)
meta-arago-extras/recipes-apps/pdm-anomaly-detection/pdm-anomaly-detection_git.bb:1
SUMMARY = "Predictive maintenance demo for anomaly detection using Recurrent Neural Network (RNN)"
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-apps/thermostat-demo/qt-tstat/0002-Replace-QtGui-with-QtWidgets-per-Qt5-migration-guide.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-apps/thermostat-demo/qt-tstat/0003-Replace-fromAscii-toAscii-with-fromLatin1-toLatin1-p.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-apps/thermostat-demo/qt-tstat_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-apps/video-analytics-demo/qt-opencv-opencl-opengl-multithreaded_git.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-benchmark/iperf/iperf-2.0.5/0001-fix-out-of-tree-config.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-benchmark/iperf/iperf-2.0.5/0001-headers.h-remove-math.h-include-that-breaks-aarch64.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-benchmark/iperf/iperf-2.0.5/0002-fix-bool-size-m4.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-benchmark/iperf/iperf-2.0.5/iperf-2.0.5_ManPage.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-benchmark/stream/stream_5.10.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-bsp/switch-config/switch-config_git.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-connectivity/hostap/hostap-daemon-wl18xx/0001-hostapd-change-conf-file-for-better-oob-startup.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-connectivity/hostap/hostap-daemon-wl18xx.bb
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-connectivity/hostap/hostap.inc:17
INITSCRIPT_NAME="hostapd"
ERROR: Incorrect capitialization for Upstream-Status: Upstream-status (UPSTREAM-STATUS-2)
meta-arago-extras/recipes-connectivity/open62541/open62541/0001-CMakeLists-do-not-install-git-directories.patch:8
Upstream-status: Pending
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-connectivity/openntpd/openntpd_3.9p1.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-connectivity/vtun/vtun/08-gcc5-inline.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-connectivity/vtun/vtun/Add_search_path.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-connectivity/vtun/vtun/remove_strip.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-connectivity/vtun/vtun_3.0.3.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-connectivity/wpa-supplicant/wpa-supplicant/crypto_openssl.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-extras/recipes-core/llvm/llvm-common.bbappend
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-core/llvm/ti-llvm3.6/0001-configure-Do-not-check-build-executable-extension.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-core/matrix/matrix-gui/0001-execute_command-Stop-matrix-when-running-a-GUI-demo.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-core/matrix/matrix-gui/0001-execute_command-workaround-for-GUI-apps-with-weston.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-analytics-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-apps-images_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-armbenchmarks-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-camera-loopback_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-clocks_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-display-control_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-ethernet-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-generic-pm_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-helper-scripts.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-machinevision-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-mc-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-multimedia-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-opencl-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-oprofile-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-pm-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-pru-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-qt4-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-qt5-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-settings-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-tidl-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-touch-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-usb-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-utility-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-v4l2-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-video-analytics-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui-wifi-demos_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/matrix-lighttpd-config.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/meta/external-arm-sdk-toolchain.bb
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-extras/recipes-core/meta/external-arm-toolchain.bbappend
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/meta/meta-toolchain-arago-qte.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-extras/recipes-core/meta/nativesdk-buildtools-perl-dummy.bbappend
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/packagegroups/nativesdk-packagegroup-arago-qte-toolchain-host.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/packagegroups/packagegroup-arago-qte-toolchain-target.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/packagegroups/packagegroup-arago-standalone-sdk-target.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/ti-pru-sw-app-loader/ti-pru-sw-app-loader_1.00.00.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/ti-pru-sw-edma-library/ti-pru-sw-edma-library_1.00.00.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-core/ti-pru-sw-examples/ti-pru-sw-examples_1.00.00.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-devtools/cmake/extra-cmake-modules/0001-Search-within-OE_QMAKE_PATH_EXTERNAL_HOST_BINS-for-q.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-devtools/cmake/extra-cmake-modules.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-devtools/cpuloadgen/cpuloadgen_git.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-devtools/dt/dt/no_aio.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-devtools/dt/dt_17.07.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-devtools/flash-utility/flash-utility_1.6.0.0.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-devtools/input-utils/input-utils/0001-autoconf-fix-for-cross-compilation-for-ARM.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-devtools/input-utils/input-utils/fix-ftbfs-echo.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-devtools/input-utils/input-utils_1.0.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-devtools/ion/ion-tests/0001-CMakeLists.txt-disable-phys-addr-for-now.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-extras/recipes-devtools/mtd/mtd-utils_git.bbappend
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-devtools/pinmux-utility/pinmux-utility_1.0.1076.3.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-devtools/pinmux-utility/pinmux-utility_2.5.2.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-devtools/util-scripts/glsdk-util-scripts.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-graphics/devil/files/Remove-ILUT-dependency.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-graphics/glfw/glfw/0001-HACK-CMakeList.txt-remove-check-for-Wayland-Egl-prov.patch
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-graphics/glsdk-example-apps/glsdk-example-apps.bb:17
SRCREV="52466430609c402a9f1c0667ccf727d096336d0d"
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-graphics/img-pvr-sdk/img-pvr-sdk_3.3.2.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-graphics/omapdrmtest/files/0001-Makefile.am-lblah-flags-belong-to-LDADD-not-LDFLAGS.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-graphics/ti-gc320-tests/files/0001-makefile.linux.def-relax-assignment-of-CC-and-other-.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-graphics/ti-gc320-tests/ti-gc320-tests_5.0.11.p7.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-graphics/tslib/ts-calibrate-init_1.0.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-graphics/wayland/wayland-protocols/0001-wayland-drm-Add-wayland-drm-protocol-to-stable.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-graphics/wayland/wayland-protocols/0002-wayland-drm-Update-to-version-2.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-extras/recipes-graphics/wayland/wayland-protocols_%.bbappend
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-kernel/recovery-kernel/recovery-kernel_1.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-multimedia/av-examples/av-examples_1.0.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-multimedia/demo-image-proc/demo-image-proc_git.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-dsp66/0001-Makefile-correct-use-of-CPP-CXX-and-other-standard-v.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-dsp66/0001-configure.ac-stop-using-export-symbols-regex.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-dsp66_git.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati/0001-gstducati-configure.ac-stop-using-export-symbols-reg.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-hevc/0001-configure.ac-stop-using-export-symbols-regex.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe/0001-gstvpe-configure.ac-stop-using-export-symbols-regex.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0001-gstdrmallocator-Add-DRM-allocator-support.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0001-waylandsink-Add-mouse-drag-and-drop-support.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0002-parsers-bug-fixes-on-parsers.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0003-kmssink-Add-omapdrm-and-tidss-in-the-list-of-drivers.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0004-waylandsink-Add-drm-support-in-waylandsink.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0005-waylandsink-Add-input-device-support.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.%.bbappend
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2src-Check-for-drm-memory-support-in-try_import.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2src-Increase-minimum-num-buffers-by-3.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0002-v4l2src-Use-generic-dmabuf-import-in-v4l2src.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.16.%.bbappend
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-support/crash-recovery/crash-recovery.bb:6
PR ="r1"
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-support/crash-recovery/crash-recovery.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-support/devmem2/devmem2/0001-devmem2-support-different-page-sizes-at-run-time.patch
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-arago-extras/recipes-support/devmem2/devmem2.bbappend
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-support/ipsecmgr/ipsecmgr.inc:2
BRANCH="master"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-support/libnl-xfrm/libnl-xfrm_git.bb:12
BRANCH="hawking_dev"
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-support/libnl-xfrm/libnl-xfrm_git.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-support/loki/libloki/0001-include-loki-Threads.h-return-statement-with-a-value.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-support/loki/libloki/0002-test-Function-FunctionTest.cpp-reference-to-bad_func.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-support/makedumpfile/makedumpfile_1.5.0.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-support/tensorflow-lite/files/apply-modification-for-tflite-1.15-to-eigen.patch
ERROR: SUMMARY cannot be longer than 72 characters. (SUMMARY-2)
meta-arago-extras/recipes-support/tensorflow-lite/tensorflow-lite-demo_git.bb:1
SUMMARY = "Tensorflow Lite Demo with input and display via OpenCV and TIDL acceleration for AM5"
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-support/tensorflow-lite/tensorflow-lite_1.15.bb
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/fftlib/fftlib_git.bb:63
XDCPATH.="${XDCCGROOT}/include;"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/fftlib/fftlib_git.bb:64
XDCPATH.="${XDAIS_INSTALL_DIR}/packages;"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/fftlib/fftlib_git.bb:65
XDCPATH.="${XDC_INSTALL_DIR}/packages;"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/fftlib/fftlib_git.bb:66
XDCPATH.="${FFTLIB_INSTALL_DIR};"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/fftlib/fftlib_git.bb:67
XDCPATH.="${FC_INSTALL_DIR}/packages;"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/fftlib/fftlib_git.bb:68
XDCPATH.="${OMP_INSTALL_DIR}/packages;"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/fftlib/fftlib_git.bb:69
XDCPATH.="${PDK_INSTALL_DIR}/packages;"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/fftlib/fftlib_git.bb:70
XDCPATH.="${BIOS_INSTALL_DIR}/packages;"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/fftlib/fftlib_git.bb:71
XDCPATH.="${EDMA3_LLD_INSTALL_DIR}/packages;"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/fftlib/fftlib_git.bb:72
XDCPATH.="${DSPLIB_C66_INSTALL_DIR}/packages;"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/fftlib/fftlib_git.bb:73
XDCPATH.="${IPC_INSTALL_DIR}/packages;"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/fftlib/fftlib_git.bb:74
XDCPATH.="${LIBARCH_INSTALL_DIR}/packages;"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/fftlib/fftlib_git.bb:75
XDCPATH.="${TI_OCL_INSTALL_DIR};"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/fftlib/fftlib_git.bb:77
XDCPATH.="${FFTLIB_ROOT}"
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-ti/libarch/libarch-examples_git.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-ti/libarch/libarch_git.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-ti/linalg/files/0001-Makefile-fix-toolchain-variables.patch
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-ti/linalg/files/0001-Makefile-pass-PARALLEL_MAKE-variable-to-overwrite-j8.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-ti/linalg/linalg-examples_git.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-ti/linalg/linalg_git.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-ti/netapi/netapi-test_git.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-ti/netapi/netapi_git.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-ti/ocl/clocl_git.bb
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-ti/ocl/ocl/0001-float_compute-matmpy-Link-with-libdl-to-resolve-link.patch
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-ti/ocl/ocl-gl-headers_git.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-ti/ocl/opencl-monitor-ipu_git.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-ti/ocl/opencl-monitor_git.bb
ERROR: You must have a SUMMARY = "...". (SUMMARY-1)
meta-arago-extras/recipes-ti/ocl/opencl_git.bb
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb:36
CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb:37
CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
ERROR: SUMMARY cannot be longer than 72 characters. (SUMMARY-2)
meta-arago-extras/recipes-ti/tidl-utils/tidl-import_git.bb:1
SUMMARY = "TIDL import tool for conversion of Caffe and TF models into TI custom network format"
ERROR: Missing Upstream-Status in patch file. (UPSTREAM-STATUS-1)
meta-arago-extras/recipes-ti/tiovx/files/0001-Fix-paths-for-Yocto-build-and-add-RTOS-build-var.patch
ERROR: SUMMARY cannot be longer than 72 characters. (SUMMARY-2)
meta-arago-extras/recipes-ti/tiovx/tiovx-app-host.bb:1
SUMMARY = "TI OpenVX HOST (Linux A15) conformance verification application, Khronos tutorial example, and Host side IPC implementation"
ERROR: SUMMARY cannot be longer than 72 characters. (SUMMARY-2)
meta-arago-extras/recipes-ti/tiovx/tiovx-sys-iface.bb:1
SUMMARY = "TI OpenVX interface header files between TIOVX library and HOST, DSP IPC side implementation"
ERROR: You need at least one space around the = for a variable assignment. (ASSIGNMENT-1)
meta-arago-extras/recipes-ti/tiovx/tiovx-sys.inc:3
BRANCH="master"
Code Summary
============
ASSIGNMENT-1
-------------------------------------------
Variable assignments require whitespace around the assignment
operator.
FOO = "1" not FOO="1"
BAR += "1" not BAR+="1"
GUARD-1
-------------------------------------------
To maintain Yocto Compatibility, we need to add a guard around the
.bbappend files for upstream recipes. In the event that a layer
is simply included in a build, it should not make changes to the
recipe in a way that breaks the upstream recipe from doing what it
sets out to do. In order for our .bbappends to actually make
changes, we need to gate them behind building something either the
Arago distribution or building a TI machine.
SUMMARY-1
-------------------------------------------
All recipes require a SUMMARY.
SUMMARY-2
-------------------------------------------
The max length of the SUMMARY must be no more than 72 characters.
UPSTREAM-STATUS-1
-------------------------------------------
A recipe patch file is missing the required Upstream-Status.
UPSTREAM-STATUS-2
-------------------------------------------
The Upstream-Status is not correctly capitalized.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-08-13 23:25 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-22 6:20 [meta-arago][dunfell][PATCH] external-arm-toolchain: Remove EAT_TOOL_CHAIN symlinks devarsht
2022-02-22 6:36 ` Denys Dmytriyenko
2022-02-22 7:53 ` Devarsh Thakkar
2022-02-23 1:07 ` Denys Dmytriyenko
2025-08-13 23:25 ` PRC Automation
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.