-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
honister: Fix override syntax HYP-27440
The recipe override syntax has changed with Yocto 3.4 honister. Signed-off-by: Mario Schuknecht <[email protected]>
- Loading branch information
Mario Schuknecht
committed
Nov 17, 2021
1 parent
ab162b3
commit efa2af9
Showing
55 changed files
with
173 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | ||
SRC_URI_append = " file://0001-test-Makefile-Add-include-path-to-CC-command.patch " | ||
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" | ||
SRC_URI:append = " file://0001-test-Makefile-Add-include-path-to-CC-command.patch " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | ||
FILESEXTRAPATHS:prepend := "${THISDIR}/files:" | ||
|
||
SRC_URI_append = " file://0001-HYP-13714-increase-vpu-instances-from-32-to-64.patch " | ||
SRC_URI:append = " file://0001-HYP-13714-increase-vpu-instances-from-32-to-64.patch " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# look for files in the layer first | ||
FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | ||
FILESEXTRAPATHS:prepend := "${THISDIR}/files:" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
# look for files in the layer first | ||
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | ||
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" | ||
|
||
SRC_URI += " file://99-ifupdown.conf \ | ||
file://ethconfig \ | ||
" | ||
|
||
do_install_append() { | ||
do_install:append() { | ||
# install sysctl configurations | ||
install -d ${D}${sysconfdir}/sysctl.d | ||
install -m 0644 ${S}/99-ifupdown.conf ${D}${sysconfdir}/sysctl.d | ||
install -d ${D}${sysconfdir}/network/if-up.d | ||
install -m 0755 ${S}/ethconfig ${D}${sysconfdir}/network/if-up.d | ||
} | ||
|
||
pkg_postinst_ontarget_${PN}() { | ||
pkg_postinst_ontarget:${PN}() { | ||
update-rc.d networking defaults | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SYSTEMD_DISABLED_SYSV_SERVICES_remove = "networking" | ||
SYSTEMD_DISABLED_SYSV_SERVICES:remove = "networking" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | ||
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | ||
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" | ||
|
||
PACKAGECONFIG_remove = "networkd" | ||
PACKAGECONFIG:remove = "networkd" | ||
|
||
# Enable kmod package configuration | ||
# A recipe append from meta-angstrom removes kmod configuration. | ||
# The builtin kmod is mandatory. Otherwise kernel modules are not | ||
# loaded and it comes to error message: | ||
# Invalid rule /lib/udev/rules.d/80-drivers.rules:5: RUN{builtin}: 'kmod load $env{MODALIAS}' unknown | ||
PACKAGECONFIG_append = " kmod " | ||
PACKAGECONFIG:append = " kmod " | ||
|
||
SRC_URI_append = " \ | ||
SRC_URI:append = " \ | ||
file://0001-systemd-automatically-start-networking.service-HYP-1.patch \ | ||
file://0001-udev-wait-for-ldconfig.service-and-opkg-configure.se.patch \ | ||
file://systemd-udev-service-remove-MountFlags.patch \ | ||
" | ||
|
||
SRC_URI_append_himx0294 = " \ | ||
SRC_URI:append:himx0294 = " \ | ||
file://0001-systemd-halt.service-always-poweroff-on-halt.patch \ | ||
file://0001-systemd-reboot.service-always-poweroff-on-reboot.patch \ | ||
" | ||
|
||
SRC_URI_append_hinat = " \ | ||
SRC_URI:append:hinat = " \ | ||
file://0001-systemd-halt.service-always-poweroff-on-halt.patch \ | ||
file://0001-systemd-reboot.service-always-poweroff-on-reboot.patch \ | ||
" | ||
SRC_URI_append_himx0438 = " \ | ||
SRC_URI:append:himx0438 = " \ | ||
file://0001-systemd-halt.service-always-reboot-on-halt.patch \ | ||
" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | ||
FILESEXTRAPATHS:prepend := "${THISDIR}/files:" | ||
|
||
SRC_URI_append = " file://0001-mke2fs.conf-define-a-short-proceed_delay-of-1-sec-HY.patch \ | ||
SRC_URI:append = " file://0001-mke2fs.conf-define-a-short-proceed_delay-of-1-sec-HY.patch \ | ||
file://0001-ext4-64bit-feature-not-activated-by-default.patch \ | ||
" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | ||
FILESEXTRAPATHS:prepend := "${THISDIR}/files:" | ||
|
||
SRC_URI_append = " file://options-ssr-read-and-cmd56.patch " | ||
SRC_URI:append = " file://options-ssr-read-and-cmd56.patch " | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
recipes-graphics/imx-gpu-viv/imx-gpu-viv_6.4.3.p2.0-aarch64.bbap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
|
||
REQUIRED_DISTRO_FEATURES_remove_mx8 = "wayland" | ||
REQUIRED_DISTRO_FEATURES:remove:mx8 = "wayland" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.