- Mar 06, 2020
-
-
This adds basic functionality for the Moto One Hyper. The device boots with rootfs on sd, booted by 'pmbootstrap flasher boot'. USB net works, and i can ssh in. There is no framebuffer device, but weston works with the drm backend instead of fbdev. Touchscreen support is not implemented yet, but i will update this with support when i get the chance. Most other functionality either does not seem to work yet or has not been tested (wifi, audio, modem, etc).
-
- Mar 05, 2020
-
-
-
Previously (after switch to mainline) it was used device-asus-grouper. Signed-off-by:
David Heidelberg <david@ixit.cz>
-
Signed-off-by:
David Heidelberg <david@ixit.cz>
-
Signed-off-by:
David Heidelberg <david@ixit.cz>
-
CONFIG options added: - nvidia tegra partition support (now it's kernel option) - CONFIG_SECCOMP support (needed for Epiphany and lot of others) - CONFIG_USER_NS required for bubble wrap (used by Epiphany) - CONFIG_TEGRA_SOCTHERM as module, required for thermal management DTS change: - grouper we all have has codename "tilapia" (w/ GSM), since no-one had "older" grouper - in future, when we get testing, we'll add "real" grouper (wo/ GSM) - no functional change in DTS (except wiring SMB347 driver) Kernel changes: - added SMB347 driver support (now it's able report charging state) Signed-off-by:
David Heidelberg <david@ixit.cz>
-
Bart Ribbers authored
Add a patch to fix an issue where the virtualkeyboard if open before locking the screen, would not disappear when locked
-
Bart Ribbers authored
Add a patch to fix an issue with word wrapping on the language KCM
-
Bart Ribbers authored
Add a patch that fixes an issue with an empty info message being shown on the top of the wifi KCM
-
David Heidelberg authored
v2: - Also switch firmware/firmware-asus-flo - fix linting warnings device/linux-asus-flo/APKBUILD: IC:[AL6]:device/linux-asus-flo/APKBUILD:36:prefix custom variable with _: HOSTCC="${CC:-gcc}" IC:[AL6]:device/linux-asus-flo/APKBUILD:37:prefix custom variable with _: HOSTCC="${HOSTCC#${CROSS_COMPILE}}" IC:[AL6]:device/linux-asus-flo/APKBUILD:39:prefix custom variable with _: ksrcdir="$srcdir/linux-$pkgver" MC:[AL5]:device/linux-asus-flo/APKBUILD:10:variable set to empty string: depends="" MC:[AL5]:device/linux-asus-flo/APKBUILD:13:variable set to empty string: install= MC:[AL5]:device/linux-asus-flo/APKBUILD:30:variable set to empty string: subpackages="" MC:[AL31]:device/linux-asus-flo/APKBUILD:36:variables must not have capital letters MC:[AL31]:device/linux-asus-flo/APKBUILD:37:variables must not have capital letters MP:[AL32]:device/linux-asus-flo/APKBUILD:3:unnecesary usage of braces: ${_flavor} MP:[AL32]:device/linux-asus-flo/APKBUILD:4:unnecesary usage of braces: ${_flavor} MP:[AL32]:device/linux-asus-flo/APKBUILD:32:unnecesary usage of braces: ${pkgver} firmware/firmware-asus-flo/APKBUILD: MC:[AL28]:firmware/firmware-asus-flo/APKBUILD:12:literal integers must not be quoted MP:[AL32]:firmware/firmware-asus-flo/APKBUILD:15:unnecesary usage of braces: ${_url_aosp} MP:[AL32]:firmware/firmware-asus-flo/APKBUILD:15:unnecesary usage of braces: ${_version_broadcom} MP:[AL32]:firmware/firmware-asus-flo/APKBUILD:16:unnecesary usage of braces: ${_url_aosp} MP:[AL32]:firmware/firmware-asus-flo/APKBUILD:16:unnecesary usage of braces: ${_version_qcom} MP:[AL32]:firmware/firmware-asus-flo/APKBUILD:22:unnecesary usage of braces: ${_commit_other} MP:[AL32]:firmware/firmware-asus-flo/APKBUILD:24:unnecesary usage of braces: ${_commit_other} MP:[AL32]:firmware/firmware-asus-flo/APKBUILD:24:unnecesary usage of braces: ${_url_other} Signed-off-by:
David Heidelberg <david@ixit.cz>
- Mar 03, 2020
-
-
-
-
-
-
These dependencies don't belong here. - iw: should be installed by the user themselves when wanted - nano: should be installed by the user themselves when wanted - pulseaudio: should be installed by the UI meta packages that need it instead - pulseaudio-alsa: should automatically be installed when both PulseAudio and alsa are installed https://gitlab.alpinelinux.org/alpine/aports/merge_requests/4820
-
- Mar 02, 2020
-
-
py3-setuptools is not only a build dependency, but a runtime dependency too.
-
- Mar 01, 2020
-
-
see #327.
-
see #327.
-
-
-
The downstream kernel doesn't provide a separate dtb file, but the experimental mainline kernel does. Previously, the deviceinfo specified a dtb file for both kernels, and pmbootstrap ignored the missing file for downstream kernel. pmbootstrap now errors when the dtb file is missing, so this fixes the downstream kernel by specifying a dtb file only for the upstream kernel.
-
Oliver Smith authored
Require new pmbootstrap that gives the boot partition enough space required for latest mkinitfs script changes. Besides that, latest pmbootstrap has a big number of improvements. Refer to the changelog for details. Related: https://gitlab.com/postmarketOS/pmbootstrap/-/merge_requests/1884 Related: https://gitlab.com/postmarketOS/pmbootstrap/-/tags (changelog)
-
This breaks booting on Librem 5 and is not needed on any device currently using downstreamkernel_package, so remove it.
-
- Feb 29, 2020
-
-
Phosh handles very badly X, so let's avoid using it.
-
Fix --fde on the PinePhone (actually it fixes it for devices that uses the pmos_root cmdline).
-
Partial revert of 24fa68c9 ("avoid storing initramfs-extra twice"). Some people have (rightfully) complained that including the hash in the filename of the initramfs-extra prevents the device from booting whenever the boot partition gets out of sync with the boot image. In general we should assume that those two are in sync, but there is no need to unnecessarily break this if previously booting the outdated extra initramfs worked just fine. At the end, the hash is just an implementation detail for the caching mechanism - we need it when (re-)generating the initramfs, but it does not have to be within the filename. Instead, we can simply append the hash to the file contents. GZIP will simply ignore the trailing garbage. The boot partition will then look like: $ cat /boot/initramfs-<flavor>-extra <GZIP data>d3c7b449c6fc811d97351bbc46852b66 (the hash) This makes the filename of initramfs-extra nice and stable again. It also fixes a regression where the initramfs-extra would no longer get symlinked by "pmbootstrap export" (I was going to fix that in pmbootstrap but now this solution is more appealing...) While we're at it: Make the script more resilient again by writing to a temporary file first, then move it (atomically) to the real path.
-
We should do this in the UI packages that need it rather than in the device packages themselves because for example Phosh doesn't need Ofono but ModemManager
-
-
Oliver Smith authored
gdm is missing in Alpine for armhf [ci:skip-vercheck] Related: https://builds.sr.ht/~postmarketos/job/160896
-
-
Stop manually making the build dir in a custom prepare() function, but rather use the CMake -B argument to automatically make this directory. [ci:skip-vercheck]: since this doesn't change the resulting package compared to our previous APKBUILD a pkgrel bump is not necessary. [ci:skip-build]: already built successfully in CI
-
-
- Feb 28, 2020
-
-
Minecrell authored
Using commands like sed -i '/^subpackages=""$/d' linux-*/APKBUILD [ci:skip-build] [ci:skip-vercheck]
-
Minecrell authored
-
Minecrell authored
sed -i -E 's/\$\{(\w+)\}/$\1/g' linux-*/APKBUILD Manually revert ${CROSS_COMPILE} in linux-motorola-maserati.
-
Minecrell authored
Those are pretty stupid.
-
Minecrell authored
-
Minecrell authored
HOSTCC defaults to gcc, so we should only set it to override it if we want to use an older GCC. Removing it avoids annoying linter warnings caused by the HOSTCC="..." variable assignments.
-
Signed-off-by:
Danct12 <danct12@disroot.org>
-