-
Notifications
You must be signed in to change notification settings - Fork 259
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sync master with scarthgap (backports) #1909
Merged
otavio
merged 30 commits into
Freescale:scarthgap
from
hiagofranco:sync_master_with_scarthgap
Aug 28, 2024
Merged
Changes from 4 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
250a269
udev-rules-imx: Use 'install -D'
otavio 86e931c
fmc: update patch format
limeng-linux fbff9dd
imx-alsa-plugins: Update 6.6.3-1.0.0 to 6.6.23-2.0.0
hiagofranco 94c5a37
recipes-bsp: introduce imx-oei recipe
hiagofranco 313b977
imx-mkimage: imx-boot: Update 6.6.3-1.0.0 to 6.6.23-2.0.0
hiagofranco 02d4144
imx-lib: Update 6.6.3-1.0.0 to 6.6.23-2.0.0
hiagofranco a1a511c
kernel-module-nxp-wlan: Update 6.6.3-1.0.0 to 6.6.23-2.0.0
hiagofranco 5272f30
firmware-nxp-wifi: Update 6.6.3-1.0.0 to 6.6.23-2.0.0
hiagofranco 868ab6b
imx-seco: Update 6.6.3-1.0.0 to 6.6.23-2.0.0
hiagofranco 69f27f9
recipes-multimedia: imx-*: Update 6.6.3-1.0.0 to 6.6.23-2.0.0
hiagofranco 7a03a4b
gstreamer: Update 6.6.3-1.0.0 to 6.6.23-2.0.0
hiagofranco 86cd9b3
imx-opencl-converter: Update 6.6.3-1.0.0 to 6.6.23-2.0.0
hiagofranco dcf5ab3
openembedded-layer: Remove luajit abbappend
tq-steina 3a7c137
imx-dpu-g2d: Upgrade imxdpu-g2d from 2.1.12 to 2.1.14
valijec 26cd1fd
imx-gpu-viv: Upgrade from 6.4.11.p2.4-* to 6.4.11.p2.6-*
valijec ca7fa4b
mesa-demos: Add patch for egl clear backgrounds black color
valijec d3b0de7
weston: Upgrade from 12.0.3.imx to 12.0.4.imx
valijec 19b0b25
wayland-protocols: Replace hardcoded SRC_URI with WAYLAND_PROTOCOLS_S…
valijec 045b3d3
libimxvpuapi2: Bump revision to 8639837a246f
hiagofranco aa613b5
u-boot-imx: Update to lf-6.6.23-2.0.0
thochstein 02063c7
linux-imx*: Upgrade v6.6.3-1.0.0 -> v6.6.23-2.0.0
thochstein e9c972a
imx-boot: inherit from uboot-config rather than uboot-sign
rborn-tx af63551
jailhouse-imx: Update 6.6.3-1.0.0 to 6.6.23-2.0.0
hiagofranco 65b9fd2
imx-alsa-plugins_git: fix buildpath error
MaxKrummenacher cbb50af
imx-base: Bump weston P_V to 12.0.4.imx
kraj 4d64dde
imx-boot: Fix 8M multi-config build problems
thochstein 114a593
imx-boot: Update to latest from NXP 6.6.23-2.0.0
thochstein 1518b35
mcore-demos: Update 6.6.3-1.0.0 to 6.6.23-2.0.0
hiagofranco 2d85013
firmware-ele-imx: Bump to version 0.1.2
hiagofranco 572d90d
optee: Upgrade optee recipes from 4.0.0.imx to 4.2.0.imx
valijec File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
From 329c8ab2770ab34d887296a35585fac53c8bedb7 Mon Sep 17 00:00:00 2001 | ||
From 018249d180705657efbecdce3736c9a415412762 Mon Sep 17 00:00:00 2001 | ||
From: Meng Li <[email protected]> | ||
Date: Wed, 5 Jun 2024 18:54:22 +0800 | ||
Subject: [PATCH] FMCCFGReader: improve parameter definition of function | ||
Date: Tue, 9 Jul 2024 14:35:06 +0800 | ||
Subject: [PATCH] FMCCFGReader: improve parameter definition of function | ||
errorFuncHandler | ||
|
||
When building fmc package, there is below error: | ||
|
@@ -30,27 +30,27 @@ index a1a87a4..c11742c 100644 | |
--- a/source/FMCGenericError.cpp | ||
+++ b/source/FMCGenericError.cpp | ||
@@ -33,7 +33,7 @@ | ||
#include "FMCUtils.h" | ||
#include "logger.hpp" | ||
|
||
-void errorFuncHandler( void * ctx, xmlErrorPtr error ) | ||
+void errorFuncHandler( void * ctx, const xmlError *error ) | ||
{ | ||
char *filestr = (char*)""; | ||
char *msgstr = (char*)""; | ||
#include "FMCUtils.h" | ||
#include "logger.hpp" | ||
-void errorFuncHandler( void * ctx, xmlErrorPtr error ) | ||
+void errorFuncHandler( void * ctx, const xmlError *error ) | ||
{ | ||
char *filestr = (char*)""; | ||
char *msgstr = (char*)""; | ||
diff --git a/source/FMCGenericError.h b/source/FMCGenericError.h | ||
index 504a81b..61ab6c1 100644 | ||
--- a/source/FMCGenericError.h | ||
+++ b/source/FMCGenericError.h | ||
@@ -35,7 +35,7 @@ | ||
|
||
const int NO_LINE = -1; | ||
|
||
-void errorFuncHandler( void * ctx, xmlErrorPtr error ); | ||
+void errorFuncHandler( void * ctx, const xmlError *error ); | ||
|
||
|
||
class CGenericError { | ||
const int NO_LINE = -1; | ||
-void errorFuncHandler( void * ctx, xmlErrorPtr error ); | ||
+void errorFuncHandler( void * ctx, const xmlError *error ); | ||
class CGenericError { | ||
-- | ||
2.34.1 | ||
|
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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
SUMMARY = "i.MX Optional Execution Image" | ||
|
||
LICENSE = "GPL-2.0-only" | ||
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=59530bdf33659b29e73d4adb9f9f6552" | ||
|
||
INHIBIT_DEFAULT_DEPS = "1" | ||
DEPENDS = "gcc-arm-none-eabi-native" | ||
|
||
SRC_URI = "${IMX_OEI_SRC};branch=${SRCBRANCH}" | ||
IMX_OEI_SRC ?= "git://github.com/nxp-imx/imx-oei.git;protocol=https" | ||
SRCBRANCH = "master" | ||
SRCREV = "1a572a640ef8d6883e8ca39744cd6d2d5dbed678" | ||
|
||
S = "${WORKDIR}/git" | ||
|
||
inherit deploy | ||
|
||
OEI_CONFIGS ?= "UNDEFINED" | ||
OEI_CORE ?= "UNDEFINED" | ||
OEI_SOC ?= "UNDEFINED" | ||
OEI_BOARD ?= "UNDEFINED" | ||
|
||
LDFLAGS[unexport] = "1" | ||
|
||
EXTRA_OEMAKE = "\ | ||
board=${OEI_BOARD} \ | ||
DEBUG=1 \ | ||
OEI_CROSS_COMPILE=arm-none-eabi-" | ||
|
||
do_configure() { | ||
for oei_config in ${OEI_CONFIGS}; do | ||
oe_runmake clean oei=$oei_config | ||
done | ||
} | ||
|
||
do_compile() { | ||
for oei_config in ${OEI_CONFIGS}; do | ||
oe_runmake oei=$oei_config | ||
done | ||
} | ||
|
||
do_install() { | ||
install -d ${D}/firmware | ||
for oei_config in ${OEI_CONFIGS}; do | ||
install -m 0644 ${B}/build/${OEI_BOARD}/$oei_config/oei-*.bin ${D}/firmware | ||
done | ||
} | ||
|
||
addtask deploy after do_install | ||
do_deploy() { | ||
cp -rf ${D}/firmware/* ${DEPLOYDIR}/ | ||
} | ||
|
||
FILES:${PN} = "/firmware" | ||
SYSROOT_DIRS += "/firmware" | ||
|
||
COMPATIBLE_MACHINE = "(mx95-generic-bsp)" |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The recipe does depend on
meta-arm
, should it be indynamic-layers
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, but this must be fixed in master first.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this about just moving the imx-oei recipe to
meta-freescale/dynamic-layers/meta-arm
? If so, I can do it on master and then cherry-pick the commit here, otherwise we could proceed with the PR and solve it later, whatever you guys think is the best.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should use the directory with the collection's name provided by the layer. Please prepare a pull request for
master
, and then we will do the backport automatically using the Github Actions.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#1910 please let me know if this is correct