-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Ubuntu 24.04 (#188) * separate out qtwayland5 compilation * ubuntu 22.04 * temp build system image * remove bionic deps * temp packages update * update armhf packages * back to libstdc++6 * replaced remove dqt5-default meta package with actual depss * fix for build libqmi crashing with /usr/bin/env: 'python': No such file or directory * mapbox-gl-native gcc11 fix * openpilot_dependencies.sh change * ubuntu-base 24.04 daily current * apt install meson because PEP 668 * temp g++-11 for mapbox-gl-native * bump capnproto to 1.0.2 * temp build only agnos-compiler-mapbox-gl-native * Fixes for compiling mapbox-gl-native * Fixes for compiling ffmpeg * Build main system image again * pyopencl from git since no 2023.1.5 release since inducer/pyopencl#705 * Try to fix checkinstall - no success * apt capnproto & ffmpeg since can't figure out issue with checkinstall * Commented removed services disable * Ubuntu 24.04 currently has arm-none-eabi/12.2.1 but just use wildcard to go to first folder * pyclean is missing ?! * ubuntu-latest in tests workflow * Updated README * Reverted internal/package_ota.py changes * rebuilt kernel * poetry.lock update * Simplified build_system pipeline * headers for capnproto * Fix typo * Fix for checkinstall * Reverted apt capnproto & ffmpeg * Some cleaning in Dockerfile * 24.04 libwayland-client * libffi6:armhf deb file * Updated qtwayland * Revert "libffi6:armhf deb file" This reverts commit bb9cb5d. * libffi.so.6.0.4 * qt5-qmake qtbase5-dev qtbase5-dev-tools already in qt5-default * Removed qtwayland old files * checkinstall temp fix * QStandardPaths: wrong permissions on runtime directory /var/tmp/weston, 0770 instead of 0700 * temp permissions fix makes loading build spinner show * temp build optimization * 24.04 new libs * build kernel don't use tools on aarch64/arm64 * updated boot image and ko files * cleaning * switch to release 24.04 * wip - downgrade qt and libwayland * polkitd-pkla package to support polkit *.pkla * fixed issue with old qt needing libssl 1.1.1f * remove /.dockerenv file * more cleaning --------- Co-authored-by: Justin Newberry <[email protected]> Co-authored-by: Adeeb Shihadeh <[email protected]> * Ubuntu 24.04 branch fixes (#235) * bump version * /lib64 is now UsrMerged * latest pip poetry; poetry.lock update --------- Co-authored-by: Adeeb Shihadeh <[email protected]> * revert README * [upload] * disable failing nvmf-autoconnect.service * disable failing networking.service * [upload] * no replacement for ondemand.service * snapd.service is in snapd package we don't install * nfs is using rpc-pipefs-generator now, when used * checkinstall is still not fixed so remove TODO * updated comment about usr merged lib64 * added checkinstall bug link * removed not used libffi.so.6 and libwayland-client.so.0 * cleaned compile-qtwayland5.sh and removed 5.15 patch * removed unused qt-comma 5.15 deb * cleaned up custom debs for qt and libwayland and added a README * fixed typo [upload] * change version * build-libwayland-deb.sh * build-qt-deb.sh * cleaned README * [upload] * fix libdl.so qtwayland build [upload] * rebuild debs * update libdl path [upload] * added missing systemd-resolved * ping capability * disable some systemd services * etc/resolv.conf link should not be needed * Revert "etc/resolv.conf link should not be needed" This reverts commit b627615. * Revert "ping capability" This reverts commit 812ca35. * set ping capability outside of container * disable systemd services: console-setup and sfsconfig Co-authored-by: Robin Reckmann <[email protected]> * disabled more systemd services * bump version [upload] * update version --------- Co-authored-by: Justin Newberry <[email protected]> Co-authored-by: Adeeb Shihadeh <[email protected]> Co-authored-by: Robin Reckmann <[email protected]>
- Loading branch information
1 parent
cd181f2
commit 4a924da
Showing
28 changed files
with
366 additions
and
81 deletions.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
10.1 | ||
11 |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
#!/bin/bash -e | ||
|
||
# Patched qtwayland that outputs a fixed screen size | ||
# Clone qtwayland submodule, checkout 5.12.9 (5.12.8 leaks timers, see https://bugreports.qt.io/browse/QTBUG-82914), apply patch, qmake, make | ||
# Clone qtwayland submodule, checkout, apply patch, qmake, make | ||
VERSION=5.12.9 | ||
|
||
cd /tmp | ||
git clone --branch v5.12.9 https://github.com/qt/qtwayland.git | ||
git clone --branch v${VERSION} --depth 1 https://github.com/qt/qtwayland.git | ||
cd qtwayland | ||
|
||
git apply /tmp/agnos/patch | ||
git apply /tmp/agnos/patch-qtwayland-v5.12 | ||
|
||
# qtwayland is incorrectly built against libdl.so instead of libdl.so.2 | ||
# https://stackoverflow.com/a/75855054/639708 | ||
ln -s libdl.so.2 /usr/lib/aarch64-linux-gnu/libdl.so | ||
|
||
mkdir /tmp/build && cd /tmp/build | ||
qmake /tmp/qtwayland | ||
|
||
export MAKEFLAGS="-j$(nproc)" | ||
make | ||
|
||
checkinstall -yD --install=no --pkgversion="5.12.8" --pkgname=qtwayland5 --pkgarch=arm64 --replaces=qtwayland5,libqt5waylandclient5,libqt5waylandcompositor5 | ||
# remove "--fstrans=no" when checkinstall is fixed (still not fixed in 24.04) | ||
# # https://bugs.launchpad.net/ubuntu/+source/checkinstall/+bug/78455 | ||
checkinstall -yD --install=no --fstrans=no --pkgversion="${VERSION}" --pkgname=qtwayland5 --pkgarch=arm64 --replaces=qtwayland5,libqt5waylandclient5,libqt5waylandcompositor5 | ||
mv qtwayland5*.deb /tmp/qtwayland5.deb |
This file was deleted.
Oops, something went wrong.
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.