Skip to content
Snippets Groups Projects
Verified Commit 19a3fdd8 authored by Christian Heusel's avatar Christian Heusel :rocket:
Browse files

add the kcpuid tool to linux-tools

parent 608967a9
No related branches found
Tags 115.4.1-1
1 merge request!4Add kcpuid
......@@ -88,6 +88,10 @@ pkgname = hyperv
pkgdesc = Hyper-V tools
depends = glibc
pkgname = kcpuid
pkgdesc = Kernel tool for various cpu debug outputs
depends = glibc
pkgname = linux-tools-meta
pkgdesc = Linux kernel tools meta package
groups =
......@@ -95,6 +99,7 @@ pkgname = linux-tools-meta
depends = bpf
depends = cpupower
depends = hyperv
depends = kcpuid
depends = perf
depends = tmon
depends = turbostat
......
......@@ -6,6 +6,7 @@ pkgname=(
'bpf'
'cpupower'
'hyperv'
'kcpuid'
'linux-tools-meta'
'perf'
'tmon'
......@@ -154,6 +155,11 @@ build() {
pushd linux/tools/power/x86/intel-speed-select
make
popd
echo ':: kcpuid'
pushd linux/tools/arch/x86/kcpuid
make
popd
}
package_linux-tools-meta() {
......@@ -164,6 +170,7 @@ package_linux-tools-meta() {
'bpf'
'cpupower'
'hyperv'
'kcpuid'
'perf'
'tmon'
'turbostat'
......@@ -311,4 +318,11 @@ package_intel-speed-select() {
make install DESTDIR="$pkgdir"
}
package_kcpuid() {
pkgdesc='Kernel tool for various cpu debug outputs'
depends=('glibc')
make BINDIR=/usr/bin HWDATADIR="/usr/share/misc" DESTDIR="$pkgdir" -C linux/tools/arch/x86/kcpuid install
}
# vim:set ts=2 sw=2 et:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment