mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
9cf492fd81
Upstream kernel source now contains a dts file for this device, but the dtb won't get built by the 'dtbs' target, it has to be specified explicitly.
325 lines
13 KiB
Bash
325 lines
13 KiB
Bash
# Maintainer: Mike Staszel <mikestaszel@plugapps.com>
|
|
# Maintainer: Kevin Mihelich <kevin@plugapps.com>
|
|
# Maintainer: Oleg Rakhmanov <orakhmanov@gmail.com>
|
|
|
|
buildarch=2
|
|
|
|
pkgbase=linux-kirkwood-dt
|
|
_kernelname=${pkgbase#linux}
|
|
_desc="Marvell Kirkwood DT"
|
|
pkgver=3.16
|
|
pkgrel=2
|
|
cryptodev_commit=8af0fe8a977f33236d3e00306ac3648063052704
|
|
bfqver=v7r5
|
|
|
|
arch=('arm')
|
|
url="http://www.kernel.org/"
|
|
license=('GPL2')
|
|
makedepends=('xmlto' 'docbook-xsl' 'uboot-mkimage' 'kmod' 'inetutils' 'bc' 'git')
|
|
options=('!strip')
|
|
|
|
source=("ftp://ftp.kernel.org/pub/linux/kernel/v3.x/linux-${pkgver}.tar.xz"
|
|
'config'
|
|
'archlinuxarm.patch'
|
|
'mach-types::http://www.arm.linux.org.uk/developer/machines/download.php'
|
|
'usb-add-reset-resume-quirk-for-several-webcams.patch'
|
|
"git://git.code.sf.net/p/aufs/aufs3-standalone#branch=aufs3.x-rcN"
|
|
# "git://git.code.sf.net/p/aufs/aufs3-standalone#branch=aufs${pkgver:0:4}"
|
|
"https://github.com/cryptodev-linux/cryptodev-linux/archive/${cryptodev_commit}.tar.gz"
|
|
"http://algo.ing.unimo.it/people/paolo/disk_sched/patches/${pkgver:0:4}.0-${bfqver}/0001-block-cgroups-kconfig-build-bits-for-BFQ-${bfqver}-${pkgver:0:4}.patch"
|
|
"http://algo.ing.unimo.it/people/paolo/disk_sched/patches/${pkgver:0:4}.0-${bfqver}/0002-block-introduce-the-BFQ-${bfqver}-I-O-sched-for-${pkgver:0:4}.patch"
|
|
"http://algo.ing.unimo.it/people/paolo/disk_sched/patches/${pkgver:0:4}.0-${bfqver}/0003-block-bfq-add-Early-Queue-Merge-EQM-to-BFQ-${bfqver}-for-${pkgver:0:4}.0.patch"
|
|
'goflexhome_dtb.patch'
|
|
'pogo_e02_dtb.patch')
|
|
|
|
md5sums=('5c569ed649a0c9711879f333e90c5386'
|
|
'1d2d6c0d0a70f6229028115625862127'
|
|
'e319a8e1a596a39a8951fc6454664b15'
|
|
'SKIP'
|
|
'9b5a265440abf57d2052838f31486a3a'
|
|
'SKIP'
|
|
'32ba4029bb418a2f9a71738eb2d6d3a8'
|
|
'27b45e15c3f9855792808498af21f664'
|
|
'812c18775a53e337f1b2c7cd9078bff1'
|
|
'e903ed2c79546d2f0ec41e7e631c62f7'
|
|
'e42c64b6f4b54f382cf3d7e8d82968f1'
|
|
'341f8164dad19b6baf05d764a800862a')
|
|
prepare() {
|
|
cd "${srcdir}/linux-${pkgver}"
|
|
|
|
msg2 "Copying aufs3 patches into the kernel source tree"
|
|
|
|
cp -ru "${srcdir}/aufs3-standalone/Documentation" "${srcdir}/linux-${pkgver}/"
|
|
cp -ru "${srcdir}/aufs3-standalone/fs" "${srcdir}/linux-${pkgver}/"
|
|
cp -ru "${srcdir}/aufs3-standalone/include/uapi/linux/aufs_type.h" "${srcdir}/linux-${pkgver}/include/linux/"
|
|
cp -ru "${srcdir}/aufs3-standalone/include/uapi/linux/aufs_type.h" "${srcdir}/linux-${pkgver}/include/uapi/linux/"
|
|
|
|
msg2 "Applying aufs3 patches"
|
|
patch -Np1 -i ../aufs3-standalone/aufs3-kbuild.patch
|
|
patch -Np1 -i ../aufs3-standalone/aufs3-base.patch
|
|
patch -Np1 -i ../aufs3-standalone/aufs3-mmap.patch
|
|
patch -Np1 -i ../aufs3-standalone/aufs3-standalone.patch
|
|
|
|
msg2 "Add the USB_QUIRK_RESET_RESUME for several webcams"
|
|
# FS#26528
|
|
patch -Np1 -i "${srcdir}/usb-add-reset-resume-quirk-for-several-webcams.patch"
|
|
|
|
msg2 "Add Arch Linux ARM patch for ARMv5te plug computers, mach-types"
|
|
patch -Np1 -i "${srcdir}/archlinuxarm.patch"
|
|
cp "${srcdir}/mach-types" arch/arm/tools
|
|
patch -Np1 -i "${srcdir}/goflexhome_dtb.patch"
|
|
patch -Np1 -i "${srcdir}/pogo_e02_dtb.patch"
|
|
|
|
msg2 "Add BFQ patches"
|
|
patch -Np1 -i "${srcdir}/0001-block-cgroups-kconfig-build-bits-for-BFQ-${bfqver}-${pkgver:0:4}.patch"
|
|
patch -Np1 -i "${srcdir}/0002-block-introduce-the-BFQ-${bfqver}-I-O-sched-for-${pkgver:0:4}.patch"
|
|
patch -Np1 -i "${srcdir}/0003-block-bfq-add-Early-Queue-Merge-EQM-to-BFQ-${bfqver}-for-${pkgver:0:4}.0.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}/linux-${pkgver}"
|
|
|
|
# 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
|
|
|
|
msg "Building!"
|
|
make ${MAKEFLAGS} zImage modules dtbs kirkwood-nsa320.dtb
|
|
|
|
msg "Building cryptodev module"
|
|
cd "${srcdir}/cryptodev-linux-${cryptodev_commit}"
|
|
make KERNEL_DIR="${srcdir}/linux-${pkgver}"
|
|
}
|
|
|
|
_package() {
|
|
pkgdesc="The Linux Kernel and modules - ${_desc}"
|
|
depends=('coreutils' 'linux-firmware' 'kmod' 'mkinitcpio>=0.7')
|
|
optdepends=('crda: to set the correct wireless channels of your country')
|
|
provides=('kernel26' 'linux=${pkgver}' 'aufs_friendly' 'cryptodev_friendly')
|
|
conflicts=('linux-kirkwood' 'linux' 'linux-olinuxino')
|
|
install=${pkgname}.install
|
|
|
|
cd "${srcdir}/linux-${pkgver}"
|
|
|
|
KARCH=arm
|
|
|
|
# get kernel version
|
|
_kernver="$(make kernelrelease)"
|
|
#_basekernel=${_kernver%%-*}
|
|
#_basekernel=${_basekernel%.*}
|
|
_basekernel=${pkgver}
|
|
|
|
mkdir -p "${pkgdir}"/{lib/modules,lib/firmware,boot/dtbs}
|
|
make INSTALL_MOD_PATH="${pkgdir}" modules_install
|
|
cp arch/$KARCH/boot/zImage "${pkgdir}/boot/zImage"
|
|
cp arch/$KARCH/boot/dts/*.dtb "${pkgdir}/boot/dtbs"
|
|
|
|
# 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"
|
|
|
|
# remove build and source links
|
|
rm -f "${pkgdir}"/lib/modules/${_kernver}/{source,build}
|
|
# remove the firmware
|
|
rm -rf "${pkgdir}/lib/firmware"
|
|
# gzip -9 all modules to save 100MB of space
|
|
find "${pkgdir}" -name '*.ko' |xargs -P 2 -n 1 gzip -9
|
|
# 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"
|
|
|
|
# install cryptodev module
|
|
cd "${srcdir}/cryptodev-linux-${cryptodev_commit}"
|
|
make -C "${srcdir}/linux-${pkgver}" INSTALL_MOD_PATH="${pkgdir}" SUBDIRS=`pwd` modules_install
|
|
|
|
cd "${srcdir}/linux-${pkgver}"
|
|
|
|
# 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"
|
|
}
|
|
|
|
_package-headers() {
|
|
pkgdesc="Header files and scripts for building modules for linux kernel - ${_desc}"
|
|
provides=('linux-headers=${pkgver}')
|
|
conflicts=('linux-kirkwood-headers' 'linux-headers' 'linux-headers-olinuxino')
|
|
replaces=('linux-headers-kirkwood-dt')
|
|
|
|
install -dm755 "${pkgdir}/usr/lib/modules/${_kernver}"
|
|
|
|
cd "${pkgdir}/usr/lib/modules/${_kernver}"
|
|
ln -sf ../../../src/linux-${_kernver} build
|
|
|
|
cd "${srcdir}/linux-${pkgver}"
|
|
install -D -m644 Makefile \
|
|
"${pkgdir}/usr/src/linux-${_kernver}/Makefile"
|
|
install -D -m644 kernel/Makefile \
|
|
"${pkgdir}/usr/src/linux-${_kernver}/kernel/Makefile"
|
|
install -D -m644 .config \
|
|
"${pkgdir}/usr/src/linux-${_kernver}/.config"
|
|
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/include"
|
|
|
|
for i in acpi asm-generic config crypto drm generated linux math-emu \
|
|
media net pcmcia scsi sound trace uapi video xen; do
|
|
cp -a include/${i} "${pkgdir}/usr/src/linux-${_kernver}/include/"
|
|
done
|
|
|
|
# copy arch includes for external modules
|
|
mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH
|
|
cp -a arch/$KARCH/include ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/
|
|
mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/mach-kirkwood
|
|
cp -a arch/$KARCH/mach-kirkwood/include ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/mach-kirkwood/
|
|
mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/plat-orion
|
|
cp -a arch/$KARCH/plat-orion/include ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/plat-orion/
|
|
|
|
# copy files necessary for later builds, like nvidia and vmware
|
|
cp Module.symvers "${pkgdir}/usr/src/linux-${_kernver}"
|
|
cp -a scripts "${pkgdir}/usr/src/linux-${_kernver}"
|
|
|
|
# fix permissions on scripts dir
|
|
chmod og-w -R "${pkgdir}/usr/src/linux-${_kernver}/scripts"
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/.tmp_versions"
|
|
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/kernel"
|
|
|
|
cp arch/${KARCH}/Makefile "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/"
|
|
|
|
cp arch/${KARCH}/kernel/asm-offsets.s "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/kernel/"
|
|
|
|
# add headers for lirc package
|
|
# pci
|
|
for i in bt8xx cx88 saa7134; do
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/pci/${i}"
|
|
cp -a drivers/media/pci/${i}/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/pci/${i}"
|
|
done
|
|
# usb
|
|
for i in cpia2 em28xx pwc; do
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/usb/${i}"
|
|
cp -a drivers/media/usb/${i}/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/usb/${i}"
|
|
done
|
|
# i2c
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/i2c"
|
|
cp drivers/media/i2c/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/i2c/"
|
|
for i in cx25840; do
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/i2c/${i}"
|
|
cp -a drivers/media/i2c/${i}/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/i2c/${i}"
|
|
done
|
|
|
|
# add docbook makefile
|
|
install -D -m644 Documentation/DocBook/Makefile \
|
|
"${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile"
|
|
|
|
# add dm headers
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/md"
|
|
cp drivers/md/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/md"
|
|
|
|
# add inotify.h
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/include/linux"
|
|
cp include/linux/inotify.h "${pkgdir}/usr/src/linux-${_kernver}/include/linux/"
|
|
|
|
# add wireless headers
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/"
|
|
cp net/mac80211/*.h "${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/"
|
|
|
|
# add dvb headers for external modules
|
|
# in reference to:
|
|
# http://bugs.archlinux.org/task/9912
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb-core"
|
|
cp drivers/media/dvb-core/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb-core/"
|
|
# and...
|
|
# http://bugs.archlinux.org/task/11194
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/"
|
|
cp include/config/dvb/*.h "${pkgdir}/usr/src/linux-${_kernver}/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/src/linux-${_kernver}/drivers/media/dvb-frontends/"
|
|
cp drivers/media/dvb-frontends/lgdt330x.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb-frontends/"
|
|
cp drivers/media/i2c/msp3400-driver.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/i2c/"
|
|
|
|
# add dvb headers
|
|
# in reference to:
|
|
# http://bugs.archlinux.org/task/20402
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/usb/dvb-usb"
|
|
cp drivers/media/usb/dvb-usb/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/usb/dvb-usb/"
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb-frontends"
|
|
cp drivers/media/dvb-frontends/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb-frontends/"
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/tuners"
|
|
cp drivers/media/tuners/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/tuners/"
|
|
|
|
# add xfs and shmem for aufs building
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/fs/xfs"
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/mm"
|
|
cp fs/xfs/xfs_sb.h "${pkgdir}/usr/src/linux-${_kernver}/fs/xfs/xfs_sb.h"
|
|
|
|
# copy in Kconfig files
|
|
for i in `find . -name "Kconfig*"`; do
|
|
mkdir -p "${pkgdir}"/usr/src/linux-${_kernver}/`echo ${i} | sed 's|/Kconfig.*||'`
|
|
cp ${i} "${pkgdir}/usr/src/linux-${_kernver}/${i}"
|
|
done
|
|
|
|
chown -R root.root "${pkgdir}/usr/src/linux-${_kernver}"
|
|
find "${pkgdir}/usr/src/linux-${_kernver}" -type d -exec chmod 755 {} \;
|
|
|
|
# strip scripts directory
|
|
find "${pkgdir}/usr/src/linux-${_kernver}/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/src/linux-${_kernver}/arch/{alpha,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,mips,microblaze,mn10300,parisc,powerpc,ppc,s390,sh,sh64,sparc,sparc64,um,v850,x86,xtensa}
|
|
|
|
# install cryptodev header
|
|
cd "${srcdir}/cryptodev-linux-${cryptodev_commit}"
|
|
install -D crypto/cryptodev.h "${pkgdir}/usr/src/linux-${_kernver}/crypto/cryptodev.h"
|
|
}
|
|
|
|
pkgname=("${pkgbase}" "${pkgbase}-headers")
|
|
for _p in ${pkgname[@]}; do
|
|
eval "package_${_p}() {
|
|
_package${_p#${pkgbase}}
|
|
}"
|
|
done
|