mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
core/linux-odroid-c2: include arm arch headers (#1498)
Without this, it's not possible to build external modules, since there are lots of cross-arch (arm64->arm) includes. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
ff8e972caa
commit
9679acf182
1 changed files with 4 additions and 1 deletions
|
@ -9,7 +9,7 @@ _srcname=linux-${_commit}
|
|||
_kernelname=${pkgbase#linux}
|
||||
_desc="ODROID-C2"
|
||||
pkgver=3.14.79
|
||||
pkgrel=25
|
||||
pkgrel=26
|
||||
arch=('aarch64')
|
||||
url="https://github.com/hardkernel/linux/tree/odroidc2-3.14.y"
|
||||
license=('GPL2')
|
||||
|
@ -85,6 +85,7 @@ _package() {
|
|||
cd "${srcdir}/${_srcname}"
|
||||
|
||||
KARCH=arm64
|
||||
KSUBARCH=arm
|
||||
|
||||
# get kernel version
|
||||
_kernver="$(make kernelrelease)"
|
||||
|
@ -161,6 +162,8 @@ _package-headers() {
|
|||
# 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/
|
||||
mkdir -p ${pkgdir}/usr/lib/modules/${_kernver}/build/arch/$KSUBARCH
|
||||
cp -a arch/$KSUBARCH/include ${pkgdir}/usr/lib/modules/${_kernver}/build/arch/$KSUBARCH/
|
||||
|
||||
# copy files necessary for later builds, like nvidia and vmware
|
||||
cp Module.symvers "${pkgdir}/usr/lib/modules/${_kernver}/build"
|
||||
|
|
Loading…
Reference in a new issue