PKGBUILDs/core/linux-espressobin/PKGBUILD

218 lines
6.8 KiB
Bash
Raw Normal View History

2017-02-01 02:03:12 +00:00
# Globalscale ESPRESSOBin
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
buildarch=8
pkgbase=linux-espressobin
2018-11-05 01:06:43 +00:00
_srcname=linux-4.19
2017-02-01 02:03:12 +00:00
_kernelname=${pkgbase#linux}
_desc="Globalscale ESPRESSOBin"
2018-11-16 01:40:18 +00:00
pkgver=4.19.2
2018-07-12 00:34:44 +00:00
pkgrel=1
2017-02-01 02:03:12 +00:00
arch=('aarch64')
url="http://www.kernel.org/"
license=('GPL2')
makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc' 'git')
options=('!strip')
2017-07-05 02:14:49 +00:00
source=("http://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.xz"
2018-06-12 00:34:06 +00:00
"http://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.xz"
2017-11-13 02:53:28 +00:00
'0001-arm64-dts-marvell-armada37xx-Add-eth0-alias.patch'
2018-11-05 01:06:43 +00:00
'0002-PCI-aardvark-disable-LOS-state-by-default.patch'
2017-02-01 02:03:12 +00:00
'config'
2018-07-10 01:30:32 +00:00
'linux.preset'
'60-linux.hook'
'90-linux.hook'
'91-linux.hook')
2018-11-05 01:06:43 +00:00
md5sums=('740a90cf810c2105df8ee12e5d0bb900'
2018-11-16 01:40:18 +00:00
'450ad9af74244f0a6add63bc40cc9a7e'
2018-11-05 01:06:43 +00:00
'b8aaf743affd79115d1a5806d461e9cb'
'3d8a4bd4437ccd8adaead9f2dc80f884'
2018-11-16 01:40:18 +00:00
'3384a4abcabf75b5381ded1ed97ce30e'
2018-07-10 01:30:32 +00:00
'86d4a35722b5410e3b29fc92dae15d4b'
'ce6c81ad1ad1f8b333fd6077d47abdaf'
'3dc88030a8f2f5a5f97266d99b149f77'
'9d68f10566962252c5190b386cd1584a')
2017-02-01 02:03:12 +00:00
prepare() {
2018-07-10 01:30:32 +00:00
cd ${_srcname}
2017-02-01 02:03:12 +00:00
2017-07-05 02:14:49 +00:00
# add upstream patch
2018-06-12 00:34:06 +00:00
git apply --whitespace=nowarn ../patch-${pkgver}
2017-07-05 02:14:49 +00:00
# ALARM patches
2017-11-13 02:53:28 +00:00
git apply ../0001-arm64-dts-marvell-armada37xx-Add-eth0-alias.patch
2018-11-05 01:06:43 +00:00
git apply ../0002-PCI-aardvark-disable-LOS-state-by-default.patch
2017-07-05 02:14:49 +00:00
2017-02-01 02:03:12 +00:00
cat "${srcdir}/config" > ./.config
# 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
}
build() {
2018-07-10 01:30:32 +00:00
cd ${_srcname}
2017-02-01 02:03:12 +00:00
# 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
# ... or manually edit .config
# Copy back our configuration (use with new kernel version)
#cp ./.config ../${pkgbase}.config
####################
# stop here
# this is useful to configure the kernel
#msg "Stopping build"
#return 1
####################
#yes "" | make config
# build!
unset LDFLAGS
2017-07-22 01:34:30 +00:00
make ${MAKEFLAGS} Image modules dtbs
2017-02-01 02:03:12 +00:00
}
_package() {
pkgdesc="The Linux Kernel and modules - ${_desc}"
2017-07-08 20:11:52 +00:00
depends=('coreutils' 'linux-firmware' 'kmod' 'mkinitcpio>=0.7' 'uboot-tools')
2017-02-01 02:03:12 +00:00
optdepends=('crda: to set the correct wireless channels of your country')
2018-07-10 01:30:32 +00:00
provides=("linux=${pkgver}")
2017-02-01 02:03:12 +00:00
conflicts=('linux')
backup=("etc/mkinitcpio.d/${pkgbase}.preset")
install=${pkgname}.install
2018-07-10 01:30:32 +00:00
cd ${_srcname}
2017-02-01 02:03:12 +00:00
KARCH=arm64
# get kernel version
_kernver="$(make kernelrelease)"
_basekernel=${_kernver%%-*}
_basekernel=${_basekernel%.*}
2018-07-10 01:30:32 +00:00
mkdir -p "${pkgdir}"/{boot,usr/lib/modules}
make INSTALL_MOD_PATH="${pkgdir}/usr" modules_install
2017-02-01 02:03:12 +00:00
make INSTALL_DTBS_PATH="${pkgdir}/boot/dtbs" dtbs_install
2017-07-22 02:43:50 +00:00
cp arch/$KARCH/boot/Image "${pkgdir}/boot"
2017-02-01 02:03:12 +00:00
2018-07-10 01:30:32 +00:00
# make room for external modules
local _extramodules="extramodules-${_basekernel}${_kernelname}"
ln -s "../${_extramodules}" "${pkgdir}/usr/lib/modules/${_kernver}/extramodules"
2017-02-01 02:03:12 +00:00
2018-07-10 01:30:32 +00:00
# add real version for building modules and running depmod from hook
echo "${_kernver}" |
install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modules/${_extramodules}/version"
2017-02-01 02:03:12 +00:00
# remove build and source links
2018-07-10 01:30:32 +00:00
rm "${pkgdir}"/usr/lib/modules/${_kernver}/{source,build}
2017-02-01 02:03:12 +00:00
2018-07-10 01:30:32 +00:00
# now we call depmod...
depmod -b "${pkgdir}/usr" -F System.map "${_kernver}"
2017-02-01 02:03:12 +00:00
# add vmlinux
2018-07-10 01:30:32 +00:00
install -Dt "${pkgdir}/usr/lib/modules/${_kernver}/build" -m644 vmlinux
# 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"
sed "${_subst}" ../91-linux.hook |
install -Dm644 /dev/stdin "${pkgdir}/usr/share/libalpm/hooks/91-${pkgbase}.hook"
2017-02-01 02:03:12 +00:00
}
_package-headers() {
pkgdesc="Header files and scripts for building modules for linux kernel - ${_desc}"
provides=("linux-headers=${pkgver}")
conflicts=('linux-headers')
2018-07-10 01:30:32 +00:00
cd ${_srcname}
local _builddir="${pkgdir}/usr/lib/modules/${_kernver}/build"
2017-02-01 02:03:12 +00:00
2018-07-10 01:30:32 +00:00
install -Dt "${_builddir}" -m644 Makefile .config Module.symvers
install -Dt "${_builddir}/kernel" -m644 kernel/Makefile
2017-02-01 02:03:12 +00:00
2018-07-10 01:30:32 +00:00
mkdir "${_builddir}/.tmp_versions"
2017-02-01 02:03:12 +00:00
2018-07-10 01:30:32 +00:00
cp -t "${_builddir}" -a include scripts
2017-02-01 02:03:12 +00:00
2018-07-10 01:30:32 +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
2017-02-01 02:03:12 +00:00
2018-07-10 01:30:32 +00:00
cp -t "${_builddir}/arch/${KARCH}" -a arch/${KARCH}/include
2017-02-01 02:03:12 +00:00
2018-07-10 01:30:32 +00:00
install -Dt "${_builddir}/drivers/md" -m644 drivers/md/*.h
install -Dt "${_builddir}/net/mac80211" -m644 net/mac80211/*.h
2017-02-01 02:03:12 +00:00
# http://bugs.archlinux.org/task/13146
2018-07-10 01:30:32 +00:00
install -Dt "${_builddir}/drivers/media/i2c" -m644 drivers/media/i2c/msp3400-driver.h
2017-02-01 02:03:12 +00:00
# http://bugs.archlinux.org/task/20402
2018-07-10 01:30:32 +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
2017-02-01 02:03:12 +00:00
# add xfs and shmem for aufs building
2018-07-10 01:30:32 +00:00
mkdir -p "${_builddir}"/{fs/xfs,mm}
2017-02-01 02:03:12 +00:00
# copy in Kconfig files
2018-07-10 01:30:32 +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}"
2017-02-01 02:03:12 +00:00
done
2018-07-10 01:30:32 +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}"
2017-02-01 02:03:12 +00:00
# strip scripts directory
2018-07-10 01:30:32 +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 ;;
2017-02-01 02:03:12 +00:00
esac
2018-07-10 01:30:32 +00:00
/usr/bin/strip ${_strip} "${_binary}"
done < <(find "${_builddir}/scripts" -type f -perm -u+w -print0 2>/dev/null)
2017-02-01 02:03:12 +00:00
}
pkgname=("${pkgbase}" "${pkgbase}-headers")
for _p in ${pkgname[@]}; do
eval "package_${_p}() {
_package${_p#${pkgbase}}
}"
done