- Jul 18, 2023
-
-
GitBot authored
-- Commit: seco-ne/yocto/infrastructure/gitlab-ci@6bfa1bad Make distro and image combos dynamic -- Commit: seco-ne/yocto/infrastructure/gitlab-ci@414ebe6d Add python code analysis via sourcery Disable all checks which do not pass currently. These should be enabled in the future along with a code refactoring to make them pass. -- Commit: seco-ne/yocto/infrastructure/gitlab-ci@df817ecf README: Add howto to create a new project.
-
- Jul 14, 2023
-
-
Dmitry Petrov authored
The package depends on gbm which is not supported for seco-mx6-fsl machine. See commit 4420f4fa ("qtbase: Remove gbm packageconfig_distro option for seco-mx6-fsl machine"). Also the package depends on libavcodec provided by ffmpeg. It requires to accept the commercial license. The following line should be added to local.conf: LICENSE_FLAGS_ACCEPTED = "commercial_ffmpeg"
-
- Jul 12, 2023
-
-
The Medium Quality Sound (MQS) interface on the Nallino was patched to reduce unwanted noise during audio playback. The service triggers some initialization routines in the audio stack by playing a silent sine wave. Original commit by Sam Crossman <sam.crossman@seco.com> BCS 746-001388 (cherry picked from commit b10ff5b8)
-
Jonas Höppner authored
BCS 746-001397
-
- Jul 06, 2023
-
-
Felix Gerking authored
The used redirection was not POSIX compliant.
-
Jonas Höppner authored
With the layer upgrade there seem to be some build problems and we do not really need this variant currently.
-
- Jun 27, 2023
-
-
Felix Gerking authored
If the --files-on-target flag is set, the partition where the installation files are stored remains mounted during the installation. The partition from which to install cannot be a target partition for the installation. Since the partition table cannot be changed safely, the --reuse-partition option is implied. BCS 746-001239
-
- Jun 23, 2023
-
-
Jonas Höppner authored
-
- Jun 22, 2023
-
-
Jonas Höppner authored
The return code from the awk script was used in two if cases with "$?", but the value in $? is set to the result of the first '[]' command in the first if. Fixed this by storing the result in a seperate variable. BCS 746-001371
-
Jonas Höppner authored
Until now we only update the rotation in the weston.ini based on the fbcon rotation from the kernel command line during installation/1st boot. This service updates it during each boot.
-
- Jun 20, 2023
-
-
Tobias Kahlki authored
Set rotation of ts_calibrate according to the value from fbcon. BCS 746-001371
-
Tobias Kahlki authored
BCS 746-001371
-
Tobias Kahlki authored
If the transform for the internal display doesn't match the rotation of the fbcon, the service fixes the weston.ini. BCS 746-001371
-
Tobias Kahlki authored
Changed from simple to notify, so that the service blocks dependencies until it has run successfully.
-
- Jun 19, 2023
-
-
Tobias Kahlki authored
-
Tobias Kahlki authored
With the read-only option, storing the keys under /etc doesn't work. This results in sshd generating new keys upon each boot, which is slow and throws SSH errors. Move the location for the keys to the persistent storage on /etc/shared.
-
Tobias Kahlki authored
dependency Added /root to the active overlays. Also added a udev reload/trigger to the service script, because the udev rules are run before our service starts. Finally, added weston as dependency, since we might need a custom weston.ini from the overlay. BCS 746-001371
-
Tobias Kahlki authored
-
- Jun 15, 2023
-
-
Tobias Kahlki authored
If the user partition was just created, no filesystem is present on it. This led to an abort of the installation, because the filesystem check failed. We now assume a newly created partition if the PART_USER variable is set, but no filesystem was found.
-
Tobias Kahlki authored
BCS 746-001386
-
Tobias Kahlki authored
BCS 746-001386
-
Tobias Kahlki authored
-
Tobias Kahlki authored
BCS 746-001386
-
- Jun 09, 2023
-
-
Tobias Kahlki authored
The old behaviour of sconfig was to set the name together with the serial number. We reintroduced the functionality and renamed the prefix to SNE (for SECO Northern Europe). BCS 746-001063
-
- Jun 06, 2023
-
-
Felix Gerking authored
Since the weston now runs without kiosk-shell, the demo is forced into fullscreen mode by Qt.
-
Felix Gerking authored
We decided to enable Xwayland by default.
-
gfxml2dto was updated to handle FSL based imx6 dts, which set up LVDS related nodes differently compared to vanila kernel. Signed-off-by:
Mikhail Vanyulin <mikhail.vanyulin@rtsoft.de>
-
- Jun 02, 2023
-
-
GitBot authored
-- Commit: seco-ne/yocto/infrastructure/gitlab-ci@31e5a427 CI: package: Increase timeout to 90 We had timeouts during the upload of the artifacts so I increase it to 90 minutes.
-
- Jun 01, 2023
-
-
Felix Gerking authored
Disable kiosk-shell and enable xwayland if x11 is included in the DISTRO_FREATURES variable. BCS 746-001308
-
Integrating patch from upstream: https://gitlab.freedesktop.org/wayland/weston/-/commit/1cb46994e3808e8000300ed9ae9dcaa0b76bff28 The patch fixes position of X application running with parameter "-geometry +0+0". Signed-off-by:
Dmitry Petrov <dmitry.petrov@rtsoft.de>
-
These patches are for a newer version of the package and do not apply to the currently used one. Signed-off-by:
Mikhail Vanyulin <mikhail.vanyulin@rtsoft.de>
-
Signed-off-by:
Mikhail Vanyulin <mikhail.vanyulin@rtsoft.de>
-
It contains some basic x11 applications. Signed-off-by:
Mikhail Vanyulin <mikhail.vanyulin@rtsoft.de>
-
xcomposite-glx is automatically added with x11 distro feature, but it is not provided by etnaviv mesa. FSL bbappend also removes it for imx6,7,8 for mainline and nxp bsps. Signed-off-by:
Mikhail Vanyulin <mikhail.vanyulin@rtsoft.de>
-
BCS #19675
-
- May 29, 2023
-
-
Dmitry Petrov authored
When openssl functions are called from qt, the following errors appears: qt.network.ssl: QSslSocket: cannot resolve EVP_PKEY_base_id qt.network.ssl: QSslSocket: cannot resolve SSL_get_peer_certificate This is a known issue for "meta-qt5" layer: https://github.com/meta-qt5/meta-qt5/issues/437 The solution is to force libQt5Network.so to link against openssl library at compile-time by providing "-openssl-linked" option. https://doc.qt.io/qt-5/ssl.html#enabling-and-disabling-ssl-support The qtbase recipe has a special variable "OPENSSL_LINKING_MODE" that allows to choose whether to link to OpenSSL library at linking time or run time. Signed-off-by:
Dmitry Petrov <dmitry.petrov@rtsoft.de>
-
- May 26, 2023
-
-
Tobias Kahlki authored
Added a fallback to zeroconf, if the DHCP requests fail for 10 retries. BCS 746-001305
-
- May 24, 2023
-
-
Tobias Kahlki authored
-
Tobias Kahlki authored
The xconfig tool is required for two custom projects. Readd it in the packagegroup. BCS 746-001306
-
This commit - checks the device tree for the bootloader version - adds a special handling when comparing bootloader versions: old u-boot versions (2020.04) will be evaluated as smaller than newer fng-system-styled bootloaders version (36.0.2) - adds the missing yocto function to the usage docs - adds the missing list function to the args parser
-