mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
community/linux-tools to 4.10-1.1
This commit is contained in:
parent
f186c6afa8
commit
4b188aa5ce
1 changed files with 30 additions and 1 deletions
|
@ -5,6 +5,7 @@
|
|||
# - removed x86_energy_perf_policy and turbostat build/package, uses x86 asm
|
||||
# - removed numactl dep
|
||||
# - use tarball source
|
||||
# - add GPIO and IIO utilities packages
|
||||
|
||||
pkgbase=linux-tools
|
||||
pkgname=(
|
||||
|
@ -15,9 +16,11 @@ pkgname=(
|
|||
'perf'
|
||||
'tmon'
|
||||
'usbip'
|
||||
'gpio-utils'
|
||||
'iio-utils'
|
||||
)
|
||||
pkgver=4.10
|
||||
pkgrel=1
|
||||
pkgrel=1.1
|
||||
license=('GPL2')
|
||||
arch=('i686' 'x86_64')
|
||||
url='https://www.kernel.org'
|
||||
|
@ -103,6 +106,16 @@ build() {
|
|||
pushd linux-$pkgver/tools/cgroup
|
||||
make
|
||||
popd
|
||||
|
||||
msg2 'gpio'
|
||||
pushd linux-$pkgver/tools/gpio
|
||||
make -j1
|
||||
popd
|
||||
|
||||
msg2 'iio'
|
||||
pushd linux-$pkgver/tools/iio
|
||||
make
|
||||
popd
|
||||
}
|
||||
|
||||
package_linux-tools-meta() {
|
||||
|
@ -210,4 +223,20 @@ package_cgroup_event_listener() {
|
|||
install -Dm755 cgroup_event_listener "$pkgdir/usr/bin/cgroup_event_listener"
|
||||
}
|
||||
|
||||
package_gpio-utils() {
|
||||
pkgdesc='GPIO character device utilities'
|
||||
depends=('glibc')
|
||||
|
||||
cd linux-$pkgver/tools/gpio
|
||||
make install DESTDIR="$pkgdir"
|
||||
}
|
||||
|
||||
package_iio-utils() {
|
||||
pkgdesc='Industrial IO utilities'
|
||||
depends=('glibc')
|
||||
|
||||
cd linux-$pkgver/tools/iio
|
||||
make install INSTALL_ROOT="$pkgdir"
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
||||
|
|
Loading…
Reference in a new issue