6f5582e2c7
Base package to be used as dependency for linux and linux-lts. This way they can share the same code and users who want to stick with a given kernel version can just install that one and linux-base instead of needing the linux or linux-lts meta and ignorepkg dances.
18 lines
526 B
Bash
18 lines
526 B
Bash
# Template file for 'linux-base'
|
|
pkgname=linux-base
|
|
version=2021.07.21
|
|
revision=1
|
|
build_style=meta
|
|
short_desc="Linux kernel base dependencies"
|
|
maintainer="Érico Nogueira <ericonr@disroot.org>"
|
|
license="Public Domain"
|
|
homepage="https://voidlinux.org/"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
i686*|x86_64*)
|
|
depends="linux-firmware-amd linux-firmware-intel linux-firmware-nvidia linux-firmware-network dracut"
|
|
;;
|
|
ppc*|armv7l*|aarch64*)
|
|
depends="linux-firmware-amd linux-firmware-nvidia linux-firmware-network dracut"
|
|
;;
|
|
esac
|