| Commit message (Collapse) | Author | Age | Files | Lines |
| |\
| |
| | |
Fix ParseError in linux-fslc-imx and fix kernel-module-isp-vvcam builds for pre 6.18 kernels
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The 4.2.2.26.1 driver source is based on lf-6.18 and uses the v4l2_fh
API introduced in Linux v6.18. Older kernels still provide the older
helpers, which breaks the build due to missing file_to_v4l2_fh() and
mismatching v4l2_fh_add/del() prototypes.
Add a small compatibility wrapper for kernels older than v6.18.
Fixes: 5594fa535392 ("isp-imx: Upgrade to 4.2.2.26.1")
Signed-off-by: Ernest Van Hoecke <ernest.vanhoecke@toradex.com>
|
| |/
|
|
|
|
|
|
|
|
|
|
|
|
| |
Commit 2862dc5e6279 ("linux-fslc-imx: Bump kernel to LF6.18.2_1.0.0 + stable up to v6.18.24")
accidentally dropped the # in front of the git log comments, breaking
the recipe parsing.
Comment out the list of git commits in this recipe again.
Fixes the below error:
ERROR: ParseError at [..]/meta-freescale/recipes-kernel/linux/linux-fslc-imx_6.18.bb:46: unparsed line: '$ 6e811374f6340 drm/imx: lcdifv3: Fix videomode settings'
Fixes: 2862dc5e6279 ("linux-fslc-imx: Bump kernel to LF6.18.2_1.0.0 + stable up to v6.18.24")
Signed-off-by: Ernest Van Hoecke <ernest.vanhoecke@toradex.com>
|
| |\
| |
| | |
linux-fslc-imx: Bump kernel to LF6.18.2_1.0.0 + stable up to v6.18.21
|
| | |
| |
| |
| |
| |
| | |
This is part of #2483
Signed-off-by: Daiane Angolini <daiane.angolini@foundries.io>
|
| |\ \
| | |
| | | |
imx-boot_1.0.bb: Drop mcore image in imx-boot image
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
As Mcore image only applied for i.MX socs
fixup coommit:6cdff9f7
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| |\ \ \
| | | |
| | | | |
imx-boot-container: add i.MX91 and i.MX93 support
|
| |/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Add the necessary support to enable boot container builds for i.MX91
and i.MX93 derivatives using U-Boot's binman; both platforms require
AHAB container in addition to DDR PHY and ATF firmware.
Signed-off-by: Francesco Valla <francesco@valla.it>
|
| |\ \ \
| | | |
| | | | |
isp-imx: fix jsoncpp runtime dependency
|
| |/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The prebuilt ISP media server binaries were linked against jsoncpp
1.9.6 and still require libjsoncpp.so.26. meta-openembedded now uses
jsoncpp 1.9.7 which leads to libjsoncpp.so.27, but the runtime linker
and OE shlib QA still match the exact SONAME from DT_NEEDED.
Patch the installed binaries to require libjsoncpp.so.27 so file-rdeps
can resolve the dependency to the distro jsoncpp package.
Signed-off-by: Ernest Van Hoecke <ernest.vanhoecke@toradex.com>
|
| |\ \ \
| |/ /
|/| | |
linux-imx-headers: fix ipu.h integer type macros
|
| |/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The exported IPU UAPI header defines uint32_t, uint16_t and uint8_t as
preprocessor macros. This breaks userspace builds when another header is
included afterwards and uses the standard integer type names, because
the macros rewrite those declarations.
This currently breaks imx-gst1.0-plugin with:
| recipe-sysroot/usr/include/imx/linux/ipu.h:42:17: error: two or more data types in declaration specifiers
The header itself only needs the local u32 and u8 aliases. Map those
aliases to the __u32 and __u8 types provided by linux/types.h and leave
the standard uint*_t namespace untouched.
Signed-off-by: Ernest Van Hoecke <ernest.vanhoecke@toradex.com>
|
| |\ \
| | |
| | | |
weston-init: Fix install error for sysvinit case
|
| |/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The weston-init recipe fails to install properly when using sysvinit.
```
| install: cannot stat '/.../weston-init/1.0/weston-socket.sh': No such file or directory
```
The install uses the wrong path variable `WORKDIR` where `S` is correct.
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
|
| |\ \
| | |
| | | |
fixup! imx-gpu-viv: Bump 6.4.11.p3.2 -> 6.4.11.p4.4
|
| |/ /
| |
| |
| | |
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| |\ \
| | |
| | | |
imx-oei: Fix OEI_DEBUG, OEI_DDR_CONFIG and the conditional EXTRA_OEMAKE
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In commit 9de33fe48aae ("imx-oei: Update to lf6.18.2-1.0.0"), multiple
issues were introduced to imx-oei.inc:
- DEBUG was hardcoded to 1, OEI_DEBUG is silently dropped completely
- DDR_CONFIG is always passed to make, even when no config is present
- The EXTRA_OEMAKE:append:mx95-generic-bsp was changed to mx95-nxp-bsp
All of these changes are unrelated to the desired update.
This reverts the changes to imx-oei.inc introduced by commit
9de33fe48aaec40f5648c5fa22a4a1782ac74c93.
Fixes: 9de33fe48aae ("imx-oei: Update to lf6.18.2-1.0.0")
Signed-off-by: Ernest Van Hoecke <ernest.vanhoecke@toradex.com>
|
| |\ \ \
| | | |
| | | | |
imx-base.inc: set SECOEXT_FIRMWARE_NAME to empty by default
|
| | |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
SECOEXT_FIRMWARE_NAME is set to 'UNDEFINED' by default. Since commit
d7930c6e ("firmware-ele-imx: Bump 2.0.2 -> 2.0.5"), the firmware-ele-imx
recipe fails during do_install if this variable is not overridden.
The install step tries to access a non-existent path named 'UNDEFINED',
resulting in:
install: cannot stat '.../UNDEFINED': No such file or directory
Set SECOEXT_FIRMWARE_NAME to an empty value to prevent build failures
when the parameter is not explicitly defined.
Signed-off-by: Benjamin Missey <benjamin.missey@non.se.com>
|
| | | | |
|
| |\ \ \
| |/ /
|/| | |
gpu-viv: upgrade to 6.4.11.p4.4
|
| | | |
| | |
| | |
| | |
| | |
| | | |
-Normalize OpenCL ICD implementation
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| |/ /
| |
| |
| | |
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| |\ \
| | |
| | | |
mkimage: Update to lf-6.18.2-1.0.0
|
| | | |
| | |
| | |
| | | |
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| | | | |
|
| |\ \ \
| | | |
| | | | |
Bsp: upgrade to 6.18.2
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Base on lf-6.18.2-1.0.0
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Base on lf-6.18.2-1.0.0
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| | | | |
| | | |
| | | |
| | | | |
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Base on lf_6.18.2-1.0.0
- Don't deploy the extra/runtime firmware, it's not needed by imx-boot
- Don't create separate packages for the firmware, one package is
sufficient
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| | | | | |
|
| |\ \ \ \
| | | | |
| | | | | |
g2d: Upgrade to 2.5.0.2
|
| | | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| | | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| | | |/ /
| |/| |
| | | |
| | | | |
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| | | | | |
|
| |\ \ \ \
| | | | |
| | | | | |
Weston/libdrm update to lf-6.18.2
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- Enable pipewire backend for weston 14
- weston-init: Fix arg rename --no-clients-resize -> --no-resizeable,
The command line argument --no-clients-resize is renamed for Weston 14
to --no-resizeable.
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| | |/ / /
| | | |
| | | |
| | | | |
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| |\ \ \ \
| |_|_|/
|/| | | |
conf/machine: Drop non-existent image type sdcard
|
| |/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This is a follow-up to commit 777cb1b05ba7 ("conf/machine: Drop non-existent image type sdcard")
Original commit message:
The machine configuration files specify an image type `sdcard` via
`UBOOT_CONFIG`. This type is not listed in `IMAGE_TYPES`, and the
specification appears to have no effect on the build. It appears to be
historical only and of no use, so drop it.
Signed-off-by: Christophe Guerreiro <christophe.guerreiro@non.se.com>
|
| | | | |
|
| |\ \ \
| | | |
| | | | |
gst-example: downgrade to 1.26.6
|
| | | | |
| | | |
| | | |
| | | | |
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| | | |/
| |/|
| | |
| | |
| | |
| | | |
The recipes no .imx subfix in PV
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
|
| |\ \ \
| |/ /
|/| | |
mxsldr_git: update URL
|
| |/ /
| |
| |
| |
| |
| |
| | |
git.denx.de is just a forward. Switch to the real URL. While at it,
add https protocol explicitly.
Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
|