mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
283 lines
11 KiB
Bash
283 lines
11 KiB
Bash
# Globalscale ESPRESSOBin
|
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
buildarch=8
|
|
|
|
pkgbase=linux-espressobin
|
|
_srcname=linux-4.13
|
|
_kernelname=${pkgbase#linux}
|
|
_desc="Globalscale ESPRESSOBin"
|
|
pkgver=4.13.7
|
|
pkgrel=1
|
|
arch=('aarch64')
|
|
url="http://www.kernel.org/"
|
|
license=('GPL2')
|
|
makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc' 'git')
|
|
options=('!strip')
|
|
source=("http://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.xz"
|
|
"http://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.xz"
|
|
'0001-ARM64-dts-marvell-armada37xx-Enable-memory-mapped-GI.patch'
|
|
'0002-ARM64-dts-marvell-armada37xx-Wire-PMUv3.patch'
|
|
'0003-ARM64-dts-marvell-armada37xx-Enable-USB2-on-espresso.patch'
|
|
'0004-ARM64-dts-marvell-armada-37xx-Enable-uSD-on-ESPRESSO.patch'
|
|
'0005-arm64-dts-marvell-armada37xx-Add-eth0-alias.patch'
|
|
'0006-PCI-aardvark-fix-logic-in-PCI-configuration-read-wri.patch'
|
|
'0007-PCI-aardvark-set-PIO_ADDR_LS-correctly-in-advk_pcie_.patch'
|
|
'0008-PCI-aardvark-set-host-and-device-to-the-same-MAX-pay.patch'
|
|
'0009-PCI-aardvark-use-isr1-instead-of-isr0-interrupt-in-l.patch'
|
|
'0010-PCI-aardvark-disable-LOS-state-by-default.patch'
|
|
'0011-PCI-aardvark-fix-PCIe-max-read-request-size-setting.patch'
|
|
'0012-PCI-aardvark-define-IRQ-related-hooks-in-pci_host_br.patch'
|
|
'config'
|
|
'linux.preset')
|
|
md5sums=('ab1a2abc6f37b752dd2595338bec4e78'
|
|
'c098b8203d755d03e066bcd7afe42284'
|
|
'e10174ecfd529e00cc4c787472c77ae2'
|
|
'004d238d28d14525c2a3e6f2a2d5c517'
|
|
'ef62415d87a24d38f3dcb756ba7a1739'
|
|
'4e340f6e4f03cce707575cc925a7b264'
|
|
'35bc446f5cbcf2771a4f9147ccb33c34'
|
|
'4e60b850c7bfe7874bf0a2e00c33c06f'
|
|
'05a28cf5faa535d3814324abcec279bb'
|
|
'8b9d57b22b256437038036b219f581fe'
|
|
'a1a48018d94c19dc3d62756fd5261a56'
|
|
'56cfdb16e99145ab796964f14cba4173'
|
|
'899ff6e03408b4eb5e0dd600402e2420'
|
|
'a330eecd9d5fd0a771f9d1882aea2157'
|
|
'ffcc3c0d1ee49cef6799b83549616566'
|
|
'd8d30aa4a9d4c2b8d4ea53faf46ccf80')
|
|
|
|
prepare() {
|
|
cd "${srcdir}/${_srcname}"
|
|
|
|
# add upstream patch
|
|
git apply --whitespace=nowarn ../patch-${pkgver}
|
|
|
|
# ALARM patches
|
|
git apply ../0001-ARM64-dts-marvell-armada37xx-Enable-memory-mapped-GI.patch
|
|
git apply ../0002-ARM64-dts-marvell-armada37xx-Wire-PMUv3.patch
|
|
git apply ../0003-ARM64-dts-marvell-armada37xx-Enable-USB2-on-espresso.patch
|
|
git apply ../0004-ARM64-dts-marvell-armada-37xx-Enable-uSD-on-ESPRESSO.patch
|
|
git apply ../0005-arm64-dts-marvell-armada37xx-Add-eth0-alias.patch
|
|
git apply ../0006-PCI-aardvark-fix-logic-in-PCI-configuration-read-wri.patch
|
|
git apply ../0007-PCI-aardvark-set-PIO_ADDR_LS-correctly-in-advk_pcie_.patch
|
|
git apply ../0008-PCI-aardvark-set-host-and-device-to-the-same-MAX-pay.patch
|
|
git apply ../0009-PCI-aardvark-use-isr1-instead-of-isr0-interrupt-in-l.patch
|
|
git apply ../0010-PCI-aardvark-disable-LOS-state-by-default.patch
|
|
git apply ../0011-PCI-aardvark-fix-PCIe-max-read-request-size-setting.patch
|
|
git apply ../0012-PCI-aardvark-define-IRQ-related-hooks-in-pci_host_br.patch
|
|
|
|
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() {
|
|
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
|
|
# ... 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
|
|
make ${MAKEFLAGS} Image modules dtbs
|
|
}
|
|
|
|
_package() {
|
|
pkgdesc="The Linux Kernel and modules - ${_desc}"
|
|
depends=('coreutils' 'linux-firmware' 'kmod' 'mkinitcpio>=0.7' 'uboot-tools')
|
|
optdepends=('crda: to set the correct wireless channels of your country')
|
|
provides=('kernel26' "linux=${pkgver}")
|
|
replaces=('linux-armv8')
|
|
conflicts=('linux')
|
|
backup=("etc/mkinitcpio.d/${pkgbase}.preset")
|
|
install=${pkgname}.install
|
|
|
|
cd "${srcdir}/${_srcname}"
|
|
|
|
KARCH=arm64
|
|
|
|
# get kernel version
|
|
_kernver="$(make kernelrelease)"
|
|
_basekernel=${_kernver%%-*}
|
|
_basekernel=${_basekernel%.*}
|
|
|
|
mkdir -p "${pkgdir}"/{lib/modules,lib/firmware}
|
|
make INSTALL_MOD_PATH="${pkgdir}" modules_install
|
|
make INSTALL_DTBS_PATH="${pkgdir}/boot/dtbs" dtbs_install
|
|
cp arch/$KARCH/boot/Image "${pkgdir}/boot"
|
|
|
|
# set correct depmod command for install
|
|
sed \
|
|
-e "s/KERNEL_NAME=.*/KERNEL_NAME=${_kernelname}/g" \
|
|
-e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/g" \
|
|
-i "${startdir}/${pkgname}.install"
|
|
|
|
# install mkinitcpio preset file for kernel
|
|
install -D -m644 "${srcdir}/linux.preset" "${pkgdir}/etc/mkinitcpio.d/${pkgbase}.preset"
|
|
sed \
|
|
-e "1s|'linux.*'|'${pkgbase}'|" \
|
|
-e "s|ALL_kver=.*|ALL_kver=\"${_kernver}\"|" \
|
|
-i "${pkgdir}/etc/mkinitcpio.d/${pkgbase}.preset"
|
|
|
|
# remove build and source links
|
|
rm -f "${pkgdir}"/lib/modules/${_kernver}/{source,build}
|
|
# remove the firmware
|
|
rm -rf "${pkgdir}/lib/firmware"
|
|
# make room for external modules
|
|
ln -s "../extramodules-${_basekernel}${_kernelname:--ARCH}" "${pkgdir}/lib/modules/${_kernver}/extramodules"
|
|
# add real version for building modules and running depmod from post_install/upgrade
|
|
mkdir -p "${pkgdir}/lib/modules/extramodules-${_basekernel}${_kernelname:--ARCH}"
|
|
echo "${_kernver}" > "${pkgdir}/lib/modules/extramodules-${_basekernel}${_kernelname:--ARCH}/version"
|
|
|
|
# Now we call depmod...
|
|
depmod -b "$pkgdir" -F System.map "$_kernver"
|
|
|
|
# move module tree /lib -> /usr/lib
|
|
mkdir -p "${pkgdir}/usr"
|
|
mv "$pkgdir/lib" "$pkgdir/usr"
|
|
|
|
# add vmlinux
|
|
install -D -m644 vmlinux "${pkgdir}/usr/lib/modules/${_kernver}/build/vmlinux"
|
|
}
|
|
|
|
_package-headers() {
|
|
pkgdesc="Header files and scripts for building modules for linux kernel - ${_desc}"
|
|
provides=("linux-headers=${pkgver}")
|
|
replaces=('linux-armv8-headers')
|
|
conflicts=('linux-headers')
|
|
|
|
install -dm755 "${pkgdir}/usr/lib/modules/${_kernver}"
|
|
|
|
cd "${srcdir}/${_srcname}"
|
|
install -D -m644 Makefile \
|
|
"${pkgdir}/usr/lib/modules/${_kernver}/build/Makefile"
|
|
install -D -m644 kernel/Makefile \
|
|
"${pkgdir}/usr/lib/modules/${_kernver}/build/kernel/Makefile"
|
|
install -D -m644 .config \
|
|
"${pkgdir}/usr/lib/modules/${_kernver}/build/.config"
|
|
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/include"
|
|
|
|
for i in acpi asm-generic clocksource config crypto drm generated keys linux \
|
|
math-emu media net pcmcia scsi soc sound trace uapi video xen; do
|
|
cp -a include/${i} "${pkgdir}/usr/lib/modules/${_kernver}/build/include/"
|
|
done
|
|
|
|
# copy arch includes for external modules
|
|
mkdir -p ${pkgdir}/usr/lib/modules/${_kernver}/build/arch/$KARCH
|
|
cp -a arch/$KARCH/include ${pkgdir}/usr/lib/modules/${_kernver}/build/arch/$KARCH/
|
|
|
|
# copy files necessary for later builds, like nvidia and vmware
|
|
cp Module.symvers "${pkgdir}/usr/lib/modules/${_kernver}/build"
|
|
cp -a scripts "${pkgdir}/usr/lib/modules/${_kernver}/build"
|
|
|
|
# fix permissions on scripts dir
|
|
chmod og-w -R "${pkgdir}/usr/lib/modules/${_kernver}/build/scripts"
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/.tmp_versions"
|
|
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/arch/${KARCH}/kernel"
|
|
|
|
cp arch/${KARCH}/Makefile "${pkgdir}/usr/lib/modules/${_kernver}/build/arch/${KARCH}/"
|
|
|
|
cp arch/${KARCH}/kernel/asm-offsets.s "${pkgdir}/usr/lib/modules/${_kernver}/build/arch/${KARCH}/kernel/"
|
|
|
|
# add dm headers
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/md"
|
|
cp drivers/md/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/md"
|
|
|
|
# add inotify.h
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/include/linux"
|
|
cp include/linux/inotify.h "${pkgdir}/usr/lib/modules/${_kernver}/build/include/linux/"
|
|
|
|
# add wireless headers
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/net/mac80211/"
|
|
cp net/mac80211/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/net/mac80211/"
|
|
|
|
# add dvb headers for external modules
|
|
# in reference to:
|
|
# http://bugs.archlinux.org/task/9912
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/dvb-core"
|
|
cp drivers/media/dvb-core/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/dvb-core/"
|
|
# and...
|
|
# http://bugs.archlinux.org/task/11194
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/include/config/dvb/"
|
|
cp include/config/dvb/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/include/config/dvb/"
|
|
|
|
# add dvb headers for http://mcentral.de/hg/~mrec/em28xx-new
|
|
# in reference to:
|
|
# http://bugs.archlinux.org/task/13146
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/dvb-frontends/"
|
|
cp drivers/media/dvb-frontends/lgdt330x.h "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/dvb-frontends/"
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/i2c/"
|
|
cp drivers/media/i2c/msp3400-driver.h "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/i2c/"
|
|
|
|
# add dvb headers
|
|
# in reference to:
|
|
# http://bugs.archlinux.org/task/20402
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/usb/dvb-usb"
|
|
cp drivers/media/usb/dvb-usb/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/usb/dvb-usb/"
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/dvb-frontends"
|
|
cp drivers/media/dvb-frontends/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/dvb-frontends/"
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/tuners"
|
|
cp drivers/media/tuners/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/tuners/"
|
|
|
|
# add xfs and shmem for aufs building
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/fs/xfs"
|
|
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/mm"
|
|
|
|
# copy in Kconfig files
|
|
for i in $(find . -name "Kconfig*"); do
|
|
mkdir -p "${pkgdir}"/usr/lib/modules/${_kernver}/build/`echo ${i} | sed 's|/Kconfig.*||'`
|
|
cp ${i} "${pkgdir}/usr/lib/modules/${_kernver}/build/${i}"
|
|
done
|
|
|
|
chown -R root.root "${pkgdir}/usr/lib/modules/${_kernver}/build"
|
|
find "${pkgdir}/usr/lib/modules/${_kernver}/build" -type d -exec chmod 755 {} \;
|
|
|
|
# strip scripts directory
|
|
find "${pkgdir}/usr/lib/modules/${_kernver}/build/scripts" -type f -perm -u+w 2>/dev/null | while read binary ; do
|
|
case "$(file -bi "${binary}")" in
|
|
*application/x-sharedlib*) # Libraries (.so)
|
|
/usr/bin/strip ${STRIP_SHARED} "${binary}";;
|
|
*application/x-archive*) # Libraries (.a)
|
|
/usr/bin/strip ${STRIP_STATIC} "${binary}";;
|
|
*application/x-executable*) # Binaries
|
|
/usr/bin/strip ${STRIP_BINARIES} "${binary}";;
|
|
esac
|
|
done
|
|
|
|
# remove unneeded architectures
|
|
rm -rf "${pkgdir}"/usr/lib/modules/${_kernver}/build/arch/{alpha,arc,arm,arm26,avr32,blackfin,c6x,cris,frv,h8300,hexagon,ia64,m32r,m68k,m68knommu,metag,mips,microblaze,mn10300,openrisc,parisc,powerpc,ppc,s390,score,sh,sh64,sparc,sparc64,tile,unicore32,um,v850,x86,xtensa}
|
|
}
|
|
|
|
pkgname=("${pkgbase}" "${pkgbase}-headers")
|
|
for _p in ${pkgname[@]}; do
|
|
eval "package_${_p}() {
|
|
_package${_p#${pkgbase}}
|
|
}"
|
|
done
|