diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2024-11-06 08:47:27 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-06 08:47:27 -0300 |
commit | 47910a9bf558fb34e7e14b0f13dc5bca2ef0c2f4 (patch) | |
tree | 65d8e1b64b90077aa371cb2d777dc62b7549ea2e | |
parent | 46b8749ccef0b50549af6acc51391991946671bd (diff) | |
parent | 9b609f049c87edc78cdc50e0afb9ef70266f2f23 (diff) | |
download | meta-freescale-47910a9bf558fb34e7e14b0f13dc5bca2ef0c2f4.tar.gz |
Merge pull request #2021 from Freescale/backport-2020-to-scarthgap
[Backport scarthgap] Update qoriq components base on lf-6.6.36-2.1.0
-rw-r--r-- | dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc/0001-FMCCFGReader-improve-parameter-definition-of-functio.patch | 56 | ||||
-rw-r--r-- | dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb | 5 | ||||
-rw-r--r-- | recipes-bsp/uefi/uefi_git.bb | 2 | ||||
-rw-r--r-- | recipes-dpaa2/gpp-aioptool/gpp-aioptool_git.bb | 4 | ||||
-rw-r--r-- | recipes-dpaa2/management-complex/management-complex_10.39.0.bb (renamed from recipes-dpaa2/management-complex/management-complex_10.37.0.bb) | 5 | ||||
-rw-r--r-- | recipes-dpaa2/restool/restool_git.bb | 4 | ||||
-rw-r--r-- | recipes-dpaa2/spc/spc_git.bb | 2 |
7 files changed, 10 insertions, 68 deletions
diff --git a/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc/0001-FMCCFGReader-improve-parameter-definition-of-functio.patch b/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc/0001-FMCCFGReader-improve-parameter-definition-of-functio.patch deleted file mode 100644 index 5769d555..00000000 --- a/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc/0001-FMCCFGReader-improve-parameter-definition-of-functio.patch +++ /dev/null | |||
@@ -1,56 +0,0 @@ | |||
1 | From 018249d180705657efbecdce3736c9a415412762 Mon Sep 17 00:00:00 2001 | ||
2 | From: Meng Li <Meng.Li@windriver.com> | ||
3 | Date: Tue, 9 Jul 2024 14:35:06 +0800 | ||
4 | Subject: [PATCH] FMCCFGReader: improve parameter definition of function | ||
5 | errorFuncHandler | ||
6 | |||
7 | When building fmc package, there is below error: | ||
8 | FMCCFGReader.cpp: In member function 'void CCFGReader::parseCfgData(std::string)': | ||
9 | FMCCFGReader.cpp:98:40: error: invalid conversion from | ||
10 | 'void (*)(void*, xmlErrorPtr)' {aka 'void (*)(void*, _xmlError*)'} to | ||
11 | 'xmlStructuredErrorFunc' {aka 'void (*)(void*, const _xmlError*)'} [-fpermissive] | ||
12 | 98 | xmlSetStructuredErrorFunc( &error, errorFuncHandler ); | ||
13 | | ^~~~~~~~~~~~~~~~ | ||
14 | | | | ||
15 | | void (*)(void*, xmlErrorPtr) {aka void (*)(void*, _xmlError*)} | ||
16 | Because in libxml2 package, the parameter definition of function | ||
17 | pointer xmlStructuredErrorFunc has changed, adjust the parameter | ||
18 | of errorFuncHandler to align with upstream. | ||
19 | |||
20 | Upstream-Status: Pending | ||
21 | |||
22 | Signed-off-by: Meng Li <Meng.Li@windriver.com> | ||
23 | --- | ||
24 | source/FMCGenericError.cpp | 2 +- | ||
25 | source/FMCGenericError.h | 2 +- | ||
26 | 2 files changed, 2 insertions(+), 2 deletions(-) | ||
27 | |||
28 | diff --git a/source/FMCGenericError.cpp b/source/FMCGenericError.cpp | ||
29 | index a1a87a4..c11742c 100644 | ||
30 | --- a/source/FMCGenericError.cpp | ||
31 | +++ b/source/FMCGenericError.cpp | ||
32 | @@ -33,7 +33,7 @@ | ||
33 | #include "FMCUtils.h" | ||
34 | #include "logger.hpp" | ||
35 | |||
36 | -void errorFuncHandler( void * ctx, xmlErrorPtr error ) | ||
37 | +void errorFuncHandler( void * ctx, const xmlError *error ) | ||
38 | { | ||
39 | char *filestr = (char*)""; | ||
40 | char *msgstr = (char*)""; | ||
41 | diff --git a/source/FMCGenericError.h b/source/FMCGenericError.h | ||
42 | index 504a81b..61ab6c1 100644 | ||
43 | --- a/source/FMCGenericError.h | ||
44 | +++ b/source/FMCGenericError.h | ||
45 | @@ -35,7 +35,7 @@ | ||
46 | |||
47 | const int NO_LINE = -1; | ||
48 | |||
49 | -void errorFuncHandler( void * ctx, xmlErrorPtr error ); | ||
50 | +void errorFuncHandler( void * ctx, const xmlError *error ); | ||
51 | |||
52 | |||
53 | class CGenericError { | ||
54 | -- | ||
55 | 2.34.1 | ||
56 | |||
diff --git a/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb b/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb index 457a202c..2219a6c0 100644 --- a/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb +++ b/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb | |||
@@ -7,10 +7,7 @@ PR = "r2" | |||
7 | DEPENDS = "libxml2 fmlib tclap" | 7 | DEPENDS = "libxml2 fmlib tclap" |
8 | 8 | ||
9 | SRC_URI = "git://github.com/nxp-qoriq/fmc;protocol=https;nobranch=1" | 9 | SRC_URI = "git://github.com/nxp-qoriq/fmc;protocol=https;nobranch=1" |
10 | SRC_URI:append = " \ | 10 | SRCREV = "5b9f4b16a864e9dfa58cdcc860be278a7f66ac18" |
11 | file://0001-FMCCFGReader-improve-parameter-definition-of-functio.patch \ | ||
12 | " | ||
13 | SRCREV = "63c8ac99899a9bcd723801579b4d786594670455" | ||
14 | 11 | ||
15 | S = "${WORKDIR}/git" | 12 | S = "${WORKDIR}/git" |
16 | 13 | ||
diff --git a/recipes-bsp/uefi/uefi_git.bb b/recipes-bsp/uefi/uefi_git.bb index b001a325..268b5b1d 100644 --- a/recipes-bsp/uefi/uefi_git.bb +++ b/recipes-bsp/uefi/uefi_git.bb | |||
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://NXP-Binary-EULA;md5=343ec8f06efc37467a6de53686fa6315" | |||
6 | inherit deploy | 6 | inherit deploy |
7 | 7 | ||
8 | SRC_URI = "git://github.com/NXP/qoriq-uefi-binary.git;nobranch=1;protocol=https" | 8 | SRC_URI = "git://github.com/NXP/qoriq-uefi-binary.git;nobranch=1;protocol=https" |
9 | SRCREV = "15deb924ff063007592ee647602dd454353f5aee" | 9 | SRCREV = "55789d536850e00c6f2284fb28eaf21712cd276b" |
10 | 10 | ||
11 | S = "${WORKDIR}/git" | 11 | S = "${WORKDIR}/git" |
12 | 12 | ||
diff --git a/recipes-dpaa2/gpp-aioptool/gpp-aioptool_git.bb b/recipes-dpaa2/gpp-aioptool/gpp-aioptool_git.bb index 303aa8ff..befc769e 100644 --- a/recipes-dpaa2/gpp-aioptool/gpp-aioptool_git.bb +++ b/recipes-dpaa2/gpp-aioptool/gpp-aioptool_git.bb | |||
@@ -3,8 +3,8 @@ on an AIOP Tile using MC interfaces. This application enables the user to \ | |||
3 | fetch status of tile, load a valid ELF file and run it on a tile and get and set \ | 3 | fetch status of tile, load a valid ELF file and run it on a tile and get and set \ |
4 | time of day." | 4 | time of day." |
5 | SECTION = "dpaa2" | 5 | SECTION = "dpaa2" |
6 | LICENSE = "BSD" | 6 | LICENSE = "BSD-3-Clause" |
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=386a6287daa6504b7e7e5014ddfb3987" | 7 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/BSD-3-Clause;md5=550794465ba0ec5312d6919e203a55f9" |
8 | 8 | ||
9 | SRC_URI = "git://github.com/nxp-qoriq/gpp-aioptool;protocol=https;nobranch=1 \ | 9 | SRC_URI = "git://github.com/nxp-qoriq/gpp-aioptool;protocol=https;nobranch=1 \ |
10 | file://0001-remove-libio.h.patch \ | 10 | file://0001-remove-libio.h.patch \ |
diff --git a/recipes-dpaa2/management-complex/management-complex_10.37.0.bb b/recipes-dpaa2/management-complex/management-complex_10.39.0.bb index d1877159..5097e71f 100644 --- a/recipes-dpaa2/management-complex/management-complex_10.37.0.bb +++ b/recipes-dpaa2/management-complex/management-complex_10.39.0.bb | |||
@@ -1,17 +1,18 @@ | |||
1 | SUMMARY = "DPAA2 Management Complex Firmware" | 1 | SUMMARY = "DPAA2 Management Complex Firmware" |
2 | LICENSE = "NXP-Binary-EULA" | 2 | LICENSE = "NXP-Binary-EULA" |
3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=481d6288552113961a835bbabceb0c33" | 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=0701845051a61f6012009d7d6d11b32b" |
4 | 4 | ||
5 | inherit deploy | 5 | inherit deploy |
6 | 6 | ||
7 | INHIBIT_DEFAULT_DEPS = "1" | 7 | INHIBIT_DEFAULT_DEPS = "1" |
8 | 8 | ||
9 | SRC_URI = "git://github.com/nxp/qoriq-mc-binary;protocol=https;nobranch=1" | 9 | SRC_URI = "git://github.com/nxp/qoriq-mc-binary;protocol=https;nobranch=1" |
10 | SRCREV = "bb19f586b87b97878b4bd0d3e57da2ca40c5c69f" | 10 | SRCREV = "7d82686272f8a60b803818bbc7c5396819ee3b06" |
11 | 11 | ||
12 | S = "${WORKDIR}/git" | 12 | S = "${WORKDIR}/git" |
13 | 13 | ||
14 | REGLEX:ls2088a = "ls2088a" | 14 | REGLEX:ls2088a = "ls2088a" |
15 | REGLEX:ls2080a = "ls2080a" | ||
15 | REGLEX:ls1088a = "ls1088a" | 16 | REGLEX:ls1088a = "ls1088a" |
16 | REGLEX:lx2160a = "lx216xa" | 17 | REGLEX:lx2160a = "lx216xa" |
17 | REGLEX:lx2162a = "lx216xa" | 18 | REGLEX:lx2162a = "lx216xa" |
diff --git a/recipes-dpaa2/restool/restool_git.bb b/recipes-dpaa2/restool/restool_git.bb index 1d1aeffe..bbf7fec2 100644 --- a/recipes-dpaa2/restool/restool_git.bb +++ b/recipes-dpaa2/restool/restool_git.bb | |||
@@ -1,11 +1,11 @@ | |||
1 | SUMMARY = "DPAA2 Resource Manager Tool" | 1 | SUMMARY = "DPAA2 Resource Manager Tool" |
2 | LICENSE = "BSD-3-Clause | GPL-2.0-or-later" | 2 | LICENSE = "BSD-3-Clause | GPL-2.0-or-later" |
3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=ec8d84e9cd4de287e290275d09db27f0" | 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=83af78c71766dd5fb1c1c3dd64a75ee7" |
4 | 4 | ||
5 | SRC_URI = "git://github.com/nxp-qoriq/restool;protocol=https;nobranch=1 \ | 5 | SRC_URI = "git://github.com/nxp-qoriq/restool;protocol=https;nobranch=1 \ |
6 | file://disable-manpage-generation.patch \ | 6 | file://disable-manpage-generation.patch \ |
7 | " | 7 | " |
8 | SRCREV = "46604e41f4c7e54efa62503c6b4629321b21e056" | 8 | SRCREV = "d9fbfc68018c8dbe33bdf236dc6b4c02f15aa6e1" |
9 | 9 | ||
10 | S = "${WORKDIR}/git" | 10 | S = "${WORKDIR}/git" |
11 | 11 | ||
diff --git a/recipes-dpaa2/spc/spc_git.bb b/recipes-dpaa2/spc/spc_git.bb index 2c695368..c54484be 100644 --- a/recipes-dpaa2/spc/spc_git.bb +++ b/recipes-dpaa2/spc/spc_git.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=163b09a1c249a6ff2b28da1ceca2e0a8" | |||
5 | DEPENDS = "libxml2 fmlib tclap" | 5 | DEPENDS = "libxml2 fmlib tclap" |
6 | 6 | ||
7 | SRC_URI = "git://github.com/nxp-qoriq/spc;protocol=https;nobranch=1" | 7 | SRC_URI = "git://github.com/nxp-qoriq/spc;protocol=https;nobranch=1" |
8 | SRCREV = "d624b7809be48e4cf29a7bfa201028e4de1d1955" | 8 | SRCREV = "b8d69580e5c6aeeb9f1354ee2faed6e0134eaef4" |
9 | 9 | ||
10 | S = "${WORKDIR}/git" | 10 | S = "${WORKDIR}/git" |
11 | 11 | ||