summaryrefslogtreecommitdiffstats
path: root/dynamic-layers/openembedded-layer
Commit message (Collapse)AuthorAgeFilesLines
* fmc: Update to commit 63c8ac9Jun Zhu2023-07-011-2/+2
| | | | | | | | | Integrate new commits: 63c8ac9 Deny HC usage on fmc cleanup 3def2b9 Check if valid FMan handle exists when create devices a8a257b Rename COPYING to LICENSE Signed-off-by: Jun Zhu <junzhu@nxp.com>
* mpv: Do not enable x11 when using vivante graphics driverKhem Raj2023-06-081-0/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* imx-cst: fix build issue for Ubuntu 22.04(LTS)Walter Schweizer2023-02-042-1/+60
| | | | | | | | | | | | | On Ubuntu 22.04(LTS) cst fails to link with libcrypto. NXP uses weaken to solve a conflict in linking. The linker in Ubuntu seems to ignore weak symbols does not link libcrypto at all. The patch fixes the conflict in the code itself. It restricts the scope of err_msg to the module. Signed-off-by: Walter Schweizer <walter.schweizer@siemens.com>
* Switch NXP QorIQ repositories to github.comJun Zhu2022-12-151-1/+1
| | | | | | | | Fetch QorIQ's source code from github.com/nxp-qoriq, as original source.codeaurora.org/external/qoriq will stop to access from April 2023. Signed-off-by: Jun Zhu <junzhu@nxp.com>
* imx-cst: Use specific BSD licenseKhem Raj2022-04-141-1/+1
| | | | | | | Fixes WARNING: imx-cst-3.3.1-r0 do_populate_lic: QA Issue: imx-cst: No generic license file exists for: BSD in any provider [license-exists] Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dynamic-layers: Update SOC overridesTom Hochstein2022-03-021-1/+1
| | | | | | Fix dynamic layer overrides missed by the script. Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
* Generalize overrides subsystem for NXP and Mainline supportOtavio Salvador2022-02-211-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Essentially, we extend the overrides to a generic-bsp, nxp-bsp, and mainline-bsp. So, for example, the mx8mq override is split into: - imx-generic-bsp: compatible with every i.MX SoC and both BSP variants - imx-nxp-bsp: compatible with every i.MX SoC but specific to NXP BSP - imx-mainline-bsp: compatible with every i.MX SoC but specific to Mainline BSP - mx8-generic-bsp: compatible with every i.MX8 SoC and both BSP variants - mx8-nxp-bsp: compatible with every i.MX8 SoC but specific to NXP BSP - mx8-mainline-bsp: compatible with every i.MX8 SoC but specific to Mainline BSP - mx8m-generic-bsp: compatible with every i.MX8M SoC and both BSP variants - mx8m-nxp-bsp: compatible with every i.MX8M SoC but specific to NXP BSP - mx8m-mainline-bsp: compatible with every i.MX8M SoC but specific to Mainline BSP - mx8mq-generic-bsp: compatible with every i.MX8MQ SoC and both BSP variants - mx8mq-nxp-bsp: compatible with every i.MX8MQ SoC8 but specific to NXP BSP - mx8mq-mainline-bsp: compatible with every i.MX8MQ SoC but specific to Mainline BSP The extender mechanism is responsible for extending the override list to include the generic overrides. We can then use the three different variants to handle the metadata correctly. Generically speaking, the conversion mainly was automated (with a lot of back and forth until getting it right). To convert an existing layer, the following script can be used: ```sh git ls-files classes recipes-* \ | xargs sed -i \ -e 's,:\(mx[6-8]\w*\),:\1-nxp-bsp,g' \ -e 's,(\(mx[6-8]\w*\)),(\1-nxp-bsp),g' \ -e 's,\(mx[6-8]\w*\)|,\1-nxp-bsp|,g' \ -e 's,|\(mx[6-8]\w*\)),|\1-nxp-bsp),g' \ \ -e 's,:\(mx[5s]\w*\),:\1-generic-bsp,g' \ -e 's,(\(mx[5s]\w*\)),(\1-generic-bsp),g' \ -e 's,\(mx[5s]\w*\)|,\1-generic-bsp|,g' \ -e 's,|\(mx[5s]\w*\)),|\1-generic-bsp),g' \ \ -e 's,:\(vf\w*\),:\1-generic-bsp,g' \ -e 's,:\(vf[56]0\w*\),:\1-generic-bsp,g' \ -e 's,\(vf\w*\)|,\1-generic-bsp|,g' \ -e 's,|\(vf\w*\)),|\1-generic-bsp),g' \ -e 's,\(vf[56]0\w*\)|,\1-generic-bsp|,g' \ -e 's,|\(vf[56]0\w*\)),|\1-generic-bsp),g' \ \ -e 's,:\(imx\) ,:\1-nxp-bsp ,g' \ -e 's,(\(imx\)),(\1-nxp-bsp),g' \ -e 's,\(imx\)|,\1-nxp-bsp|,g' \ -e 's,|\(imx\)),|\1-nxp-bsp),g' for d in $(find -type d | egrep '/mx[6-8]w*'); do git mv $d $d-nxp-bsp done for d in $(find -type d | egrep '/imx$'); do git mv $d $d-nxp-bsp done for d in $(find -type d | egrep '/mx[5s]w*'); do git mv $d $d-generic-bsp done ``` Fixes: #791. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* qoriq: Convert to new override syntaxTing Liu2021-10-131-1/+1
| | | | | | | * change `virtclass-native`` to ``class-native` * add fixes for ls2088a Signed-off-by: Ting Liu <ting.liu@nxp.com>
* imx-cst: Correct SRC_URI to use static SRCREV instead of tagKhem Raj2021-10-041-1/+3
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* layer: Convert to new override syntaxKhem Raj2021-08-124-17/+17
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* imx-cst: introduce the recipe for the version 3.3.1Thomas Perrot2021-08-121-0/+30
| | | | | | | | It provides a code signing tool for signing images for i.MX-based NXP processors using High Assurance Boot (HABv4) library in the internal boot ROM or the Advanced High Assurance Boot (AHAB) subsystem. Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
* fmc: update to c2ed7c2Ting Liu2020-12-161-1/+1
| | | | | | | | | New commits: c2ed7c2 XML config files update for proper syntax 3a1566e Use MIT license for lexical analyzer files 1ebdcb4 Use MIT license for config files Signed-off-by: Ting Liu <ting.liu@nxp.com>
* opencv: Drop removal of v4l supportTom Hochstein2020-09-141-3/+0
| | | | | | | | | | In the past, i.MX gstreamer camera didn't work well with OpenCV v4l, so v4l was disabled. Now that i.MX gstreamer is no longer using OpenCV, v4l support can be restored. Fixes #475 Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
* glmark2: don't build drm flavours for machines not supporting itMax Krummenacher2020-03-161-0/+4
| | | | | | | | | | | | | imx-gpu-viv_6.4.0.p1.0-aarch32 does not provide virtual/libgbm and thus a build with drm* in PACKAGECONFIG does fail. Thus remove drm* from PACKAGECONFIG for those machines. | ERROR: Nothing PROVIDES 'virtual/libgbm' (but .../glmark2_git.bb DEPENDS on or otherwise requires it) | gpulib PROVIDES virtual/libgbm but was skipped: incompatible with machine fixes: 7801868f glmark2: Remove bbappend Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
* glmark2: Remove bbappendJoshua Watt2020-03-121-4/+0
| | | | | | | | | | The default PACKAGECONFIG for glmark2 builds just fine on imxgpu3d and imxgpu2d platforms, and doing so enables support for the drm based tests. Tested on imx8mq and imx8qm Signed-off-by: Joshua Watt <Joshua.Watt@garmin.com>
* opencv: Adjust the bbappend for version 4.xKhem Raj2019-07-163-51/+3
| | | | | | The patch is no longer needed, relevant code no more present in opencv Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fmc: install all config filesChunrong Guo2019-07-121-1/+1
| | | | Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* Revert "cpuburn-arm: Add armv7ve as a valid machine"Fabio Berton2019-03-261-1/+0
| | | | | | | | | | This reverts commit 0e12eb4a039f2e9b1d53c0a8a0815382190931be. This commit was merged in meta-openembedded/meta-oe layer. See commit: https://git.openembedded.org/meta-openembedded/commit/?id=ea59b56825912614d8b2acb3ed621a8e9333a23c Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
* cpuburn-arm: Add armv7ve as a valid machineFabio Berton2019-03-221-0/+1
|
* fmc: update to c7576abChunrong Guo2019-01-141-1/+1
| | | | | | | | *update to lsdk 1812 tag include the following changes: c7576ab - Resolved compile warning on ubuntu with aarch64-linux-gnu-g++ v7.3 Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* fmc: set EXTRA_OEMAKE_PLATFORM for p* targetsChunrong Guo2018-11-081-1/+7
| | | | | Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* fmc: udpate to 09a497fChunrong Guo2018-10-011-1/+2
| | | | | | | | | | | | | *update to lsdk 1809 tag include the following changes: 09a497f - Makefile: enable PPC support ba9ed3b - Remove fmc data file on cleanup command a3e83b6 - Added fmc option to perform only cleanup of last fmc execution * add EXTRA_OEMAKE_PLATFORM_qoriq-ppc to support ppc Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* recipes: Limit BSP specific recipes on relevant SOCsKhem Raj2018-09-281-0/+1
| | | | | | | | | | | This helps in using meta-freescale with other BSP layers in same projects, which is common usecase Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com> Cc: Zhenhua Luo <zhenhua.luo@nxp.com> Cc: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* opencv: Update bbappend to follow meta-oe upgradeOtavio Salvador2018-09-111-0/+0
| | | | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* sg3-utils: Move bbappend to dynamic layerstexierp2018-06-011-0/+1
| | | | | | | | | The sg3-utils recipe can only be built if the meta-oe layer is present, so move it to the dynamic layers. Signed-off-by: Pierre-Jean TEXIER <texier.pj2@gmail.com> Tested-by: Bas Mevissen <abuse@basmevissen.nl> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* fmc: update SRC_URLC.R. Guo2018-03-061-1/+1
| | | | | Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* web-sysmon:removeChunrong Guo2018-02-061-38/+0
| | | | | | | This pkg will not be supported anymore. Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* usdpaa-apps: removeChunrong Guo2018-02-061-67/+0
| | | | | | | This pkg will not be supported anymore. Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* fmc: set EXTRA_OEMAKE_PLATFORM for ls1088aChunrong Guo2017-11-061-0/+1
| | | | | Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* fmc: update to 8c9f127Chunrong Guo2017-11-061-1/+1
| | | | | | | | *include the following changes: 8c9f127 - FMC cleanup fix - first version Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* fmc: update recipesChunrong Guo2017-10-181-6/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | *update SRC_URL and update to 4377bfc This includes the following changes: 4377bfc - Set LS1043 as default platform (for DASH integration) 81e4796 - Revert default platform flag to P4080 4729b49 - Enable support for LS1046 (based on LS1043 integration) a079d2c - update variable names to match fmlib changes 44b1f42 - Revert "Aging support added for classification" 9732cd8 - Aging support added for classification 03505c3 - [QSDK-2331] fmc: PIR/PBS are considered synonyms for CIR/CBS in policer tags 757754b - ENGR00341753: Schemes sharing between ports is not working eca7122 - Added makefile support for LS1043 b9e52be - ENGR00354640: fmc regression: Bad FMan port handle used in FM_PORT_VSPAlloc causes FMD call trace 435d76d - ENGR354592: FMC SoftParser 'otherl3' protocol definition generates error 92494f0 - Changed makefile to use flags: FMAN_V3H / FMAN_V3L (ENGR353626) 1695da4 - ENGR00352834: FMC: Add support for FM_PCD_KgSetAdditionalDataAfterParsing API 450d314 - ENGR351010: FMC: Share schemes used for IPR across multiple ports b2b6226 - ENGR00349008: ALU PCD generates Segmentation fault for direct schemes usage 6b14996 - ENGR00348810: ALU PCD generates: FmPcdCcGetGrpParams: Invalid Handle 955706a - ENGR348539: ALU PCD generates: grpId you asked > numOfGroup of relevant tree 06548b6 - ENGR00347977: ALU PCD using direct schemes generates Error: Unresolved cycled dependencies e843d51 - ENGR00315208: [FMC] failed to configure ALU PCD 4f4a3eb - ENGR00342608: Major error on ALU PCD: IC_HASH_INDEXED numOfKeys has to be powerOfTwo a3e40ab - ENGR00342299: ALU PCD (fmc_pcd_ed44_skeleton_TSOC.xml) generates Segmentation fault 71deab3 - ENGR00342299: ALU PCD (fmc_pcd_ed44_skeleton_TSOC.xml) generates Segmentation fault aa34fa3 - ENGR00341753: Schemes sharing between ports is not working e6fee7f - ENGR00341091: False error reported by FMC in ALU PCD: 'ERR: Unresolved cycled dependencies are found' 2fb5b1c - ENGR00340476: ALU Issue with pbit marking with a given DSCP (B0198) 284a506 - ENGR329197: 32 Schema limit exhausted when FMC duplicates the schemas even if same policy is attached to all the ports 0434629 - ENGR00338449: Enable Test automation framework for FMC on Linux host OS d09735b - ENGR00338121: fmc: Support new convention for port type in xml config file f46f085 - Improvement to: ENGR330486: ALU B0187: FMC/libxml2 SDK1.5 FB3 : Memory leaked during PCD xml application c2330c3 - ENGR00330486: ALU B0187 : FMC/ libxml2 SDK1.5 FB3 : Memory leaked during PCD xml application 2bff057 - ENGR00325623: PCD : replicator issue 4157f75 - ENGR00316689: fmc: Ccnode mask support option fails to propagate into the PCD 35b9363 - ENGR00320235: reassembly management with PCD xml (FMC) - FM_PCD_MAX_NUM_OF_CC_GROUPS 021f720 - ENGR00308464 - FMD PCD: seg fault error while creating ccnode without mask 8c37700 - Enabled ENGR00305912 : individual keygen extraction (IPV6 VER+TC) and (IPv6 FL) 400d483 - Disabled ENGR00305912 until is available in FMD c21c326 - Enabled ipv6.flabel as supported full field extraction *remvoe EXTRA_OEMAKE_PLATFORM for powerpc nxp release will not support ppc machine Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* opencv: update to 3.3Chunrong Guo2017-08-301-0/+0
| | | | | | | opencv was updated to version 3.3 Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* usdpaa-apps:update to 49fce3aChunrong Guo2017-05-021-2/+2
| | | | | | | | | | | * include the following changes 49fce3a - Merge pull request #31 in SDK/usdpaa-apps from ~B18196/usdpaa-apps:sdk-v2.0.x to sdk-v2.0.x a487b87 - usdpaa_apps: Patch to disable the non-fmc support by default. 68c4db1 - Merge pull request #29 in SDK/usdpaa-apps from ~B06830/usdpaa-apps:bugfix/QUSDPA-870 to sdk-v2.0.x b54f883 - Revert "build: Eliminate the use of implicit rules and rule-specific variables" Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* opencv: Set override for imxgpu2d machinesFabio Berton2017-01-271-1/+1
| | | | | Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* xserver-common: Set PACKAGE_ARCH override for imxgpu3d machinesFabio Berton2017-01-261-2/+2
| | | | | | | | | Patch it's only enable for imxgpu3d, change mx6 override to imxgpu3d and remove unused mx7 override. Change-Id: Ifac37d8d792c0e5558f30ad439a13bd1fd6514fc Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* xserver-common: Append SRC_URI for imxgpu3d machinesFabio Berton2017-01-261-4/+2
| | | | | | | | | Remove variable PATCHES_IMX_SPECIFIC and apply patch for all imxgpu3d machines. Change-Id: Ic8a8d8eebf109cc7c2256417a7423b7f83bdd99b Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* xserver-common: Move to dynamic layersGary Thomas2017-01-252-0/+40
| | | | | | | | | The xserver-common recipe can only be built if the openbedded (meta-oe) layer is present, so move it to the dynamic layers to prevent breakage if that layer is not in the build. Signed-off-by: Gary Thomas <gary@mlbassoc.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* usdpaa-apps: upgrade to SDK 2.0 GA-1611 releaseZhenhua Luo2017-01-111-3/+5
| | | | | | | | | | | | | | | | | | | | The following changes are included: * 8fe2e96 usdpaa_apps: Patch to add ipsecfwd config script for perf. * 9d7f0fe usdpaa_apps: Patch to add lpm ipfwd config scripts for perf. * f03552a Merge pull request #27 in SDK/usdpaa-apps from ~B06830/usdpaa-apps:bugfix/QUSDPA-869 to sdk-v2.0.x * 88c1539 ipsecfwd, simple_proto: use DKP for MDHA split key generation * 41d9630 usdpaa_apps: Patch to fix next header protocol in esp header * a889294 usdpaa_apps: Patch to add ipfwd_config file for perf. * 1ef1d53 Merge pull request #18 in SDK/usdpaa-apps from ~B06830/usdpaa-apps:bugfix/QUSDPA-838 to sdk-v2.0.x * 6172983 usdpaa_apps: Patch to use default queue for functionality * b992189 usdpa_app: Patch to add ls1046a support in standalone-env. * 53851fb usdpaa_app: Patch to add fmc config for LS1046ARDB * 1c7a501 simple_proto: add supplementary MBMS test vectors * 2536748 simple_proto: MBMS test vector fixes Signed-off-by: Ting Liu <ting.liu@nxp.com Signed-off-by: Zhenhua Luo <zhenhua.luo@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* fmc: upgrade to SDK 2.0 GA-1611 releaseZhenhua Luo2017-01-111-2/+3
| | | | | | | | | | | * add ls1046a targets support * include the following changes 81e4796 Revert default platform flag to P4080 4729b49 Enable support for LS1046 (based on LS1043 integration) Signed-off-by: Ting Liu <ting.liu@nxp.com> Signed-off-by: Zhenhua Luo <zhenhua.luo@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* fmc: Set PACKAGE_ARCH to the value of MACHINE_SOCARCHFabio Berton2016-12-061-2/+3
| | | | | Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* fmc: Remove native class extendFabio Berton2016-12-061-3/+0
| | | | | | | fmc doesn't build for native host. Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* fmc: Set override for all ls1043a soc familyFabio Berton2016-12-061-1/+1
| | | | | Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* usdpaa-apps: Set PACKAGE_ARCH to the value of MACHINE_SOCARCHFabio Berton2016-12-061-2/+3
| | | | | Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* usdpaa-apps: Set override for all ls1043a soc familyFabio Berton2016-12-061-3/+3
| | | | | Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* web-sysmon: Set PACKAGE_ARCH to the value of MACHINE_SOCARCHFabio Berton2016-12-061-0/+3
| | | | | Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* glmark2: Refactor code to use the new overridesOtavio Salvador2016-09-081-4/+4
| | | | | | | | | The recipe has been reworked to use the 'imxgpu2d' and 'imxgpu3d' feature overrides, while on that, the '_remove' operator usage has been removed as it is impossible to override using a bbappend file. Change-Id: I89d4a4d461b182ad3d7ca8ed8ebbfe2183caf467 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* usdpaa-apps: obey LDFLAGS to fix GNU_HASH errorTing Liu2016-08-121-1/+1
| | | | | Signed-off-by: Ting Liu <ting.liu@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* usdpaa-apps: update to 835cbceTing Liu2016-08-123-142/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: 835cbce classifier_demo: Fix IPv4 table entry removal on LE platforms 2806cdc classifier_demo: Replace obsolete platform flags with FMan version flags aca81f7 classifier_demo: Avoid using compile time symbols abae100 IPSECFWD:Using correct SEC ERA version check for split key generation 5d8452a IPSECFWD: RTA changes for Authentication Key d314b64 USDPAA-APPS: Ipsecfwd for ls1043 for sdk2.0 b3b078b ipsec_offload: Add debug tools 424fcbe reassembly_demo: Add support for running on LS1043A ee4a5d2 fragmentation_demo: Add support for running on LS1043A 1dc24e8 classifier_demo: Add support for running on LS1043A d3928a6 simple_crypto: remove unused variable 57131aa ls1043_config: Adding config for ls1043 fmc. 3cc1bbc USDPAA-APPS:reflector,ipfwd and lpm-ipfwd support for LS1043 e47d4d2 USDPAA-APPS support for LS1043(makefile and standalone-env) 9cd4030 libfslcrypto: enable apps compilation in out-of-tree mode 2c57883 simple_proto: fix AEAD descriptor creation function order of parameters 42f4d02 ipsecfwd: sync with FLIB f80d93b simple_proto: add endianness support for protocols 9228309 simple_proto: fix IPSec test vector 028e14e libfslcrypto: workaround for CPU frequency 98d949e simple_crypto: fix SNOW_F8_F9 processing 23ce7f6 qman, libfslcrypto: export SG transformation functions 75a2010 simple_crypto: add swap option for block cipher descriptors 146c4e1 simple_crypto: fix endianness for preheader 8800996 libfslcrypto: support for dumping extended SG entries 49dd54f libfslcrypto: fix comparison for results < 4B b54325f libfslcrypto: fix SGT handling endianness 97d3eb5 libfslcrypto: fix preheader bitfields c5c35f8 Revert "ipsecfwd, simple_proto, simple_crypto: sync with FLIB" 07ed016 Revert "libfslcrypto: support for dumping extended SG entries" 2c9cd79 ipsecfwd, simple_proto, simple_crypto: sync with FLIB 126a441 ipsecfwd, simple_proto: flib sync - IPsec - fix PDB endianness 5493443 fix the inline function definition with gcc 5.x 9e08876 xfrm_km.c: use in6_* macros from glibc instead of kernel Signed-off-by: Marian Chereji <marian.chereji@freescale.com> Signed-off-by: Ting Liu <ting.liu@nxp.com>
* fmc: set EXTRA_OEMAKE_PLATFORM for ls1043ardbTing Liu2016-08-121-12/+11
| | | | | | Also use ${sysconfdir} to replace /etc. Signed-off-by: Ting Liu <ting.liu@nxp.com>
* glmark2: Add XWayland supportTom Hochstein2016-08-051-2/+3
| | | | | | | | If DISTRO_FEATURES contains x11 and wayland, configure the package for a Wayland backend. Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>