# ARMv7 multi-platform # Maintainer: Kevin Mihelich buildarch=4 pkgbase=linux-armv7 _srcname=linux-6.11 _kernelname=${pkgbase#linux} _desc="ARMv7 multi-platform" pkgver=6.11 pkgrel=3 rcnver=6.11.0 rcnrel=multiv7-r1 arch=('armv7h') url="http://www.kernel.org/" license=('GPL2') makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc' 'git' 'uboot-tools' 'vboot-utils' 'dtc') options=('!strip') source=("https://www.kernel.org/pub/linux/kernel/v6.x/${_srcname}.tar.xz" "https://www.kernel.org/pub/linux/kernel/v6.x/patch-${pkgver}.xz" "https://rcn-ee.com/deb/sid-armhf/v${rcnver}-${rcnrel}/patch-${rcnver%.0}-${rcnrel}.diff.gz" '0001-ARM-atags-add-support-for-Marvell-s-u-boot.patch' '0002-ARM-atags-fdt-retrieve-MAC-addresses-from-Marvell-bo.patch' '0003-fix-mvsdio-eMMC-timing.patch' '0004-net-smsc95xx-Allow-mac-address-to-be-set-as-a-parame.patch' '0005-set-default-cubietruck-led-triggers.patch' '0006-exynos4412-odroid-set-higher-minimum-buck2-regulator.patch' '0007-USB-Armory-MkII-support.patch' 'config' 'kernel.its' 'kernel.keyblock' 'kernel_data_key.vbprivk' 'linux.preset') md5sums=('612a9feef07be8663098a0a58cddf7a6' '34b2dcd66d05861b6fd46bffd5228f3d' 'a8fee8d94b748323e10b256c3589dd10' 'f531ad638bb6dd9d8e9e2e880c97ea12' 'e3b3f3fa4ccd1f63b24fb6985c8052f3' '006341e2f82759330ed09c666cdb6462' '6a94aa34059489c4c83fce97395fa2b0' '74f514abbd92de3368e3d4cf11165317' '8782b146a24e043a1da5e437f689e864' '527b0497440d97de53ee1e31fd51bdbc' 'ce73991542f08c13042d8a766eeb9e79' '9e4fc0be1094c64af6f127e5be9ceb50' '61c5ff73c136ed07a7aadbf58db3d96a' '584777ae88bce2c5659960151b64c7d8' '8b93b6ca167f70c60277f352f7b78024') prepare() { cd $_srcname echo "Setting version..." echo "-$pkgrel" > localversion.10-pkgrel echo "${pkgbase#linux}" > localversion.20-pkgname # add upstream patch #git apply --whitespace=nowarn ../patch-${pkgver} # RCN patch git apply ../patch-${rcnver%.0}-${rcnrel}.diff # ALARM patches git apply ../0001-ARM-atags-add-support-for-Marvell-s-u-boot.patch git apply ../0002-ARM-atags-fdt-retrieve-MAC-addresses-from-Marvell-bo.patch git apply ../0003-fix-mvsdio-eMMC-timing.patch git apply ../0004-net-smsc95xx-Allow-mac-address-to-be-set-as-a-parame.patch git apply ../0005-set-default-cubietruck-led-triggers.patch git apply ../0006-exynos4412-odroid-set-higher-minimum-buck2-regulator.patch git apply ../0007-USB-Armory-MkII-support.patch cat "${srcdir}/config" > ./.config } build() { cd $_srcname # get kernel version make prepare make -s kernelrelease > version # build! make ${MAKEFLAGS} zImage modules # Generate device tree blobs with symbols to support applying device tree overlays in U-Boot make ${MAKEFLAGS} DTC_FLAGS="-@" dtbs } _package() { pkgdesc="The Linux Kernel and modules - ${_desc}" depends=('coreutils' 'linux-firmware' 'kmod' 'mkinitcpio>=0.7') optdepends=('wireless-regdb: to set the correct wireless channels of your country') provides=("linux=${pkgver}" "KSMBD-MODULE" "WIREGUARD-MODULE") conflicts=('linux') replaces=('linux-mvebu' 'linux-udoo' 'linux-sun4i' 'linux-sun5i' 'linux-sun7i' 'linux-usbarmory' 'linux-wandboard' 'linux-clearfog') install=${pkgname}.install cd $_srcname local kernver="$( "${pkgdir}/usr/lib/initcpio/$( cmdline vbutil_kernel \ --pack vmlinux.kpart \ --version 1 \ --vmlinuz vmlinux.uimg \ --arch arm \ --keyblock ../kernel.keyblock \ --signprivate ../kernel_data_key.vbprivk \ --config cmdline \ --bootloader bootloader.bin mkdir -p "${pkgdir}/boot" cp vmlinux.kpart "${pkgdir}/boot" } _package-odroidc1() { pkgdesc="The Linux Kernel - ${_desc} - ODROID-C1" depends=('linux-armv7') provides=('linux-armv7-uimage') conflicts=('linux-armv7-uimage' 'linux-armv7-rc-uimage') cd "${srcdir}/${_srcname}" mkdir -p "${pkgdir}/boot" mkimage -A arm -O linux -T kernel -C none -a 0x00208000 -e 0x00208000 -n "${pkgname}" -d arch/arm/boot/zImage "${pkgdir}/boot/uImage" } pkgname=("${pkgbase}" "${pkgbase}-headers" "${pkgbase}-chromebook" "${pkgbase}-odroidc1") for _p in ${pkgname[@]}; do eval "package_${_p}() { _package${_p#${pkgbase}} }" done