Hybris
Libhybris is an Android compatibility layer, allowing libraries compiled with bionic libc to be loaded by applications built with different libc (originally glibc, musl in postmarketOS case). It allows to run proprietary Android userspace drivers on top of a downstream kernel by running parts of Android in a container. The upsides and downsides of this approach are discussed in pmaports#703.
There were some efforts with limited success to make it work in postmarketOS. But due to lack of maintenance, it was decided to drop it from pmaports in August of 2020.
Later in August of 2020, hybrisOS project was created to bring Halium-related packages to postmarketOS. Unfortunately, it was decided not to merge Halium packages back on pmOS team meeting. Currently hybris-related packages are stored on hybrisOS project GitLab.
Introduction
The main steps are:
- prepare pmOS kernel for it to be able to use lxc
- create device-specific device-vendor-codename-hybris package
For help, you may want to join #hybrisos:kde.org on Matrix.
Requirements
Target Device
For Halium adaptation to work, your device must have:
- armv7 or aarch64 architecture
- Linux 3.17 or newer(need getrandom and memfd_create syscalls)
- Project Treble support and Android 9 /vendor partition OR official Halium-9 port without Treble
Preparing kernel
For preparing kernel, you need to clone https://github.com/Halium/halium-boot repo:
$ git clone https://github.com/Halium/halium-boot
Then, check kernel config with this command:
$ ./halium-boot/check-kernel-config path/to/my/defconfig -w
Your defconfig is located at $(pmbootstrap config aports)/device/testing/linux-vendor-codename/config-vendor-codename.arch
.
You may run that command twice to make sure everything got fixed. Then run the command again without -w
flag to check if everything is fine.
If everything is fixed, make sure you update the version of kernel package:
$ pmbootstrap pkgrel_bump linux-vendor-codename
Then, rebuild the kernel:
$ pmbootstrap build linux-vendor-codename
If you have any errors, search for patches or enter Matrix room for assistance.
Make device-specific hybris package
To make Halium installation automatic, fork your device package:
$ cp -r $(pmbootstrap config aports)/device/testing/device-vendor-codename \
$(pmbootstrap config aports)/device/testing/device-vendor-codename-hybris
Then modify its APKBUILD, adding these functions:
nonfree_userland() {
pkgdesc="Pull in libhybris (Android 9) hardware adaptation packages"
depends="$pkgname-hybris"
mkdir "$subpkgdir"
}
hybris() {
pkgdesc="Metapackage for libhybris (Android 9) adaptation"
depends="hybris-gsi-9.0 pulseaudio-modules-droid-9.0 bluebinder"
mkdir "$subpkgdir"
}
hybris_x11() {
pkgdesc="X11 modules for libhybris (Android 9) adaptation"
depends="hybris-base-9.0-x11"
install_if="$pkgname-hybris libx11"
mkdir $subpkgdir
}
hybris_phosh() {
pkgdesc="Phosh configuration for libhybris adaptation"
install_if="$pkgname-hybris postmarketos-ui-phosh"
depends="wlroots-hwc2"
}
Also modify packages submodules, adding these options:
$pkgname-nonfree-userland:nonfree_userland
$pkgname-hybris
$pkgname-hybris-x11:hybris_x11
$pkgname-hybris-phosh:hybris_phosh
TODO: explain udev rules(/me has no idea) |
After that's done, you should be ready to proceed to installing postmarketOS with Halium packages!
Installing postmarketOS with Halium adaptation
Choose codename-hybris as device's codename in pmbootstrap init
.
Follow Installation guide(https://wiki.postmarketos.org/wiki/Installation_guide).
See also
- Old hybris pmaports
- Previous version of this wiki page (before libhybris support was dropped from postmarketOS)
- pmaports!1144 WIP Android 9 support for pmaports
- #1402 Initial packaging of libhybris
- Droid 4: the device for which NotKit originally made the libhybris support
- Gemini PDA: NotKit also made it work with libhybris
- One year of postmarketOS: libhybris and optional proprietary components
- 219 days of postmarketOS: libre drivers and libhybris
- Team meeting
- halium-related packages
- hybrisOS project page
See also
- Old hybris pmaports
- Previous version of this wiki page (before libhybris support was dropped from postmarketOS)
- pmaports!1144 WIP Android 9 support for pmaports
- #1402 Initial packaging of libhybris
- Droid 4: the device for which NotKit originally made the libhybris support
- Gemini PDA: NotKit also made it work with libhybris
- One year of postmarketOS: libhybris and optional proprietary components
- 219 days of postmarketOS: libre drivers and libhybris