mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
230 lines
7.9 KiB
Bash
230 lines
7.9 KiB
Bash
# ARMv5 multi-platform
|
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
buildarch=2
|
|
|
|
_rcver=5.4
|
|
_rcrel=3
|
|
|
|
pkgbase=linux-armv5-rc
|
|
_srcname=linux-${_rcver}-rc${_rcrel}
|
|
_kernelname=${pkgbase#linux}
|
|
_desc="ARMv5 multi-platform (release candidate)"
|
|
pkgver=${_rcver}.rc${_rcrel}
|
|
pkgrel=1
|
|
arch=('arm')
|
|
url="http://www.kernel.org/"
|
|
license=('GPL2')
|
|
makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc' 'git')
|
|
options=('!strip')
|
|
source=("https://git.kernel.org/torvalds/t/${_srcname}.tar.gz"
|
|
'0001-net-smsc95xx-Allow-mac-address-to-be-set-as-a-parame.patch'
|
|
'0002-at91-ariag25-updates.patch'
|
|
'0003-at91-arietta-g25-support.patch'
|
|
'0004-leds-trigger-Introduce-a-SATA-trigger.patch'
|
|
'0005-ata-sata_mv-Add-SATA-activity-LED-trigger-support.patch'
|
|
'0006-ARM-dts-kirkwood-pogo_e02-Set-health-LED-to-default-.patch'
|
|
'0007-Fix-mvsdio-SD-card-detection.patch'
|
|
'0008-ARM-dts-kirkwood-Initial-support-for-GoFlex-Home.patch'
|
|
'0009-Revert-vfs-mm-fix-a-dead-loop-in-truncate_inode_page.patch'
|
|
'config'
|
|
'linux.preset'
|
|
'99-linux.hook')
|
|
md5sums=('0dd099d3b87baf8193150c0e666b1bd0'
|
|
'4a4db683dfbc937623d7ed61a4e74798'
|
|
'89ff9ce39aa1a7dba34074a18a9a0507'
|
|
'7beb584a258811bd388cfd48046bc25c'
|
|
'3ed0cfd5dae89421ffbd3b056044d556'
|
|
'6569e86342a4b19adb646952edb485a4'
|
|
'aa11fb9f98cc1910fd110bc85f10f956'
|
|
'32a6656c1b09343294fc5317ae1fce56'
|
|
'32c311a41c3affccd9792519ac44a0a7'
|
|
'0a3474206671f1155bd66b00277e4d2d'
|
|
'dbf8e09403832e2f4534de79499b1c33'
|
|
'8cdd0d4cfd60b1af0adec5331de181c2'
|
|
'79fa396e3f9a09a85156d6d7c2d34b58')
|
|
|
|
prepare() {
|
|
cd "${srcdir}/${_srcname}"
|
|
|
|
# ALARM patches
|
|
git apply ../0001-net-smsc95xx-Allow-mac-address-to-be-set-as-a-parame.patch
|
|
git apply ../0002-at91-ariag25-updates.patch
|
|
git apply ../0003-at91-arietta-g25-support.patch
|
|
git apply ../0004-leds-trigger-Introduce-a-SATA-trigger.patch
|
|
git apply ../0005-ata-sata_mv-Add-SATA-activity-LED-trigger-support.patch
|
|
git apply ../0006-ARM-dts-kirkwood-pogo_e02-Set-health-LED-to-default-.patch
|
|
git apply ../0007-Fix-mvsdio-SD-card-detection.patch
|
|
git apply ../0008-ARM-dts-kirkwood-Initial-support-for-GoFlex-Home.patch
|
|
git apply ../0009-Revert-vfs-mm-fix-a-dead-loop-in-truncate_inode_page.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!
|
|
make ${MAKEFLAGS} zImage modules dtbs
|
|
}
|
|
|
|
_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}")
|
|
conflicts=('linux')
|
|
install=${pkgname}.install
|
|
|
|
cd "${srcdir}/${_srcname}"
|
|
|
|
KARCH=arm
|
|
|
|
# get kernel version
|
|
_kernver="$(make kernelrelease)"
|
|
_basekernel=${_kernver%%-*}
|
|
_basekernel=${_basekernel%.*}
|
|
|
|
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"
|
|
|
|
# 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"
|
|
|
|
# install pacman hook for initramfs regeneration
|
|
sed "s|%PKGBASE%|${pkgbase}|g" "${srcdir}/99-linux.hook" |
|
|
install -D -m644 /dev/stdin "${pkgdir}/usr/share/libalpm/hooks/99-${pkgbase}.hook"
|
|
|
|
# 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"
|
|
}
|
|
|
|
_package-headers() {
|
|
pkgdesc="Header files and scripts for building modules for linux kernel - ${_desc}"
|
|
provides=("linux-headers=${pkgver}")
|
|
conflicts=('linux-headers')
|
|
|
|
cd ${_srcname}
|
|
local _builddir="${pkgdir}/usr/lib/modules/${_kernver}/build"
|
|
|
|
install -Dt "${_builddir}" -m644 Makefile .config Module.symvers
|
|
install -Dt "${_builddir}/kernel" -m644 kernel/Makefile
|
|
|
|
mkdir "${_builddir}/.tmp_versions"
|
|
|
|
cp -t "${_builddir}" -a include scripts
|
|
|
|
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
|
|
|
|
cp -t "${_builddir}/arch/${KARCH}" -a arch/${KARCH}/include
|
|
mkdir -p "${_builddir}/arch/${KARCH}/plat-orion"
|
|
cp -t "${_builddir}/arch/${KARCH}/plat-orion" -a arch/$KARCH/plat-orion/include
|
|
|
|
install -Dt "${_builddir}/drivers/md" -m644 drivers/md/*.h
|
|
install -Dt "${_builddir}/net/mac80211" -m644 net/mac80211/*.h
|
|
|
|
# http://bugs.archlinux.org/task/13146
|
|
install -Dt "${_builddir}/drivers/media/i2c" -m644 drivers/media/i2c/msp3400-driver.h
|
|
|
|
# http://bugs.archlinux.org/task/20402
|
|
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
|
|
|
|
# add xfs and shmem for aufs building
|
|
mkdir -p "${_builddir}"/{fs/xfs,mm}
|
|
|
|
# copy in Kconfig files
|
|
find . -name Kconfig\* -exec install -Dm644 {} "${_builddir}/{}" \;
|
|
|
|
# remove unneeded architectures
|
|
local _arch
|
|
for _arch in "${_builddir}"/arch/*/; do
|
|
[[ ${_arch} == */${KARCH}/ ]] && continue
|
|
rm -r "${_arch}"
|
|
done
|
|
|
|
# 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}"
|
|
|
|
# strip scripts directory
|
|
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 ;;
|
|
esac
|
|
/usr/bin/strip ${_strip} "${_binary}"
|
|
done < <(find "${_builddir}/scripts" -type f -perm -u+w -print0 2>/dev/null)
|
|
}
|
|
|
|
pkgname=("${pkgbase}" "${pkgbase}-headers")
|
|
for _p in ${pkgname[@]}; do
|
|
eval "package_${_p}() {
|
|
_package${_p#${pkgbase}}
|
|
}"
|
|
done
|