2019-08-17 02:29:57 +00:00
|
|
|
# Maintainer: Dave Higham <pepedog@archlinuxarm.org>
|
|
|
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# Maintainer: Oleg Rakhmanov <oleg@archlinuxarm.org>
|
2020-10-16 17:21:14 +00:00
|
|
|
# Maintainer: graysky <graysky@archlinux.us>
|
2019-08-17 02:29:57 +00:00
|
|
|
|
2020-12-10 17:37:08 +00:00
|
|
|
buildarch=12
|
2019-08-17 02:29:57 +00:00
|
|
|
|
|
|
|
pkgbase=linux-raspberrypi4
|
2021-01-20 11:37:39 +00:00
|
|
|
_commit=08ae2dd9e7dc89c20bff823a3ef045de09bfd090
|
2019-08-17 02:29:57 +00:00
|
|
|
_srcname=linux-${_commit}
|
|
|
|
_kernelname=${pkgbase#linux}
|
|
|
|
_desc="Raspberry Pi 4"
|
2021-01-22 15:49:57 +00:00
|
|
|
pkgver=5.4.84
|
|
|
|
pkgrel=1
|
2020-12-10 17:37:08 +00:00
|
|
|
arch=('armv7h' 'aarch64')
|
2019-08-17 02:29:57 +00:00
|
|
|
url="http://www.kernel.org/"
|
|
|
|
license=('GPL2')
|
|
|
|
makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc' 'git')
|
|
|
|
options=('!strip')
|
|
|
|
source=("https://github.com/raspberrypi/linux/archive/${_commit}.tar.gz"
|
|
|
|
'cmdline.txt'
|
|
|
|
'linux.preset'
|
|
|
|
'60-linux.hook'
|
2020-12-10 17:37:08 +00:00
|
|
|
'90-linux.hook'
|
2020-12-22 17:32:26 +00:00
|
|
|
0001-Make-proc-cpuinfo-consistent-on-arm64-and-arm.patch
|
|
|
|
PR4002.patch::https://patch-diff.githubusercontent.com/raw/raspberrypi/linux/pull/4002.patch)
|
2020-12-10 17:37:08 +00:00
|
|
|
source_armv7h=('config' 'config.txt')
|
|
|
|
source_aarch64=('config8' 'config8.txt')
|
2021-01-20 11:37:39 +00:00
|
|
|
md5sums=('8b3e37e161cfbdf01b65ed1e03c8e59f'
|
2019-08-17 02:29:57 +00:00
|
|
|
'60bc3624123c183305677097bcd56212'
|
|
|
|
'86d4a35722b5410e3b29fc92dae15d4b'
|
|
|
|
'ce6c81ad1ad1f8b333fd6077d47abdaf'
|
2020-12-10 17:37:08 +00:00
|
|
|
'69e1db90d78f691dc446fe2ab94727eb'
|
2020-12-22 17:32:26 +00:00
|
|
|
'f66a7ea3feb708d398ef57e4da4815e9'
|
|
|
|
'efb1191fd272d3db49fc19e034408a1c')
|
2021-01-22 12:56:21 +00:00
|
|
|
md5sums_armv7h=('0d7ea1b402c256a5021b7b445c5f186f'
|
2020-12-10 17:37:08 +00:00
|
|
|
'7c6b37a1353caccf6d3786bb4161c218')
|
2021-01-22 12:56:21 +00:00
|
|
|
md5sums_aarch64=('58509ed6e23d8ef14bfb07181cc1b40d'
|
2020-12-23 18:21:46 +00:00
|
|
|
'84a781813024e320245be08b9e260902')
|
2020-12-10 17:37:08 +00:00
|
|
|
|
|
|
|
# setup vars
|
|
|
|
[[ $CARCH == "armv7h" ]] && _kernel=kernel7.img KARCH=arm _image=zImage _config=config _bconfig=config.txt
|
|
|
|
[[ $CARCH == "aarch64" ]] && _kernel=kernel8.img KARCH=arm64 _image=Image _config=config8 _bconfig=config8.txt
|
2019-08-17 02:29:57 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd "${srcdir}/${_srcname}"
|
|
|
|
|
2020-12-10 17:37:08 +00:00
|
|
|
cat "${srcdir}/$_config" > ./.config
|
2019-08-17 02:29:57 +00:00
|
|
|
|
|
|
|
# add pkgrel to extraversion
|
|
|
|
sed -ri "s|^(EXTRAVERSION =)(.*)|\1 \2-${pkgrel}|" Makefile
|
|
|
|
|
|
|
|
# don't run depmod on 'make install'. We'll do this ourselves in packaging
|
|
|
|
sed -i '2iexit 0' scripts/depmod.sh
|
2020-12-10 17:37:08 +00:00
|
|
|
|
|
|
|
patch -Np1 -i ../0001-Make-proc-cpuinfo-consistent-on-arm64-and-arm.patch
|
2020-12-22 17:32:26 +00:00
|
|
|
|
|
|
|
# this PR is required for correct seeking of non-HEVC videos on 5.4.y kernels
|
|
|
|
# see: https://github.com/popcornmix/xbmc/commit/579551ef130f80963a857f0af3a2a984b112d26c
|
|
|
|
patch -Np1 -i ../PR4002.patch
|
2019-08-17 02:29:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${_srcname}"
|
|
|
|
|
|
|
|
# get kernel version
|
|
|
|
make prepare
|
|
|
|
|
|
|
|
# load configuration
|
|
|
|
# Configure the kernel. Replace the line below with one of your choice.
|
|
|
|
#make menuconfig # CLI menu for configuration
|
|
|
|
#make nconfig # new CLI menu for configuration
|
|
|
|
#make xconfig # X-based configuration
|
|
|
|
#make oldconfig # using old config from previous kernel version
|
|
|
|
#make bcmrpi_defconfig # using RPi defconfig
|
|
|
|
# ... or manually edit .config
|
|
|
|
|
|
|
|
# Copy back our configuration (use with new kernel version)
|
|
|
|
#cp ./.config ../${pkgver}.config
|
|
|
|
|
|
|
|
####################
|
|
|
|
# stop here
|
|
|
|
# this is useful to configure the kernel
|
|
|
|
#msg "Stopping build"
|
|
|
|
#return 1
|
|
|
|
####################
|
|
|
|
|
|
|
|
#yes "" | make config
|
|
|
|
|
2020-12-10 17:37:08 +00:00
|
|
|
make ${MAKEFLAGS} $_image modules dtbs
|
2019-08-17 02:29:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_package() {
|
|
|
|
pkgdesc="The Linux Kernel and modules - ${_desc}"
|
|
|
|
depends=('coreutils' 'linux-firmware' 'kmod' 'mkinitcpio>=0.7' 'firmware-raspberrypi')
|
|
|
|
optdepends=('crda: to set the correct wireless channels of your country')
|
|
|
|
provides=('kernel26' "linux=${pkgver}")
|
2020-12-10 17:37:08 +00:00
|
|
|
conflicts=('kernel26' 'linux' 'uboot-raspberrypi')
|
2019-08-17 02:29:57 +00:00
|
|
|
install=${pkgname}.install
|
|
|
|
backup=('boot/config.txt' 'boot/cmdline.txt')
|
|
|
|
replaces=('linux-raspberrypi-latest')
|
|
|
|
|
|
|
|
cd "${srcdir}/${_srcname}"
|
|
|
|
|
|
|
|
# get kernel version
|
|
|
|
_kernver="$(make kernelrelease)"
|
|
|
|
_basekernel=${_kernver%%-*}
|
|
|
|
_basekernel=${_basekernel%.*}
|
|
|
|
|
|
|
|
mkdir -p "${pkgdir}"/{boot,usr/lib/modules}
|
|
|
|
make INSTALL_MOD_PATH="${pkgdir}/usr" modules_install
|
|
|
|
make INSTALL_DTBS_PATH="${pkgdir}/boot" dtbs_install
|
|
|
|
|
2020-12-23 18:21:46 +00:00
|
|
|
if [[ $CARCH == "aarch64" ]]; then
|
|
|
|
# drop hard-coded devicetree=foo.dtb in /boot/config.txt for
|
|
|
|
# autodetected load of supported of models at boot
|
|
|
|
find "${pkgdir}/boot/broadcom" -type f -print0 | xargs -0 mv -t "${pkgdir}/boot"
|
|
|
|
rmdir "${pkgdir}/boot/broadcom"
|
|
|
|
fi
|
|
|
|
|
2020-12-10 17:37:08 +00:00
|
|
|
cp arch/$KARCH/boot/$_image "${pkgdir}/boot/$_kernel"
|
|
|
|
|
2019-08-17 02:29:57 +00:00
|
|
|
cp arch/$KARCH/boot/dts/overlays/README "${pkgdir}/boot/overlays"
|
|
|
|
|
|
|
|
# make room for external modules
|
|
|
|
local _extramodules="extramodules-${_basekernel}${_kernelname}"
|
|
|
|
ln -s "../${_extramodules}" "${pkgdir}/usr/lib/modules/${_kernver}/extramodules"
|
|
|
|
|
|
|
|
# add real version for building modules and running depmod from hook
|
|
|
|
echo "${_kernver}" |
|
|
|
|
install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modules/${_extramodules}/version"
|
|
|
|
|
|
|
|
# remove build and source links
|
|
|
|
rm "${pkgdir}"/usr/lib/modules/${_kernver}/{source,build}
|
|
|
|
|
|
|
|
# now we call depmod...
|
|
|
|
depmod -b "${pkgdir}/usr" -F System.map "${_kernver}"
|
|
|
|
|
|
|
|
# sed expression for following substitutions
|
|
|
|
local _subst="
|
|
|
|
s|%PKGBASE%|${pkgbase}|g
|
|
|
|
s|%KERNVER%|${_kernver}|g
|
|
|
|
s|%EXTRAMODULES%|${_extramodules}|g
|
|
|
|
"
|
|
|
|
|
|
|
|
# install mkinitcpio preset file
|
|
|
|
sed "${_subst}" ../linux.preset |
|
|
|
|
install -Dm644 /dev/stdin "${pkgdir}/etc/mkinitcpio.d/${pkgbase}.preset"
|
|
|
|
|
|
|
|
# install pacman hooks
|
|
|
|
sed "${_subst}" ../60-linux.hook |
|
|
|
|
install -Dm644 /dev/stdin "${pkgdir}/usr/share/libalpm/hooks/60-${pkgbase}.hook"
|
|
|
|
sed "${_subst}" ../90-linux.hook |
|
|
|
|
install -Dm644 /dev/stdin "${pkgdir}/usr/share/libalpm/hooks/90-${pkgbase}.hook"
|
|
|
|
|
|
|
|
# install boot files
|
2020-12-10 17:37:08 +00:00
|
|
|
install -m644 ../$_bconfig "${pkgdir}/boot/config.txt"
|
|
|
|
install -m644 ../cmdline.txt "${pkgdir}/boot"
|
2019-08-17 02:29:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_package-headers() {
|
|
|
|
pkgdesc="Header files and scripts for building modules for linux kernel - ${_desc}"
|
|
|
|
provides=("linux-headers=${pkgver}")
|
|
|
|
conflicts=('linux-headers')
|
|
|
|
replaces=('linux-raspberrypi-latest-headers')
|
|
|
|
|
2019-08-29 00:16:06 +00:00
|
|
|
cd ${_srcname}
|
|
|
|
local _builddir="${pkgdir}/usr/lib/modules/${_kernver}/build"
|
2019-08-17 02:29:57 +00:00
|
|
|
|
2019-08-29 00:16:06 +00:00
|
|
|
install -Dt "${_builddir}" -m644 Makefile .config Module.symvers
|
|
|
|
install -Dt "${_builddir}/kernel" -m644 kernel/Makefile
|
2019-08-17 02:29:57 +00:00
|
|
|
|
2019-08-29 00:16:06 +00:00
|
|
|
mkdir "${_builddir}/.tmp_versions"
|
2019-08-17 02:29:57 +00:00
|
|
|
|
2019-08-29 00:16:06 +00:00
|
|
|
cp -t "${_builddir}" -a include scripts
|
2019-08-17 02:29:57 +00:00
|
|
|
|
2019-08-29 00:16:06 +00:00
|
|
|
install -Dt "${_builddir}/arch/${KARCH}" -m644 arch/${KARCH}/Makefile
|
|
|
|
install -Dt "${_builddir}/arch/${KARCH}/kernel" -m644 arch/${KARCH}/kernel/asm-offsets.s arch/$KARCH/kernel/module.lds
|
2020-12-10 17:37:08 +00:00
|
|
|
#install -Dt "${_builddir}/arch/${KARCH}/kernel" -m644 arch/${KARCH}/kernel/asm-offsets.s
|
2019-08-17 02:29:57 +00:00
|
|
|
|
2019-08-29 00:16:06 +00:00
|
|
|
cp -t "${_builddir}/arch/${KARCH}" -a arch/${KARCH}/include
|
2019-08-17 02:29:57 +00:00
|
|
|
|
2019-08-29 00:16:06 +00:00
|
|
|
install -Dt "${_builddir}/drivers/md" -m644 drivers/md/*.h
|
|
|
|
install -Dt "${_builddir}/net/mac80211" -m644 net/mac80211/*.h
|
2019-08-17 02:29:57 +00:00
|
|
|
|
|
|
|
# http://bugs.archlinux.org/task/13146
|
2019-08-29 00:16:06 +00:00
|
|
|
install -Dt "${_builddir}/drivers/media/i2c" -m644 drivers/media/i2c/msp3400-driver.h
|
2019-08-17 02:29:57 +00:00
|
|
|
|
|
|
|
# http://bugs.archlinux.org/task/20402
|
2019-08-29 00:16:06 +00:00
|
|
|
install -Dt "${_builddir}/drivers/media/usb/dvb-usb" -m644 drivers/media/usb/dvb-usb/*.h
|
|
|
|
install -Dt "${_builddir}/drivers/media/dvb-frontends" -m644 drivers/media/dvb-frontends/*.h
|
|
|
|
install -Dt "${_builddir}/drivers/media/tuners" -m644 drivers/media/tuners/*.h
|
2019-08-17 02:29:57 +00:00
|
|
|
|
|
|
|
# add xfs and shmem for aufs building
|
2019-08-29 00:16:06 +00:00
|
|
|
mkdir -p "${_builddir}"/{fs/xfs,mm}
|
2019-08-17 02:29:57 +00:00
|
|
|
|
|
|
|
# copy in Kconfig files
|
2019-08-29 00:16:06 +00:00
|
|
|
find . -name Kconfig\* -exec install -Dm644 {} "${_builddir}/{}" \;
|
|
|
|
|
|
|
|
# remove unneeded architectures
|
|
|
|
local _arch
|
|
|
|
for _arch in "${_builddir}"/arch/*/; do
|
|
|
|
[[ ${_arch} == */${KARCH}/ ]] && continue
|
|
|
|
rm -r "${_arch}"
|
2019-08-17 02:29:57 +00:00
|
|
|
done
|
|
|
|
|
2019-08-29 00:16:06 +00:00
|
|
|
# remove files already in linux-docs package
|
|
|
|
rm -r "${_builddir}/Documentation"
|
|
|
|
|
|
|
|
# remove now broken symlinks
|
|
|
|
find -L "${_builddir}" -type l -printf 'Removing %P\n' -delete
|
|
|
|
|
|
|
|
# Fix permissions
|
|
|
|
chmod -R u=rwX,go=rX "${_builddir}"
|
2019-08-17 02:29:57 +00:00
|
|
|
|
|
|
|
# strip scripts directory
|
2019-08-29 00:16:06 +00:00
|
|
|
local _binary _strip
|
|
|
|
while read -rd '' _binary; do
|
|
|
|
case "$(file -bi "${_binary}")" in
|
|
|
|
*application/x-sharedlib*) _strip="${STRIP_SHARED}" ;; # Libraries (.so)
|
|
|
|
*application/x-archive*) _strip="${STRIP_STATIC}" ;; # Libraries (.a)
|
|
|
|
*application/x-executable*) _strip="${STRIP_BINARIES}" ;; # Binaries
|
|
|
|
*) continue ;;
|
2019-08-17 02:29:57 +00:00
|
|
|
esac
|
2019-08-29 00:16:06 +00:00
|
|
|
/usr/bin/strip ${_strip} "${_binary}"
|
|
|
|
done < <(find "${_builddir}/scripts" -type f -perm -u+w -print0 2>/dev/null)
|
2019-08-17 02:29:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pkgname=("${pkgbase}" "${pkgbase}-headers")
|
|
|
|
for _p in ${pkgname[@]}; do
|
|
|
|
eval "package_${_p}() {
|
|
|
|
_package${_p#${pkgbase}}
|
|
|
|
}"
|
|
|
|
done
|