2012-07-18 15:14:04 +00:00
|
|
|
# Maintainer: Mike Staszel <mikestaszel@plugapps.com>
|
|
|
|
# Maintainer: Kevin Mihelich <kevin@plugapps.com>
|
|
|
|
|
2012-07-18 15:29:18 +00:00
|
|
|
buildarch=2
|
2012-07-18 15:14:04 +00:00
|
|
|
|
2012-07-18 23:30:18 +00:00
|
|
|
pkgbase=linux-kirkwood
|
2012-07-18 15:14:04 +00:00
|
|
|
pkgname=('linux-kirkwood' 'linux-headers-kirkwood')
|
|
|
|
#pkgname=linux-test # Build kernel with a different name
|
|
|
|
_kernelname=${pkgname#linux}
|
2012-12-29 00:32:07 +00:00
|
|
|
_basekernel=3.6.11
|
2012-07-18 15:14:04 +00:00
|
|
|
pkgver=${_basekernel}
|
2012-12-29 01:47:25 +00:00
|
|
|
pkgrel=0
|
2012-08-10 17:27:26 +00:00
|
|
|
cryptover=1.5
|
2012-07-18 15:14:04 +00:00
|
|
|
arch=('arm')
|
|
|
|
url="http://www.kernel.org/"
|
|
|
|
license=('GPL2')
|
|
|
|
makedepends=('xmlto' 'docbook-xsl' 'uboot-mkimage')
|
|
|
|
options=('!strip')
|
|
|
|
source=("ftp://ftp.kernel.org/pub/linux/kernel/v3.x/linux-${_basekernel}.tar.bz2"
|
|
|
|
'archlinuxarm.patch'
|
|
|
|
'support.patch'
|
|
|
|
'config'
|
|
|
|
'mach-types::http://www.arm.linux.org.uk/developer/machines/download.php'
|
|
|
|
'change-default-console-loglevel.patch'
|
|
|
|
'usb-add-reset-resume-quirk-for-several-webcams.patch'
|
2012-09-18 02:46:19 +00:00
|
|
|
"http://download.gna.org/cryptodev-linux/cryptodev-linux-${cryptover}.tar.gz"
|
2012-12-12 02:47:11 +00:00
|
|
|
"http://algo.ing.unimo.it/people/paolo/disk_sched/patches/3.6.0-v5r1/0001-block-cgroups-kconfig-build-bits-for-BFQ-v5r1-3.6.patch"
|
|
|
|
"http://algo.ing.unimo.it/people/paolo/disk_sched/patches/3.6.0-v5r1/0002-block-introduce-the-BFQ-v5r1-I-O-sched-for-3.6.patch"
|
2012-10-16 16:02:06 +00:00
|
|
|
'aufs3-3.6.patch.xz')
|
2012-12-12 02:47:11 +00:00
|
|
|
|
2012-12-29 00:32:07 +00:00
|
|
|
md5sums=('3ff269b161f6cc319aa220b16963e213'
|
2012-10-29 14:46:09 +00:00
|
|
|
'0df0c9243fcf6465bfca27ec0ef20440'
|
2012-07-18 15:14:04 +00:00
|
|
|
'f5d3635da03cb45904bedd69b47133de'
|
2012-12-29 00:32:07 +00:00
|
|
|
'30a81d9d734924992090c5160d063a4d'
|
2012-08-10 17:35:50 +00:00
|
|
|
'9506a43fff451fda36d5d7b1f5eaed04'
|
2012-07-18 15:14:04 +00:00
|
|
|
'9d3c56a4b999c8bfbd4018089a62f662'
|
|
|
|
'd00814b57448895e65fbbc800e8a58ba'
|
2012-09-18 02:46:19 +00:00
|
|
|
'3a4b8d23c1708283e29477931d63ffb8'
|
2012-12-12 02:47:11 +00:00
|
|
|
'5b36fdb524bc0fbc1c2dd7ff6e5f00c7'
|
|
|
|
'ab32d82c03667836e0827158f128c755'
|
|
|
|
'c8182bf611ab1f9fb3fbc314b61dd04c')
|
2012-07-18 15:14:04 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/linux-${_basekernel}"
|
|
|
|
|
|
|
|
# Add the USB_QUIRK_RESET_RESUME for several webcams
|
|
|
|
# FS#26528
|
|
|
|
patch -Np1 -i "${srcdir}/usb-add-reset-resume-quirk-for-several-webcams.patch"
|
|
|
|
|
|
|
|
# Add Arch Linux ARM patch for ARMv5te plug computers, requested additional support, mach-types
|
|
|
|
patch -Np1 -i "${srcdir}/archlinuxarm.patch"
|
|
|
|
patch -Np1 -i "${srcdir}/support.patch"
|
|
|
|
cp "${srcdir}/mach-types" arch/arm/tools
|
|
|
|
|
|
|
|
# Add AUFS3 patches
|
2012-10-16 16:02:06 +00:00
|
|
|
patch -Np1 -i "${srcdir}/aufs3-3.6.patch"
|
2012-07-18 15:14:04 +00:00
|
|
|
|
2012-09-18 02:46:19 +00:00
|
|
|
# Add BFQ patches
|
2012-12-12 02:47:11 +00:00
|
|
|
patch -Np1 -i "${srcdir}/0001-block-cgroups-kconfig-build-bits-for-BFQ-v5r1-3.6.patch"
|
|
|
|
patch -Np1 -i "${srcdir}/0002-block-introduce-the-BFQ-v5r1-I-O-sched-for-3.6.patch"
|
2012-09-18 02:46:19 +00:00
|
|
|
|
2012-07-18 15:14:04 +00:00
|
|
|
# add latest fixes from stable queue, if needed
|
|
|
|
# http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git
|
|
|
|
|
|
|
|
# set DEFAULT_CONSOLE_LOGLEVEL to 4 (same value as the 'quiet' kernel param)
|
|
|
|
# remove this when a Kconfig knob is made available by upstream
|
|
|
|
# (relevant patch sent upstream: https://lkml.org/lkml/2011/7/26/227)
|
|
|
|
patch -Np1 -i "${srcdir}/change-default-console-loglevel.patch"
|
|
|
|
|
|
|
|
cat "${srcdir}/config" > ./.config
|
|
|
|
|
|
|
|
# set extraversion to pkgrel
|
|
|
|
sed -ri "s|^(EXTRAVERSION =).*|\1 -${pkgrel}|" Makefile
|
|
|
|
|
2012-07-18 15:29:18 +00:00
|
|
|
# don't run depmod on 'make install'. We'll do this ourselves in packaging
|
|
|
|
sed -i '2iexit 0' scripts/depmod.sh
|
|
|
|
|
2012-07-18 15:14:04 +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 ../${_basekernel}.config
|
|
|
|
|
|
|
|
####################
|
|
|
|
# stop here
|
|
|
|
# this is useful to configure the kernel
|
|
|
|
#msg "Stopping build"
|
|
|
|
#return 1
|
|
|
|
####################
|
|
|
|
|
|
|
|
#yes "" | make config
|
|
|
|
|
|
|
|
# build!
|
|
|
|
make ${MAKEFLAGS} uImage modules
|
|
|
|
|
|
|
|
# build cryptodev module
|
|
|
|
cd "${srcdir}/cryptodev-linux-${cryptover}"
|
|
|
|
make KERNEL_DIR="${srcdir}/linux-${_basekernel}"
|
|
|
|
}
|
|
|
|
|
|
|
|
package_linux-kirkwood() {
|
2012-07-18 15:29:18 +00:00
|
|
|
pkgdesc="The Linux Kernel and modules - Marvell Kirkwood"
|
2012-07-18 15:14:04 +00:00
|
|
|
groups=('base')
|
|
|
|
depends=('coreutils' 'linux-firmware' 'module-init-tools>=3.16' 'mkinitcpio>=0.7')
|
|
|
|
optdepends=('crda: to set the correct wireless channels of your country')
|
2012-07-18 15:29:18 +00:00
|
|
|
provides=('kernel26' 'aufs_friendly' 'cryptodev_friendly' 'linux=${pkgver}')
|
|
|
|
conflicts=('linux')
|
2012-07-18 15:14:04 +00:00
|
|
|
install=${pkgname}.install
|
|
|
|
|
|
|
|
cd "${srcdir}/linux-${_basekernel}"
|
|
|
|
|
|
|
|
KARCH=arm
|
|
|
|
|
|
|
|
# get kernel version
|
|
|
|
_kernver="$(make kernelrelease)"
|
|
|
|
|
|
|
|
mkdir -p "${pkgdir}"/{lib/modules,lib/firmware,boot}
|
|
|
|
make INSTALL_MOD_PATH="${pkgdir}" modules_install
|
|
|
|
cp arch/$KARCH/boot/uImage "${pkgdir}/boot/uImage"
|
|
|
|
|
|
|
|
# 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' -exec 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-${cryptover}"
|
|
|
|
make -C "${srcdir}/linux-${_basekernel}" INSTALL_MOD_PATH="${pkgdir}" SUBDIRS=`pwd` modules_install
|
2012-07-18 15:29:18 +00:00
|
|
|
|
|
|
|
cd "${srcdir}/linux-${_basekernel}"
|
|
|
|
|
2012-09-14 16:03:05 +00:00
|
|
|
# Now we call depmod...
|
|
|
|
depmod -b "$pkgdir" -F System.map "$_kernver"
|
|
|
|
|
2012-07-18 15:29:18 +00:00
|
|
|
# move module tree /lib -> /usr/lib
|
|
|
|
mkdir -p "${pkgdir}/usr"
|
|
|
|
mv "$pkgdir/lib" "$pkgdir/usr"
|
2012-07-18 15:14:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package_linux-headers-kirkwood() {
|
2012-07-18 15:29:18 +00:00
|
|
|
pkgdesc="Header files and scripts for building modules for linux kernel - Marvell Kirkwood"
|
|
|
|
provides=('kernel26-headers' 'linux-headers=${pkgver}')
|
|
|
|
conflicts=('kernel26-headers' 'linux-headers')
|
2012-07-18 15:14:04 +00:00
|
|
|
|
2012-07-18 15:29:18 +00:00
|
|
|
install -dm755 "${pkgdir}/usr/lib/modules/${_kernver}"
|
2012-07-18 15:14:04 +00:00
|
|
|
|
2012-07-18 15:29:18 +00:00
|
|
|
cd "${pkgdir}/usr/lib/modules/${_kernver}"
|
|
|
|
ln -sf ../../../src/linux-${_kernver} build
|
2012-07-18 15:14:04 +00:00
|
|
|
|
|
|
|
cd "${srcdir}/linux-${_basekernel}"
|
|
|
|
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"
|
2012-10-16 16:02:06 +00:00
|
|
|
make headers_install INSTALL_HDR_PATH="${pkgdir}/usr/src/linux-${_kernver}"
|
2012-07-18 15:14:04 +00:00
|
|
|
|
2012-10-16 16:02:06 +00:00
|
|
|
# Clean up unneeded files
|
|
|
|
find "${pkgdir}" -name "..install.cmd" -delete
|
2012-07-18 15:14:04 +00:00
|
|
|
|
2012-10-16 16:02:06 +00:00
|
|
|
# copy arch includes for external modules
|
|
|
|
mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/arch/arm
|
|
|
|
cp -a arch/arm/include ${pkgdir}/usr/src/linux-${_kernver}/arch/arm/
|
|
|
|
mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/arch/arm/mach-kirkwood
|
|
|
|
cp -a arch/arm/mach-kirkwood/include ${pkgdir}/usr/src/linux-${_kernver}/arch/arm/mach-kirkwood/
|
|
|
|
mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/arch/arm/plat-orion
|
|
|
|
cp -a arch/arm/plat-orion/include ${pkgdir}/usr/src/linux-${_kernver}/arch/arm/plat-orion/
|
2012-07-18 15:14:04 +00:00
|
|
|
|
|
|
|
# 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"
|
|
|
|
|
2012-10-16 16:02:06 +00:00
|
|
|
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/arch/arm/kernel"
|
2012-07-18 15:14:04 +00:00
|
|
|
|
2012-10-16 16:02:06 +00:00
|
|
|
cp arch/arm/Makefile "${pkgdir}/usr/src/linux-${_kernver}/arch/arm/"
|
2012-07-18 15:14:04 +00:00
|
|
|
|
2012-10-16 16:02:06 +00:00
|
|
|
cp arch/arm/kernel/asm-offsets.s "${pkgdir}/usr/src/linux-${_kernver}/arch/arm/kernel/"
|
2012-07-18 15:14:04 +00:00
|
|
|
|
|
|
|
# add docbook makefile
|
|
|
|
install -D -m644 Documentation/DocBook/Makefile \
|
|
|
|
"${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile"
|
|
|
|
|
|
|
|
# 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-${cryptover}"
|
|
|
|
install -D crypto/cryptodev.h "${pkgdir}/usr/src/linux-${_kernver}/crypto/cryptodev.h"
|
|
|
|
}
|