2020-01-10 16:45:30 +00:00
|
|
|
# Reference: <https://postmarketos.org/devicepkg>
|
2020-04-04 10:30:51 +00:00
|
|
|
# Maintainer: Minecrell <minecrell@minecrell.net>
|
2024-03-17 21:00:25 +00:00
|
|
|
# Co-Maintainer: Oliver Smith <ollieparanoid@postmarketos.org>
|
2017-07-25 20:08:35 +00:00
|
|
|
pkgname=device-qemu-amd64
|
2024-01-11 19:45:25 +00:00
|
|
|
pkgver=6
|
2024-06-18 19:53:59 +00:00
|
|
|
pkgrel=4
|
2020-03-06 13:01:14 +00:00
|
|
|
pkgdesc="Simulated device in QEMU (x86_64)"
|
2018-06-30 07:00:48 +00:00
|
|
|
url="https://postmarketos.org"
|
2018-11-07 06:45:58 +00:00
|
|
|
arch="x86_64"
|
2017-07-25 20:08:35 +00:00
|
|
|
license="MIT"
|
2023-07-10 07:45:18 +00:00
|
|
|
depends="postmarketos-base systemd-boot"
|
2020-01-10 16:45:30 +00:00
|
|
|
makedepends="devicepkg-dev"
|
2024-02-06 00:01:08 +00:00
|
|
|
# First kernel subpackage is default in pmbootstrap init!
|
pmbootstrap init: kernel selection / remove linux-pmos-lts (#1363)
* As discussed in IRC/matrix, we're removing `linux-postmarketos-lts`
for now. The kernel isn't used right now, and we save lots of
maintenance effort with not updating it every week or so.
* new config option `"kernel"` with possible values:
`"downstream", "mainline", "stable"` (downstream is always
`linux-$devicename`)
* ask for the kernel during `pmbootstrap init` if the device package
has kernel subpackages and install it in `_install.py`
* postmarketos-mkinitfs: display note instead of exit with error when
the `deviceinfo_dtb` file is missing (because we expect it to be
missing for downstream kernels)
* device-sony-amami:
* add kernel subpackages for downstream, mainline
* set `deviceinfo_dtb`
* device-qemu-amd64: add kernel subpackages for stable, lts, mainline
* test cases and test data for new functions
* test case that checks all aports for right usage of the feature:
* don't mix specifying kernels in depends *and* subpackages
* 1 kernel in depends is maximum
* kernel subpackages must have a valid name
* Test if devices packages reference at least one kernel
* Remove `_build_device_depends_note()` which informs the user that
`--ignore-depends` can be used with device packages to avoid building
the kernel. The idea was to make the transition easier after a change
we did months ago, and now the kernel doesn't always get built before
building the device package so it's not relevant anymore.
* pmb/chroot/other.py:
* Add autoinstall=True to kernel_flavors_installed(). When the flag
is set, the function makes sure that at least one kernel for the
device is installed.
* Remove kernel_flavor_autodetect() function, wherever it was used,
it has been replaced with kernel_flavors_installed()[0].
* pmb.helpers.frontend.py: remove code to install at least one kernel,
kernel_flavors_installed() takes care of that now.
2018-04-03 23:50:09 +00:00
|
|
|
subpackages="
|
2021-04-21 09:08:17 +00:00
|
|
|
$pkgname-kernel-lts:kernel_lts
|
|
|
|
$pkgname-kernel-virt:kernel_virt
|
2022-07-09 19:20:33 +00:00
|
|
|
$pkgname-kernel-edge:kernel_edge
|
2024-02-06 00:01:08 +00:00
|
|
|
$pkgname-kernel-none:kernel_none
|
2021-04-21 09:08:17 +00:00
|
|
|
$pkgname-mce
|
2021-07-03 08:11:53 +00:00
|
|
|
$pkgname-sway
|
2021-04-21 09:08:17 +00:00
|
|
|
"
|
|
|
|
source="
|
|
|
|
deviceinfo
|
2023-08-02 17:06:01 +00:00
|
|
|
modules-initfs
|
2021-04-21 09:08:17 +00:00
|
|
|
mce-display-blanking.conf
|
|
|
|
"
|
2018-11-07 06:45:58 +00:00
|
|
|
options="!check !archcheck"
|
2017-07-25 20:08:35 +00:00
|
|
|
|
2020-01-10 16:45:30 +00:00
|
|
|
build() {
|
|
|
|
devicepkg_build $startdir $pkgname
|
|
|
|
}
|
|
|
|
|
2017-07-25 20:08:35 +00:00
|
|
|
package() {
|
2020-01-10 16:45:30 +00:00
|
|
|
devicepkg_package $startdir $pkgname
|
2017-07-25 20:08:35 +00:00
|
|
|
}
|
|
|
|
|
2021-04-21 09:08:17 +00:00
|
|
|
mce() {
|
|
|
|
pkgdesc="Prevents screen blanking for UI's using mce (Glacier, Asteroid)"
|
2021-07-03 08:11:53 +00:00
|
|
|
install_if="$pkgname=$pkgver-r$pkgrel mce"
|
2021-04-21 09:08:17 +00:00
|
|
|
install -Dm644 "$srcdir"/mce-display-blanking.conf \
|
|
|
|
"$subpkgdir"/etc/mce/50display-blanking.conf
|
|
|
|
}
|
|
|
|
|
2021-07-03 08:11:53 +00:00
|
|
|
sway() {
|
2021-12-14 06:26:55 +00:00
|
|
|
install_if="$pkgname=$pkgver-r$pkgrel postmarketos-ui-sway"
|
2021-07-03 08:11:53 +00:00
|
|
|
depends="postmarketos-ui-sway-logo-key-alt"
|
|
|
|
mkdir "$subpkgdir"
|
|
|
|
}
|
|
|
|
|
2023-06-02 11:21:27 +00:00
|
|
|
kernel_none() {
|
|
|
|
pkgdesc="No kernel (does not boot! can be used during pmbootstrap testing to save time)"
|
|
|
|
devicepkg_subpackage_kernel $startdir $pkgname $subpkgname
|
|
|
|
}
|
|
|
|
|
2020-02-13 16:27:28 +00:00
|
|
|
kernel_virt() {
|
2024-04-07 23:34:45 +00:00
|
|
|
pkgdesc="Alpine Virt kernel (minimal, no audio/mouse/network)"
|
2020-02-13 16:27:28 +00:00
|
|
|
depends="linux-virt"
|
|
|
|
devicepkg_subpackage_kernel $startdir $pkgname $subpkgname
|
|
|
|
}
|
|
|
|
|
|
|
|
kernel_lts() {
|
2024-04-07 23:34:45 +00:00
|
|
|
pkgdesc="Alpine LTS kernel (recommended)"
|
2020-02-13 16:27:28 +00:00
|
|
|
depends="linux-lts linux-firmware-none"
|
|
|
|
devicepkg_subpackage_kernel $startdir $pkgname $subpkgname
|
|
|
|
}
|
|
|
|
|
2022-07-09 19:20:33 +00:00
|
|
|
kernel_edge() {
|
|
|
|
pkgdesc="Alpine Edge kernel"
|
|
|
|
depends="linux-edge linux-firmware-none"
|
|
|
|
devicepkg_subpackage_kernel $startdir $pkgname $subpkgname
|
|
|
|
}
|
|
|
|
|
2021-07-07 05:06:17 +00:00
|
|
|
sha512sums="
|
2024-06-18 19:53:59 +00:00
|
|
|
74dd746b16f17ce67f6d58b6b86878b6eebaaa473fa36f475074c2c14ed738386c1b5cfcf15ad07b58f94d303799e8a9ed356143061e7854cf38170bef999a0b deviceinfo
|
2023-07-10 07:45:18 +00:00
|
|
|
29766094e64a7ce881c8e96433203ea538057b8fd1d577fc69b9add6bc1217af04ddf60cbcf82333811c627897eda7537b0b1f862899e1fdfd93403b3f6425d7 modules-initfs
|
2021-04-21 09:08:17 +00:00
|
|
|
99d32eed6c5cda59e91516e982c5bd5165ff718133e2411a0dbba04e2057d1dfad49a75e5cc67140d0e0adcbe1383671bd2892335929b782a5b19f5472e635ad mce-display-blanking.conf
|
2021-07-07 05:06:17 +00:00
|
|
|
"
|