Skip to content

Commit

Permalink
Merge pull request #623 from YoeDistro/kraj/master
Browse files Browse the repository at this point in the history
Fix weston launch on BBB and update layers
  • Loading branch information
cbrake authored Nov 29, 2021
2 parents 13faf21 + c7a67b4 commit dca5e12
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sources/meta-openembedded
Submodule meta-openembedded updated 48 files
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-aarch64.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-aarch64_be.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-arm.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-armeb.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-i586.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-i686.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-mips.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-mips64.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-mips64el.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-mipsel.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-powerpc.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-powerpc64.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-powerpc64le.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-riscv32.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-riscv64.txt
+5 −0 meta-networking/files/waf-cross-answers/cross-answers-x86_64.txt
+63 −0 meta-networking/recipes-connectivity/samba/samba/0001-Fix-pyext_PATTERN-for-cross-compilation.patch
+0 −39 meta-networking/recipes-connectivity/samba/samba/0006-samba-defeat-iconv-test.patch
+0 −39 ...networking/recipes-connectivity/samba/samba/0007-wscript_configure_system_gnutls-disable-check-gnutls.patch
+0 −79 meta-networking/recipes-connectivity/samba/samba/0008-source3-wscript-disable-check-fcntl-F_OWNER_EX.patch
+0 −92 meta-networking/recipes-connectivity/samba/samba/0009-source3-wscript-disable-check-fcntl-RW_HINTS.patch
+2 −5 meta-networking/recipes-connectivity/samba/samba_4.14.10.bb
+1 −1 meta-networking/recipes-daemons/ippool/ippool_1.3.bb
+59 −0 meta-networking/recipes-support/libldb/libldb/0001-Fix-pyext_PATTERN-for-cross-compilation.patch
+1 −0 meta-networking/recipes-support/libldb/libldb_2.3.2.bb
+57 −0 meta-networking/recipes-support/libtalloc/libtalloc/0001-Fix-pyext_PATTERN-for-cross-compilation.patch
+1 −0 meta-networking/recipes-support/libtalloc/libtalloc_2.3.3.bb
+42 −0 meta-networking/recipes-support/libtdb/libtdb/0001-Fix-pyext_PATTERN-for-cross-compilation.patch
+1 −6 meta-networking/recipes-support/libtdb/libtdb_1.4.3.bb
+42 −0 meta-networking/recipes-support/libtevent/libtevent/0001-Fix-pyext_PATTERN-for-cross-compilation.patch
+1 −5 meta-networking/recipes-support/libtevent/libtevent_0.10.2.bb
+1 −1 meta-oe/recipes-bsp/fwupd/fwupd_1.7.2.bb
+1 −0 meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb
+22 −0 meta-oe/recipes-core/pim435/pim435_git.bb
+0 −32 ...ecipes-devtools/python/python-rfc3986-validator/0001-setup.py-move-pytest-runner-to-test_requirements.patch
+0 −19 meta-python/recipes-devtools/python/python3-idna_3.3.bb
+0 −3 meta-python/recipes-devtools/python/python3-jsonpointer/run-ptest
+0 −26 meta-python/recipes-devtools/python/python3-jsonpointer_2.2.bb
+0 −48 meta-python/recipes-devtools/python/python3-jsonschema_3.2.0.bb
+0 −14 meta-python/recipes-devtools/python/python3-pyrsistent_0.18.0.bb
+0 −20 meta-python/recipes-devtools/python/python3-rfc3339-validator_0.1.4.bb
+0 −23 meta-python/recipes-devtools/python/python3-rfc3986-validator_0.1.1.bb
+0 −10 meta-python/recipes-devtools/python/python3-rfc3987_1.3.8.bb
+0 −23 meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.16.bb
+0 −10 meta-python/recipes-devtools/python/python3-strict-rfc3339_0.7.bb
+0 −12 meta-python/recipes-devtools/python/python3-vcversioner_2.16.0.0.bb
+0 −3 meta-python/recipes-devtools/python/python3-webcolors/run-ptest
+0 −27 meta-python/recipes-devtools/python/python3-webcolors_1.11.1.bb
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"

do_configure:append:ti33x() {
sed -i '/\[core\]/a gbm-format=rgb565' ${WORKDIR}/weston.ini
do_install:append:ti33x() {
sed -i '/\[core\]/a gbm-format=rgb565' ${D}${sysconfdir}/xdg/weston/weston.ini
if [ -e ${D}/${sysconfdir}/init.d/weston ]; then
sed -i 's#weston-start --#weston-start -- --continue-without-input#' ${D}/${sysconfdir}/init.d/weston
fi
if [ -e ${D}${systemd_system_unitdir}/weston.service ]; then
sed -i 's#ExecStart=/usr/bin/weston#ExecStart=/usr/bin/weston --continue-without-input#' ${D}${systemd_system_unitdir}/weston.service
fi
}

0 comments on commit dca5e12

Please sign in to comment.