Compare commits

...

1 Commits

Author SHA1 Message Date
a7c9f1763e init template for uConsole (expect not to work) 2025-04-23 09:23:51 +02:00

View File

@ -0,0 +1,29 @@
# Template file for 'linux-6.12-uConsole'
pkgname=linux-6.12-uConsole
version=6.12.19
revision=1
wrksrc="linux-${version}"
build_style=gnu-configure
hostmakedepends="bc perl python3 bash git"
makedepends="elfutils openssl-devel liblz4-devel zlib-devel"
short_desc="Patched Linux kernel for the ClockworkPi uConsole using Raspberry Pi CMx"
maintainer=""
license="GPL-2.0-only"
homepage="https://github.com/ak-rex/ClockworkPi-linux"
distfiles="git+https://github.com/ak-rex/ClockworkPi-linux.git"
checksum=SKIP # You can update this after downloading
gitrev=9a9e5a6d3e6a2a1c8b2c9f9c9b9c9c9c9c9c9c9c
do_configure() {
make defconfig # Or use a custom config
}
do_build() {
make -j$(nproc)
}
do_install() {
make INSTALL_MOD_PATH=${DESTDIR} modules_install
cp -v arch/x86/boot/bzImage ${DESTDIR}/boot/vmlinuz-${pkgname}
}